summaryrefslogtreecommitdiff
path: root/lib/replace
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2010-03-20 16:49:02 +1100
committerAndrew Tridgell <tridge@samba.org>2010-04-06 20:26:56 +1000
commit81d155af96104ce6b84d0e51f0fd052329551dc3 (patch)
tree01f29ba5bef423d2a9bb68f76995f4a37ea595dd /lib/replace
parent8005100b2e06bab32db6aeb0572eac9faac2ab7b (diff)
downloadsamba-81d155af96104ce6b84d0e51f0fd052329551dc3.tar.gz
samba-81d155af96104ce6b84d0e51f0fd052329551dc3.tar.bz2
samba-81d155af96104ce6b84d0e51f0fd052329551dc3.zip
build: check libc first for several libraries
Diffstat (limited to 'lib/replace')
-rw-r--r--lib/replace/wscript6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript
index 30c1f129aa..bfff2cb58c 100644
--- a/lib/replace/wscript
+++ b/lib/replace/wscript
@@ -196,11 +196,11 @@ def configure(conf):
conf.CHECK_FUNCS('getpwent_r getpwnam_r getpwuid_r epoll_create')
- conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl')
+ conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl', checklibc=True)
conf.CHECK_FUNCS_IN('poptGetContext', 'popt')
- conf.CHECK_FUNCS_IN('res_search', 'resolv')
+ conf.CHECK_FUNCS_IN('res_search', 'resolv', checklibc=True)
conf.CHECK_FUNCS_IN('gettext', 'intl')
- conf.CHECK_FUNCS_IN('pthread_create', 'pthread')
+ conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True)
conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)