1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

build: don't look for gettext twice

This commit is contained in:
Andrew Tridgell 2010-03-20 17:05:04 +11:00
parent 76761c5c8e
commit 702615dadc
2 changed files with 1 additions and 3 deletions

View File

@ -200,7 +200,7 @@ def configure(conf):
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)
conf.CHECK_FUNCS_IN('gettext', 'intl')
conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True)
conf.CHECK_FUNCS_IN('pthread_create', 'pthread', checklibc=True)
conf.CHECK_FUNCS_IN('crypt', 'crypt', checklibc=True)

View File

@ -38,8 +38,6 @@ conf.CHECK_FUNCS_IN('res_search res_nsearch res_ndestroy dns_search dn_expand',
conf.CHECK_VARIABLE('_res')
conf.CHECK_HEADERS('pty.h util.h libutil.h')
conf.CHECK_FUNCS_IN('openpty', 'util', checklibc=True)
conf.CHECK_FUNCS_IN('gettext', 'intl', checklibc=True)
conf.DEFINE('HAVE_KRB5',1)
conf.DEFINE('HAVE_GSSAPI',1)