check out the LDAP C SDK library source from a branch by default (the code only gets built if --enable-ldap is specified, and that is off by default). r=slamm@netscape.com; a=leaf@mozilla.org

This commit is contained in:
dmose%mozilla.org 2000-06-07 03:07:45 +00:00
parent 1a5de10296
commit 88d95c9720

View File

@ -55,6 +55,7 @@
#MOZ_CO_TAG = <tag>
NSPR_CO_TAG = NSPRPUB_CLIENT_BRANCH
PSM_CO_TAG = SECURITY_CLIENT_BRANCH
LDAPCSDK_CO_TAG = LDAPCSDK_40_BRANCH
BUILD_MODULES = all
#######################################################################
@ -187,6 +188,16 @@ ifdef NSPR_CO_TAG
endif
CVSCO_NSPR = cvs $(CVS_FLAGS) co $(NSPR_CO_FLAGS) $(CVS_CO_DATE_FLAGS) $(NSPR_CO_MODULE)
####################################
# CVS defines for the C LDAP SDK
#
LDAPCSDK_CO_MODULE = DirectorySDKSourceC
LDAPCSDK_CO_FLAGS := -P
ifdef LDAPCSDK_CO_TAG
LDAPCSDK_CO_FLAGS := $(LDAPCSDK_CO_FLAGS) -r $(LDAPCSDK_CO_TAG)
endif
CVSCO_LDAPCSDK = cvs $(CVS_FLAGS) co $(LDAPCSDK_CO_FLAGS) $(CVS_CO_DATE_FLAGS) $(LDAPCSDK_CO_MODULE)
####################################
# CVS defines for standalone modules
#
@ -262,6 +273,7 @@ real_checkout:
if test -f $$failed; then false; else true; fi; }; \
cvs_co $(CVSCO_NSPR) && \
cvs_co $(CVSCO_PSM) && \
cvs_co $(CVSCO_LDAPCSDK) && \
cvs_co $(CVSCO_SEAMONKEY)
@echo "checkout finish: "`date` | tee -a $(CVSCO_LOGFILE)
@: Check the log for conflicts. ;\