summaryrefslogtreecommitdiffstats
path: root/components.mk
diff options
context:
space:
mode:
authorRich Megginson <rmeggins@redhat.com>2005-11-08 15:58:22 +0000
committerRich Megginson <rmeggins@redhat.com>2005-11-08 15:58:22 +0000
commit8b8176f3b84d499c1980c40c81f1b6ad9485bac6 (patch)
tree6bf0e72fa6f40e690ebe985e7b3081114d0fd7bd /components.mk
parentcb00b1a1d12be39c9c6b6c259817a4b1d2f42e10 (diff)
downloadds-8b8176f3b84d499c1980c40c81f1b6ad9485bac6.tar.gz
ds-8b8176f3b84d499c1980c40c81f1b6ad9485bac6.tar.xz
ds-8b8176f3b84d499c1980c40c81f1b6ad9485bac6.zip
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
Diffstat (limited to 'components.mk')
-rw-r--r--components.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/components.mk b/components.mk
index 008445d0..a2b6c7ea 100644
--- a/components.mk
+++ b/components.mk
@@ -355,7 +355,11 @@ LIBLDAP = $(addprefix $(LDAP_LIBPATH)/, $(LDAPOBJNAME))
### 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