diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-20 17:35:05 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:57 +1000 |
commit | ec3fbe5fb18cc03ca94f6b3019bcac489dc53726 (patch) | |
tree | 6f709f1f64971708fb9fdca1441c196644c10af6 /lib/replace | |
parent | 1130f8f8d778da2da42d19392aafea520a2e189c (diff) | |
download | samba-ec3fbe5fb18cc03ca94f6b3019bcac489dc53726.tar.gz samba-ec3fbe5fb18cc03ca94f6b3019bcac489dc53726.tar.bz2 samba-ec3fbe5fb18cc03ca94f6b3019bcac489dc53726.zip |
build: inet_n*() are normally in libc
Diffstat (limited to 'lib/replace')
-rw-r--r-- | lib/replace/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 560a699060..7f9b08ce60 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -196,7 +196,7 @@ 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('inet_ntoa inet_aton inet_ntop inet_pton', 'socket nsl', checklibc=True) conf.CHECK_FUNCS_IN('dlopen dlsym dlerror dlclose', 'dl', checklibc=True) conf.CHECK_FUNCS_IN('poptGetContext', 'popt') |