libtirpc: requires toolchain with threading support
authorSamuel Martin <s.martin49@gmail.com>
Fri, 13 Sep 2013 10:41:20 +0000 (12:41 +0200)
committerPeter Korsgaard <jacmet@sunsite.dk>
Fri, 20 Sep 2013 13:20:04 +0000 (15:20 +0200)
Fixes:
http://autobuild.buildroot.org/results/8ba720f47f74df94b8c70ac4befd47c47ce65f2f

Signed-off-by: Gilles Talis <gilles.talis@gmail.com>
Signed-off-by: "Samuel Martin" <s.martin49@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
package/conntrack-tools/Config.in
package/libtirpc/Config.in
package/lmbench/Config.in
package/nfs-utils/Config.in
package/quota/Config.in
package/rpcbind/Config.in

index 50f200036435c694cac5dc49f681dd481ca1d669..64f18feefc9c999a43af813ae0f22b4b60159368 100644 (file)
@@ -3,6 +3,7 @@ config BR2_PACKAGE_CONNTRACK_TOOLS
        depends on BR2_INET_IPV6
        depends on BR2_LARGEFILE
        depends on BR2_USE_MMU # fork()
+       depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
        select BR2_PACKAGE_LIBNETFILTER_CONNTRACK
        select BR2_PACKAGE_LIBNETFILTER_CTHELPER
        select BR2_PACKAGE_LIBNETFILTER_CTTIMEOUT
@@ -16,5 +17,7 @@ config BR2_PACKAGE_CONNTRACK_TOOLS
 
          http://www.netfilter.org/projects/conntrack-tools/
 
-comment "conntrack-tools requires a toolchain with IPV6 and LARGEFILE support"
-       depends on !BR2_INET_IPV6 || !BR2_LARGEFILE
+comment "conntrack-tools requires a toolchain with IPV6, LARGEFILE and threading support"
+       depends on !BR2_INET_IPV6 || \
+               !BR2_LARGEFILE || \
+               !(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
index b9db5aa4c16986a5b307f083828a56c3aeb921df..eab4f3e39b6f4327f1816dd59cd73cd374854e20 100644 (file)
@@ -7,8 +7,12 @@ config BR2_PACKAGE_LIBTIRPC
        # used instead of libtirpc.
        depends on !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R2 && \
                !BR2_TOOLCHAIN_EXTERNAL_BLACKFIN_UCLINUX_2012R1
+       depends on BR2_TOOLCHAIN_HAS_THREADS
        help
          Libtirpc is a port of Sun's Transport-Independent RPC
          library to Linux.
 
          http://sourceforge.net/projects/libtirpc/
+
+comment "libtirpc requires a toolchain with threading support"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS
index d710e1ffff933b0cb24df2e2a83da77fc0999417..c7b656c0371e883ba4cb0a32b32fa289794eaead 100644 (file)
@@ -1,8 +1,12 @@
 config BR2_PACKAGE_LMBENCH
        bool "lmbench"
+       depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
        select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
        help
          LMbench is a suite of simple, portable,
          ANSI/C microbenchmarks for UNIX/POSIX.
 
          http://sourceforge.net/projects/lmbench/
+
+comment "lmbench requires a toolchain with threading support"
+       depends on !(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
index fa35f35e65ff5385b2cb7bcfd0d292ddeadff03a..8f61f2b51fafe33c3d5d9b93c8712570b4fcecb2 100644 (file)
@@ -1,5 +1,6 @@
 config BR2_PACKAGE_NFS_UTILS
        bool "nfs-utils"
+       depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
        select BR2_PACKAGE_LIBTIRPC if !BR2_TOOLCHAIN_HAS_NATIVE_RPC
        depends on BR2_LARGEFILE
        help
@@ -9,8 +10,9 @@ config BR2_PACKAGE_NFS_UTILS
 
          http://sourceforge.net/projects/nfs
 
-comment "nfs-utils requires a toolchain with LARGEFILE support"
-       depends on !BR2_LARGEFILE
+comment "nfs-utils requires a toolchain with LARGEFILE and threading support"
+       depends on !BR2_LARGEFILE || \
+               !(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
 
 menu "NFS utilities selection"
        depends on BR2_PACKAGE_NFS_UTILS
index 5127a9a9ca7d436da887ae07654d228512c3a18e..57cf57d97d375182bba94c521b44326272d462f7 100644 (file)
@@ -4,6 +4,7 @@ config BR2_PACKAGE_QUOTA
        depends on BR2_USE_WCHAR
        depends on BR2_USE_MMU # fork()
        depends on !(BR2_microblazeel || BR2_microblazebe) # util-linux
+       depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC || BR2_TOOLCHAIN_HAS_THREADS # libtirpc
        select BR2_PACKAGE_UTIL_LINUX
        select BR2_PACKAGE_UTIL_LINUX_BINARIES
        select BR2_PACKAGE_UTIL_LINUX_MOUNT
@@ -14,5 +15,7 @@ config BR2_PACKAGE_QUOTA
 
          http://sourceforge.net/projects/linuxquota/
 
-comment "quota requires a toolchain with LARGEFILE + WCHAR support"
-       depends on !(BR2_LARGEFILE && BR2_USE_WCHAR)
+comment "quota requires a toolchain with LARGEFILE, WCHAR and threading support"
+       depends on !BR2_LARGEFILE || \
+               !BR2_USE_WCHAR || \
+               !(BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_HAS_NATIVE_RPC)
index cbe53af3a2417380987c4478c72a906f567a6873..663313bff2c29f16ee18111f64694a9e94d7d80f 100644 (file)
@@ -2,6 +2,7 @@ config BR2_PACKAGE_RPCBIND
        bool "rpcbind"
        # We really need libtirpc and can't work with the native RPC
        # implementation of toolchains.
+       depends on BR2_TOOLCHAIN_HAS_THREADS # libtirpc
        select BR2_PACKAGE_LIBTIRPC
        # uClibc toolchains provided by ADI don't have AI_ADDRCONFIG
        # support, needed for libtirpc
@@ -10,3 +11,6 @@ config BR2_PACKAGE_RPCBIND
        help
          The rpcbind utility is a server that converts RPC program numbers
          into universal addresses.
+
+comment "rpcbind requires a toolchain with threading support"
+       depends on !BR2_TOOLCHAIN_HAS_THREADS