Message ID | 20210104194013.580654-1-brian.gix@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [BlueZ,v2] cfg: Add check for newly used function in ELL | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=408835 ---Test result--- ############################## Test: CheckPatch - PASS ############################## Test: CheckGitLint - PASS ############################## Test: CheckBuild - PASS ############################## Test: MakeCheck - PASS --- Regards, Linux Bluetooth
Applied On Mon, 2021-01-04 at 11:40 -0800, Brian Gix wrote: > ELL has a new dependency on rawmemchr() which needs to be accounted for > at configure time. > --- > configure.ac | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/configure.ac b/configure.ac > index d6347c098..6f4096c88 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -49,6 +49,8 @@ AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads], > > AC_CHECK_FUNCS(explicit_bzero) > > +AC_CHECK_FUNCS(rawmemchr) > + > AC_CHECK_FUNC(signalfd, dummy=yes, > AC_MSG_ERROR(signalfd support is required)) >
diff --git a/configure.ac b/configure.ac index d6347c098..6f4096c88 100644 --- a/configure.ac +++ b/configure.ac @@ -49,6 +49,8 @@ AC_ARG_ENABLE(threads, AC_HELP_STRING([--enable-threads], AC_CHECK_FUNCS(explicit_bzero) +AC_CHECK_FUNCS(rawmemchr) + AC_CHECK_FUNC(signalfd, dummy=yes, AC_MSG_ERROR(signalfd support is required))