diff mbox series

[BlueZ,V2] configure.ac: Add enable_btpclient and enable_mesh for internal ELL

Message ID 20230917172520.46145-1-koba.ko@canonical.com
State Superseded
Headers show
Series [BlueZ,V2] configure.ac: Add enable_btpclient and enable_mesh for internal ELL | expand

Commit Message

Koba Ko Sept. 17, 2023, 5:25 p.m. UTC
when checking enable_external_ell != 'yes',
even enable_btpclient and enable_mesh are not enabled.
configure still prompt the error.
Then ELL must be installed to pass the configure.

Signed-off-by: Koba Ko <koba.ko@canonical.com>
~~~
V2:
* correct the wrong-spelling
* add BlueZ tag
* rephrase the commit description
* change the '&&' to '||' condition.
---
 configure.ac | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

Comments

bluez.test.bot@gmail.com Sept. 17, 2023, 6:42 p.m. UTC | #1
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=785020

---Test result---

Test Summary:
CheckPatch                    PASS      0.51 seconds
GitLint                       PASS      0.54 seconds
BuildEll                      PASS      28.51 seconds
BluezMake                     PASS      1007.29 seconds
MakeCheck                     PASS      12.57 seconds
MakeDistcheck                 PASS      161.74 seconds
CheckValgrind                 PASS      262.90 seconds
CheckSmatch                   PASS      353.86 seconds
bluezmakeextell               PASS      108.10 seconds
IncrementalBuild              PASS      867.01 seconds
ScanBuild                     PASS      1096.14 seconds



---
Regards,
Linux Bluetooth
patchwork-bot+bluetooth@kernel.org Sept. 18, 2023, 6:40 p.m. UTC | #2
Hello:

This patch was applied to bluetooth/bluez.git (master)
by Luiz Augusto von Dentz <luiz.von.dentz@intel.com>:

On Mon, 18 Sep 2023 01:25:20 +0800 you wrote:
> when checking enable_external_ell != 'yes',
> even enable_btpclient and enable_mesh are not enabled.
> configure still prompt the error.
> Then ELL must be installed to pass the configure.
> 
> Signed-off-by: Koba Ko <koba.ko@canonical.com>
> ~~~
> V2:
> * correct the wrong-spelling
> * add BlueZ tag
> * rephrase the commit description
> * change the '&&' to '||' condition.
> 
> [...]

Here is the summary with links:
  - [BlueZ,V2] configure.ac: Add enable_btpclient and enable_mesh for internal ELL
    https://git.kernel.org/pub/scm/bluetooth/bluez.git/?id=04e18c0dcbc1

You are awesome, thank you!
diff mbox series

Patch

diff --git a/configure.ac b/configure.ac
index 4186c3792..54a609ad2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -301,7 +301,8 @@  if (test "${enable_external_ell}" = "yes"); then
 	AC_SUBST(ELL_CFLAGS)
 	AC_SUBST(ELL_LIBS)
 fi
-if (test "${enable_external_ell}" != "yes"); then
+if (test "${enable_external_ell}" != "yes" &&
+		(test "${enable_btpclient}" = "yes" || test "${enable_mesh}" = "yes")); then
 	if (test ! -f ${srcdir}/ell/ell.h) &&
 			(test ! -f ${srcdir}/../ell/ell/ell.h); then
 				AC_MSG_ERROR(ELL source is required or use --enable-external-ell)