You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@apr.apache.org by mi...@apache.org on 2005/09/15 21:34:32 UTC

svn commit: r289297 - in /apr/apr-util/trunk: CHANGES build/apu-conf.m4

Author: minfrin
Date: Thu Sep 15 12:34:24 2005
New Revision: 289297

URL: http://svn.apache.org/viewcvs?rev=289297&view=rev
Log:
Teach configure how to find the Novell SDK. The Novell SDK
depends on gssapi, some extra work will probably be needed
to make it link to gssapi on platforms other than Linux.

Modified:
    apr/apr-util/trunk/CHANGES
    apr/apr-util/trunk/build/apu-conf.m4

Modified: apr/apr-util/trunk/CHANGES
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/CHANGES?rev=289297&r1=289296&r2=289297&view=diff
==============================================================================
--- apr/apr-util/trunk/CHANGES (original)
+++ apr/apr-util/trunk/CHANGES Thu Sep 15 12:34:24 2005
@@ -1,5 +1,7 @@
 Changes with APR-util 1.3.0
 
+  *) Teach configure how to find the Novell SDK. [Graham Leggett]
+
   *) Fix GMT offset for several date formats and add a new format.
      [Maxime Petazzoni <maxime.petazzoni bulix.org>]
 

Modified: apr/apr-util/trunk/build/apu-conf.m4
URL: http://svn.apache.org/viewcvs/apr/apr-util/trunk/build/apu-conf.m4?rev=289297&r1=289296&r2=289297&view=diff
==============================================================================
--- apr/apr-util/trunk/build/apu-conf.m4 (original)
+++ apr/apr-util/trunk/build/apu-conf.m4 Thu Sep 15 12:34:24 2005
@@ -287,6 +287,10 @@
       APR_ADDTO(APRUTIL_LDFLAGS, [-L$with_ldap_lib])
     fi
 
+    dnl Find GSSAPI for Novell SDK
+    AC_CHECK_LIB(gssapi_krb5, GSS_C_NT_HOSTBASED_SERVICE)
+    AC_CHECK_LIB(gssapi, GSS_C_NT_HOSTBASED_SERVICE)
+
     LIBLDAP="$withval"
     if test "$LIBLDAP" = "yes"; then
 dnl The iPlanet C SDK 5.0 is as yet untested... 
@@ -295,6 +299,7 @@
       APU_FIND_LDAPLIB("ldapssl40")
       APU_FIND_LDAPLIB("ldapssl30")
       APU_FIND_LDAPLIB("ldapssl20")
+      APU_FIND_LDAPLIB("ldapsdk", "-lldapx -lldapssl -lldapgss")
       APU_FIND_LDAPLIB("ldap", "-llber")
       APU_FIND_LDAPLIB("ldap", "-llber -lresolv")
       APU_FIND_LDAPLIB("ldap", "-llber -lresolv -lsocket -lnsl")