diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2007-12-27 21:38:55 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2007-12-27 21:38:55 +0000 |
commit | 9d1522db5f2ae1cf6a8aa1214a3b274802e74e65 (patch) | |
tree | a34a53f023cfa0c0ea538256705bb6ca931e5a6c | |
parent | 37a678151640f150e4d654fc1a9fdcc553810413 (diff) |
check for all used ldap functions
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-ldapd@541 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | configure.ac | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 5813e6a..e394f2e 100644 --- a/configure.ac +++ b/configure.ac @@ -255,12 +255,15 @@ AC_CHECK_LIB(gssldap, ldap_gss_bind,[LIBS="-lgssldap $LIBS"],,$LIBS) AC_CHECK_FUNCS(sasl_auxprop_request) AC_CHECK_FUNCS(gss_krb5_ccache_name) -AC_CHECK_FUNCS(ldap_parse_result ldap_memfree ldap_controls_free) -AC_CHECK_FUNCS(ldap_explode_rdn ldap_set_option ldap_get_option) +AC_CHECK_FUNCS(ldap_parse_result ldap_memfree ldap_controls_free ldap_control_free) +AC_CHECK_FUNCS(ldap_explode_dn ldap_explode_rdn ldap_set_option ldap_get_option) +AC_CHECK_FUNCS(ldap_abandon ldap_simple_bind_s ldap_unbind ldap_set_rebind_proc) AC_CHECK_FUNCS(ldap_sasl_interactive_bind_s ldap_initialize ldap_search_ext) AC_CHECK_FUNCS(ldap_create_control ldap_create_page_control ldap_parse_page_control) AC_CHECK_FUNCS(ldap_domain2hostlist ldap_domain2dn) AC_CHECK_FUNCS(ldap_set_rebind_proc) +AC_CHECK_FUNCS(ldap_get_values ldap_value_free ldap_get_dn) +AC_CHECK_FUNCS(ldap_err2string ldap_msgfree ldap_result) # check the number of arguments that ldap_set_rebind_proc() uses AC_CACHE_CHECK( |