diff mbox

[2/2] libnl: do not allow to build tools on static lib configs

Message ID 1383387986-9508-2-git-send-email-thomas.petazzoni@free-electrons.com
State Accepted
Headers show

Commit Message

Thomas Petazzoni Nov. 2, 2013, 10:26 a.m. UTC
Building the libnl tools requires the <dlfcn.h> header, which is not
compatible with static only builds. Therefore, this commit makes the
libnl tools option depend on !BR2_PREFER_STATIC_LIB.

Fixes:

   http://autobuild.buildroot.org/results/573/57340b9bd2db3a523836e02e01cba6f7c17c8ca7/build-end.log

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
 package/libnl/Config.in | 13 ++++++++++---
 1 file changed, 10 insertions(+), 3 deletions(-)

Comments

Yann E. MORIN Nov. 2, 2013, 5:57 p.m. UTC | #1
Thomas, All,

On 2013-11-02 11:26 +0100, Thomas Petazzoni spake thusly:
> Building the libnl tools requires the <dlfcn.h> header, which is not
> compatible with static only builds. Therefore, this commit makes the
> libnl tools option depend on !BR2_PREFER_STATIC_LIB.
> 
> Fixes:
> 
>    http://autobuild.buildroot.org/results/573/57340b9bd2db3a523836e02e01cba6f7c17c8ca7/build-end.log
> 
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>

> ---
>  package/libnl/Config.in | 13 ++++++++++---
>  1 file changed, 10 insertions(+), 3 deletions(-)
> 
> diff --git a/package/libnl/Config.in b/package/libnl/Config.in
> index fec10d3..be41b07 100644
> --- a/package/libnl/Config.in
> +++ b/package/libnl/Config.in
> @@ -6,11 +6,18 @@ config BR2_PACKAGE_LIBNL
>  
>  	  http://people.suug.ch/~tgr/libnl/
>  
> +comment "libnl needs a toolchain w/ threads"
> +	depends on !BR2_TOOLCHAIN_HAS_THREADS
> +
> +if BR2_PACKAGE_LIBNL
> +
>  config BR2_PACKAGE_LIBNL_TOOLS
>  	bool "install tools"
> -	depends on BR2_PACKAGE_LIBNL
> +	# uses <dlfcn.h>
> +	depends on !BR2_PREFER_STATIC_LIB
>  	help
>  	  Install binary tools.
>  
> -comment "libnl needs a toolchain w/ threads"
> -	depends on !BR2_TOOLCHAIN_HAS_THREADS
> +comment "libnl tools need a toolchain w/ dynamic library"
> +
> +endif
> -- 
> 1.8.1.2
> 
> _______________________________________________
> buildroot mailing list
> buildroot@busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot
Samuel Martin Nov. 2, 2013, 6:01 p.m. UTC | #2
2013/11/2 Thomas Petazzoni <thomas.petazzoni@free-electrons.com>

> Building the libnl tools requires the <dlfcn.h> header, which is not
> compatible with static only builds. Therefore, this commit makes the
> libnl tools option depend on !BR2_PREFER_STATIC_LIB.
>
> Fixes:
>
>
> http://autobuild.buildroot.org/results/573/57340b9bd2db3a523836e02e01cba6f7c17c8ca7/build-end.log
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
>
Acked-by: Samuel Martin <s.martin49@gmail.com>

Regards,
Peter Korsgaard Nov. 4, 2013, 9:06 p.m. UTC | #3
>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 > Building the libnl tools requires the <dlfcn.h> header, which is not
 > compatible with static only builds. Therefore, this commit makes the
 > libnl tools option depend on !BR2_PREFER_STATIC_LIB.

 > Fixes:

 >    http://autobuild.buildroot.org/results/573/57340b9bd2db3a523836e02e01cba6f7c17c8ca7/build-end.log

 > Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
 > ---
 >  package/libnl/Config.in | 13 ++++++++++---
 >  1 file changed, 10 insertions(+), 3 deletions(-)

 > diff --git a/package/libnl/Config.in b/package/libnl/Config.in
 > index fec10d3..be41b07 100644
 > --- a/package/libnl/Config.in
 > +++ b/package/libnl/Config.in
 > @@ -6,11 +6,18 @@ config BR2_PACKAGE_LIBNL
 
 >  	  http://people.suug.ch/~tgr/libnl/
 
 > +comment "libnl needs a toolchain w/ threads"
 > +	depends on !BR2_TOOLCHAIN_HAS_THREADS
 > +
 > +if BR2_PACKAGE_LIBNL
 > +
 >  config BR2_PACKAGE_LIBNL_TOOLS
 >  	bool "install tools"
 > -	depends on BR2_PACKAGE_LIBNL
 > +	# uses <dlfcn.h>
 > +	depends on !BR2_PREFER_STATIC_LIB
 >  	help
 >  	  Install binary tools.
 
 > -comment "libnl needs a toolchain w/ threads"
 > -	depends on !BR2_TOOLCHAIN_HAS_THREADS
 > +comment "libnl tools need a toolchain w/ dynamic library"

This comment should depend on BR2_PREFER_STATIC_LIB.
diff mbox

Patch

diff --git a/package/libnl/Config.in b/package/libnl/Config.in
index fec10d3..be41b07 100644
--- a/package/libnl/Config.in
+++ b/package/libnl/Config.in
@@ -6,11 +6,18 @@  config BR2_PACKAGE_LIBNL
 
 	  http://people.suug.ch/~tgr/libnl/
 
+comment "libnl needs a toolchain w/ threads"
+	depends on !BR2_TOOLCHAIN_HAS_THREADS
+
+if BR2_PACKAGE_LIBNL
+
 config BR2_PACKAGE_LIBNL_TOOLS
 	bool "install tools"
-	depends on BR2_PACKAGE_LIBNL
+	# uses <dlfcn.h>
+	depends on !BR2_PREFER_STATIC_LIB
 	help
 	  Install binary tools.
 
-comment "libnl needs a toolchain w/ threads"
-	depends on !BR2_TOOLCHAIN_HAS_THREADS
+comment "libnl tools need a toolchain w/ dynamic library"
+
+endif