From: Todd C. Miller Date: Sun, 30 Jul 2006 19:53:52 +0000 (+0000) Subject: Fix typo, -lldap vs. -ldap; from Tim Knox. X-Git-Tag: SUDO_1_7_0~593 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be3a220f7d37012109fbd1aeec7da006f8493763;p=sudo Fix typo, -lldap vs. -ldap; from Tim Knox. --- diff --git a/configure b/configure index 2da6e8a81..c57864ae0 100755 --- a/configure +++ b/configure @@ -21144,9 +21144,9 @@ rm -f conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done if test "$found" = "no"; then - LDAP_LIBS=" -ldap" - echo "$as_me:$LINENO: result: not found, using -ldap" >&5 -echo "${ECHO_T}not found, using -ldap" >&6 + LDAP_LIBS=" -lldap" + echo "$as_me:$LINENO: result: not found, using -lldap" >&5 +echo "${ECHO_T}not found, using -lldap" >&6 else echo "$as_me:$LINENO: result: $LDAP_LIBS" >&5 echo "${ECHO_T}$LDAP_LIBS" >&6 diff --git a/configure.in b/configure.in index 3d010a5f3..6e6cf7399 100644 --- a/configure.in +++ b/configure.in @@ -2218,10 +2218,10 @@ if test -n "$with_ldap"; then #include #include ]], [[(void)ldap_init(0, 0)]])], [found=yes; break]) done - dnl if nothing linked just try with -ldap + dnl if nothing linked just try with -lldap if test "$found" = "no"; then - LDAP_LIBS=" -ldap" - AC_MSG_RESULT([not found, using -ldap]) + LDAP_LIBS=" -lldap" + AC_MSG_RESULT([not found, using -lldap]) else AC_MSG_RESULT([$LDAP_LIBS]) fi