package/ipsec-tools: disable for musl toolchains
authorRomain Naour <romain.naour@gmail.com>
Sat, 28 May 2016 12:47:29 +0000 (14:47 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 28 May 2016 13:51:17 +0000 (15:51 +0200)
__P() is used for compatibility with old K&R C compilers. With
ANSI C this macro has no effect.

Unlike for util-linux and ipkg packages where it was easy to remove
each __P() macro, ipsec-tools use it all over the tree and require a
"big" patch to enable musl support.

Since upstream seems not verry active (last release 2014-02-27)

So, disable ipsec-tools with musl based toolchains.

This fixes a compilation error with musl libc because of undeclared
__P.

Fixes:
http://autobuild.buildroot.net/results/42242e3f4485b9e77a916e6fe480c83f70e024e4

While at it, reorder "depends on" and "select" lines in Config.in

Signed-off-by: Romain Naour <romain.naour@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/ipsec-tools/Config.in

index 4af40958434624fd60e85dd48cefabaf9f0b0660..36c5a65a9f7d904429e41c01f43672fd0e965a56 100644 (file)
@@ -1,8 +1,9 @@
 config BR2_PACKAGE_IPSEC_TOOLS
        bool "ipsec-tools"
+       depends on BR2_USE_MMU # fork()
+       depends on !BR2_TOOLCHAIN_USES_MUSL # Use __P() macro all over the tree
        select BR2_PACKAGE_OPENSSL
        select BR2_PACKAGE_FLEX
-       depends on BR2_USE_MMU # fork()
        help
          This package is required to support IPSec for Linux 2.6+