2021-01-04 19:42:53

by Gix, Brian

[permalink] [raw]
Subject: [PATCH BlueZ v2] cfg: Add check for newly used function in ELL

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))

--
2.25.4


2021-01-04 19:50:04

by bluez.test.bot

[permalink] [raw]
Subject: RE: [BlueZ,v2] cfg: Add check for newly used function in ELL

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

2021-01-04 19:52:37

by Gix, Brian

[permalink] [raw]
Subject: Re: [PATCH BlueZ v2] cfg: Add check for newly used function in ELL

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))
>