diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | acinclude.m4 | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-04-04 Chris Toshok <toshok@ximian.com> + + * acinclude.m4 (EVO_LDAP_CHECK): bleah, add "" in for the "no" + case in with_static_ldap. + 2003-04-03 Chris Toshok <toshok@ximian.com> * acinclude.m4 (EVO_LDAP_CHECK): the existence of libldap.la diff --git a/acinclude.m4 b/acinclude.m4 index b9b3f8f5a7..63008b790d 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -106,7 +106,7 @@ AC_DEFUN(EVO_LDAP_CHECK, [ AC_DEFINE(HAVE_LDAP,1,[Define if you have LDAP support]) case $with_static_ldap in - no) + no|"") with_static_ldap=no ;; *) |