diff options
Diffstat (limited to 'package')
-rw-r--r-- | package/lmbench/Config.in | 4 | ||||
-rw-r--r-- | package/netkitbase/Config.in | 4 | ||||
-rw-r--r-- | package/netkittelnet/Config.in | 4 | ||||
-rw-r--r-- | package/nfs-utils/Config.in | 4 | ||||
-rw-r--r-- | package/portmap/Config.in | 4 | ||||
-rw-r--r-- | package/quota/Config.in | 4 | ||||
-rw-r--r-- | package/samba/samba.mk | 2 | ||||
-rw-r--r-- | package/xinetd/xinetd.mk | 2 |
8 files changed, 14 insertions, 14 deletions
diff --git a/package/lmbench/Config.in b/package/lmbench/Config.in index c8423d1ef..70449b63b 100644 --- a/package/lmbench/Config.in +++ b/package/lmbench/Config.in @@ -1,7 +1,7 @@ config BR2_PACKAGE_LMBENCH bool "lmbench" # Uses pmap_set, pmap__unset, pmap_getport, etc. - depends on BR2_INET_RPC + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC help LMbench is a suite of simple, portable, ANSI/C microbenchmarks for UNIX/POSIX. @@ -9,4 +9,4 @@ config BR2_PACKAGE_LMBENCH http://sourceforge.net/projects/lmbench/ comment "lmbench requires a toolchain with RPC support" - depends on !BR2_INET_RPC + depends on !BR2_TOOLCHAIN_HAS_NATIVE_RPC diff --git a/package/netkitbase/Config.in b/package/netkitbase/Config.in index 725e500ac..75bd72836 100644 --- a/package/netkitbase/Config.in +++ b/package/netkitbase/Config.in @@ -1,10 +1,10 @@ config BR2_PACKAGE_NETKITBASE bool "netkitbase" - depends on BR2_INET_RPC + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC help Old-style inetd. ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/ comment "netkitbase requires a toolchain with RPC support" - depends on !BR2_INET_RPC + depends on !BR2_TOOLCHAIN_HAS_NATIVE_RPC diff --git a/package/netkittelnet/Config.in b/package/netkittelnet/Config.in index 058d2107c..10eb022df 100644 --- a/package/netkittelnet/Config.in +++ b/package/netkittelnet/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_NETKITTELNET bool "netkittelnet" - depends on BR2_INET_RPC + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC select BR2_PACKAGE_NETKITBASE help Standard Linux telnet client and server. @@ -8,4 +8,4 @@ config BR2_PACKAGE_NETKITTELNET ftp://ftp.uk.linux.org/pub/linux/Networking/netkit/ comment "netkittelnet requires a toolchain with RPC support" - depends on !BR2_INET_RPC + depends on !BR2_TOOLCHAIN_HAS_NATIVE_RPC diff --git a/package/nfs-utils/Config.in b/package/nfs-utils/Config.in index 67d25a73d..c87502f97 100644 --- a/package/nfs-utils/Config.in +++ b/package/nfs-utils/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_NFS_UTILS bool "nfs-utils" - depends on BR2_INET_RPC + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC depends on BR2_LARGEFILE select BR2_PACKAGE_PORTMAP help @@ -11,7 +11,7 @@ config BR2_PACKAGE_NFS_UTILS http://sourceforge.net/projects/nfs comment "nfs-utils requires a toolchain with RPC and LARGEFILE support" - depends on !BR2_INET_RPC || !BR2_LARGEFILE + depends on !BR2_TOOLCHAIN_HAS_NATIVE_RPC || !BR2_LARGEFILE menu "NFS utilities selection" depends on BR2_PACKAGE_NFS_UTILS diff --git a/package/portmap/Config.in b/package/portmap/Config.in index 5914357f2..f017cb608 100644 --- a/package/portmap/Config.in +++ b/package/portmap/Config.in @@ -1,10 +1,10 @@ config BR2_PACKAGE_PORTMAP bool "portmap" - depends on BR2_INET_RPC + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC help The standard portmapper for RPC services. http://neil.brown.name/portmap/ comment "portmap requires a toolchain with RPC support" - depends on !BR2_INET_RPC + depends on !BR2_TOOLCHAIN_HAS_NATIVE_RPC diff --git a/package/quota/Config.in b/package/quota/Config.in index 3ad0b8cee..a26f91fc7 100644 --- a/package/quota/Config.in +++ b/package/quota/Config.in @@ -1,6 +1,6 @@ config BR2_PACKAGE_QUOTA bool "quota" - depends on BR2_INET_RPC + depends on BR2_TOOLCHAIN_HAS_NATIVE_RPC depends on BR2_LARGEFILE depends on BR2_USE_WCHAR select BR2_PACKAGE_UTIL_LINUX @@ -12,4 +12,4 @@ config BR2_PACKAGE_QUOTA http://sourceforge.net/projects/linuxquota/ comment "quota requires a toolchain with RPC + LARGEFILE + WCHAR support" - depends on !(BR2_INET_RPC && BR2_LARGEFILE && BR2_USE_WCHAR) + depends on !(BR2_TOOLCHAIN_HAS_NATIVE_RPC && BR2_LARGEFILE && BR2_USE_WCHAR) diff --git a/package/samba/samba.mk b/package/samba/samba.mk index 06f58d60f..dec60d0dc 100644 --- a/package/samba/samba.mk +++ b/package/samba/samba.mk @@ -51,7 +51,7 @@ SAMBA_CONF_OPT = \ \ --without-cluster-support \ --without-dnsupdate \ - $(if $(BR2_INET_RPC),--with-sys-quotas,--without-sys-quotas) \ + $(if $(BR2_TOOLCHAIN_HAS_NATIVE_RPC),--with-sys-quotas,--without-sys-quotas) \ --without-ads \ --without-ldap \ --with-included-iniparser \ diff --git a/package/xinetd/xinetd.mk b/package/xinetd/xinetd.mk index 4fc2de9b2..a420425d4 100644 --- a/package/xinetd/xinetd.mk +++ b/package/xinetd/xinetd.mk @@ -9,7 +9,7 @@ XINETD_SITE = http://www.xinetd.org XINETD_LICENSE = xinetd license XINETD_LICENSE_FILES = COPYRIGHT -ifneq ($(BR2_INET_RPC),y) +ifneq ($(BR2_TOOLCHAIN_HAS_NATIVE_RPC),y) XINETD_CONF_ENV = CFLAGS="$(TARGET_CFLAGS) -DNO_RPC" endif |