krb5 commit: Remove dangling reference to $with_edirectory

Greg Hudson ghudson at MIT.EDU
Wed May 8 01:17:39 EDT 2013


https://github.com/krb5/krb5/commit/6349bc7e32cdab69dc422122a1905a7aba581b02
commit 6349bc7e32cdab69dc422122a1905a7aba581b02
Author: Nalin Dahyabhai <nalin at redhat.com>
Date:   Thu Dec 20 16:47:50 2012 -0500

    Remove dangling reference to $with_edirectory
    
    Remove a reference to eDirectory that persisted after support for
    eDirectory was removed.  Almost certainly harmless anyway.
    
    [ghudson at mit.edu: also quote $with_ldap]

 src/aclocal.m4 |    5 +----
 1 files changed, 1 insertions(+), 4 deletions(-)

diff --git a/src/aclocal.m4 b/src/aclocal.m4
index 4fef4b7..fb02956 100644
--- a/src/aclocal.m4
+++ b/src/aclocal.m4
@@ -1645,10 +1645,7 @@ AC_ARG_WITH([ldap],
     *)  AC_MSG_ERROR(Invalid option value --with-ldap="$withval") ;;
 esac], with_ldap=no)dnl
 
-if test $with_ldap = yes; then
-  if test $with_edirectory = yes; then
-    AC_MSG_ERROR(Cannot enable both OpenLDAP and eDirectory backends; choose one.)
-  fi
+if test "$with_ldap" = yes; then
   AC_MSG_NOTICE(enabling OpenLDAP database backend module support)
   OPENLDAP_PLUGIN=yes
 fi


More information about the cvs-krb5 mailing list