diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-20 17:17:56 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:56 +1000 |
commit | 7628cb7da1d2b1f5bcdacecfd27866aad8b199a2 (patch) | |
tree | 2fc5b2e67c71f96fbd860458a2191bbcd4a4ee4b /lib | |
parent | 0bad3dacb02411f46921af23faccd66f4196268f (diff) | |
download | samba-7628cb7da1d2b1f5bcdacecfd27866aad8b199a2.tar.gz samba-7628cb7da1d2b1f5bcdacecfd27866aad8b199a2.tar.bz2 samba-7628cb7da1d2b1f5bcdacecfd27866aad8b199a2.zip |
build: cope with multiple libs in CHECK_FUNCS_IN()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/wscript | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 036df59352..560a699060 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -189,7 +189,6 @@ def configure(conf): conf.CHECK_FUNCS('asprintf vasprintf setenv unsetenv strnlen strtoull __strtoull') conf.CHECK_FUNCS('strtouq strtoll __strtoll strtoq memmem printf memset memcpy') conf.CHECK_FUNCS('connect gethostbyname if_nametoindex socketpair') - conf.CHECK_FUNCS('inet_ntoa inet_aton inet_ntop inet_pton') conf.CHECK_FUNCS('dirfd getdirentries getdents syslog getaddrinfo freeaddrinfo') conf.CHECK_FUNCS('gai_strerror get_current_dir_name') conf.CHECK_FUNCS('timegm getifaddrs freeifaddrs mmap setgroups setsid') @@ -197,6 +196,8 @@ def configure(conf): conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create') + conf.CHECK_FUNCS_IN('inet_ntoa inet_aton inet_ntop inet_pton', 'socket nsl') + conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl', checklibc=True) conf.CHECK_FUNCS_IN('poptGetContext', 'popt') conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True) |