diff options
author | Kai Blin <kai@samba.org> | 2010-04-05 23:44:37 +0200 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2010-05-20 22:16:13 +0200 |
commit | 1316fa7b784b68bd066b649757e1e58901f6cade (patch) | |
tree | 844fc7e35ee9b359439aedd663caeae96823b8ac | |
parent | 2b5f82f259e9f6529567de54a347737587f0b2d6 (diff) | |
download | samba-1316fa7b784b68bd066b649757e1e58901f6cade.tar.gz samba-1316fa7b784b68bd066b649757e1e58901f6cade.tar.bz2 samba-1316fa7b784b68bd066b649757e1e58901f6cade.zip |
s3-waf: Check for LDAP
-rw-r--r-- | source3/wscript | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/source3/wscript b/source3/wscript index c9589bcffc..3d7bed1c3b 100644 --- a/source3/wscript +++ b/source3/wscript @@ -281,6 +281,37 @@ yp_get_default_domain # Check for LDAP conf.CHECK_HEADERS('ldap.h lber.h') conf.CHECK_TYPE('ber_tag_t', 'unsigned int', headers='ldap.h lber.h') + conf.CHECK_FUNCS_IN('ber_scanf ber_sockbuf_add_io', 'lber') + conf.CHECK_VARIABLE('LDAP_OPT_SOCKBUF', headers='ldap.h') + # if ber_sockbuf_add_io() and LDAP_OPT_SOCKBUF are available, we can add + # SASL wrapping hooks + if conf.CONFIG_SET('HAVE_BER_SOCKBUF_ADD_IO') and \ + conf.CONFIG_SET('HAVE_LDAP_OPT_SOCKBUF'): + conf.DEFINE('HAVE_LDAP_SASL_WRAPPING', '1') + + # if we LBER_OPT_LOG_PRINT_FN we can intercept ldap logging and print it out + # for the samba logs + conf.CHECK_VARIABLE('LBER_OPT_LOG_PRINT_FN', + define='HAVE_LBER_LOG_PRINT_FN', headers='lber.h') + + conf.CHECK_FUNCS_IN('ldap_init ldap_initialize ldap_set_rebind_proc', 'ldap') + conf.CHECK_FUNCS_IN('ldap_add_result_entry', 'ldap') + + # Check if ldap_set_rebind_proc() takes three arguments + if conf.CHECK_CODE('ldap_set_rebind_proc(0, 0, 0)', + 'LDAP_SET_REBIND_PROC_ARGS', + msg="Checking whether ldap_set_rebind_proc takes 3 arguments", + headers='ldap.h lber.h', link=False): + conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '3') + else: + conf.DEFINE('LDAP_SET_REBIND_PROC_ARGS', '2') + + # last but not least, if ldap_init() exists, we want to use ldap + if conf.CONFIG_SET('HAVE_LDAP_INIT'): + conf.DEFINE('HAVE_LDAP', '1') + conf.env['SMBLDAP'] = 'lib/smbldap.c' + conf.env['SMBLDAPUTIL'] = 'lib/smbldap_util.c' + #TODO: We also need to add -DLDAP_DEPRECATED to the build flags. # Check for kerberos conf.find_program('krb5-config', var='KRB5_CONFIG') |