summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-04-11 19:24:46 +0200
committerStefan Metzmacher <metze@samba.org>2010-04-12 09:13:43 +0200
commit33bb334e8030749cb675353df882730e3119ee9c (patch)
tree9fffeb702dc4bc5589713348aac47c46de90ff04 /lib/replace
parentb1393087ace8289a13e09e5246ac0efec560e959 (diff)
downloadsamba-33bb334e8030749cb675353df882730e3119ee9c.tar.gz
samba-33bb334e8030749cb675353df882730e3119ee9c.tar.bz2
samba-33bb334e8030749cb675353df882730e3119ee9c.zip
s4-waf: inline LIBREPLACE_NETWORK into 'replace'
metze
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/wscript21
1 files changed, 7 insertions, 14 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index 5457b175d1..bfe9142669 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -311,10 +311,16 @@ def build(bld):
if bld.CONFIG_SET('REPLACE_GETPASS'): REPLACE_SOURCE += ' getpass.c'
- if not bld.CONFIG_SET('HAVE_GETIFADDRS'): REPLACE_SOURCE += ' getifaddrs.c'
if not bld.CONFIG_SET('HAVE_DLOPEN'): REPLACE_SOURCE += ' dlfcn.c'
+
if not bld.CONFIG_SET('HAVE_SOCKETPAIR'): REPLACE_SOURCE += ' socketpair.c'
if not bld.CONFIG_SET('HAVE_CONNECT'): REPLACE_SOURCE += ' socket.c'
+ if not bld.CONFIG_SET('HAVE_GETIFADDRS'): REPLACE_SOURCE += ' getifaddrs.c'
+ if not bld.CONFIG_SET('HAVE_GETADDRINFO'): REPLACE_SOURCE += ' getaddrinfo.c'
+ if not bld.CONFIG_SET('HAVE_INET_NTOA'): REPLACE_SOURCE += ' inet_ntoa.c'
+ if not bld.CONFIG_SET('HAVE_INET_ATON'): REPLACE_SOURCE += ' inet_aton.c'
+ if not bld.CONFIG_SET('HAVE_INET_NTOP'): REPLACE_SOURCE += ' inet_ntop.c'
+ if not bld.CONFIG_SET('HAVE_INET_PTON'): REPLACE_SOURCE += ' inet_pton.c'
bld.SAMBA_LIBRARY('replace',
source=REPLACE_SOURCE,
@@ -330,19 +336,6 @@ def build(bld):
deps='replace',
install=False)
- NET_SOURCES = []
- if not bld.CONFIG_SET('HAVE_INET_NTOA'): NET_SOURCES.append('inet_ntoa.c')
- if not bld.CONFIG_SET('HAVE_INET_ATON'): NET_SOURCES.append('inet_aton.c')
- if not bld.CONFIG_SET('HAVE_INET_NTOP'): NET_SOURCES.append('inet_ntop.c')
- if not bld.CONFIG_SET('HAVE_INET_PTON'): NET_SOURCES.append('inet_pton.c')
- if not bld.CONFIG_SET('HAVE_SOCKETPAIR'): NET_SOURCES.append('socketpair.c')
- if not bld.CONFIG_SET('HAVE_GETADDRINFO'):NET_SOURCES.append('getaddrinfo.c')
-
- bld.SAMBA_SUBSYSTEM('LIBREPLACE_NETWORK', NET_SOURCES,
- group='base_libraries',
- deps='replace')
-
-
CRYPT_SOURCES = []
if not 'HAVE_CRYPT' in bld.env: CRYPT_SOURCES.append('crypt.c')