[Fedora-directory-commits] ldapserver components.mk,1.36,1.37

Richard Allen Megginson (rmeggins) fedora-directory-commits at redhat.com
Tue Nov 8 15:58:24 UTC 2005


Author: rmeggins

Update of /cvs/dirsec/ldapserver
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv18364/ldapserver

Modified Files:
	components.mk 
Log Message:
Bug(s) fixed: 172672
Bug Description: sasl code needs to accomodate older versions of sasl
Reviewed by: Noriko (Thanks!)
Fix Description: 1) Change build to use -L/usr/kerberos/lib on RHEL3 
since that's where gssapi_krb5 is on that platform 2) ifdef out the use 
of SASL_AUX_PASSWORD_PROP - if it's not defined, we don't need to use it.
Platforms tested: RHEL3
Flag Day: no
Doc impact: no



Index: components.mk
===================================================================
RCS file: /cvs/dirsec/ldapserver/components.mk,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -r1.36 -r1.37
--- components.mk	4 Nov 2005 02:45:20 -0000	1.36
+++ components.mk	8 Nov 2005 15:58:16 -0000	1.37
@@ -355,7 +355,11 @@
 ### SASL package ##########################################
 
 ifeq ($(ARCH), Linux)
-  SASL_LIBPATH = /usr/lib
+  ifeq ($(BUILD_ARCH), RHEL3)
+    SASL_LIBPATH = /usr/kerberos/lib
+  else
+    SASL_LIBPATH = /usr/lib
+  endif
   SASL_INCDIR = /usr/include/sasl
 else
   ifdef SASL_SOURCE_ROOT




More information about the Fedora-directory-commits mailing list