1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-20 08:27:15 +00:00

Optionally enable OpenLDAP through knob WITH_LDAP

This commit is contained in:
Volker Stolz 2006-03-17 15:08:39 +00:00
parent a29985d551
commit 456bbaed3b
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=157497

View File

@ -34,7 +34,6 @@ CONFIGURE_ARGS?=--with-clash-detection \
--with-sound=native,nonas,noesd \
--site-includes=${LOCALBASE}/include \
--site-libraries=${LOCALBASE}/lib \
--with-ldap=no \
--with-site-lisp \
--with-database=berkdb \
${WITH_SCROLLBARS} ${WITH_DIALOGS} ${WITH_WIDGETS} \
@ -57,6 +56,13 @@ PLIST_SUB+= PDUMP=""
PLIST_SUB+= PDUMP="@comment "
.endif
.if defined(WITH_LDAP)
USE_OPENLDAP= yes
CONFIGURE_ARGS+= --with-ldap
.else
CONFIGURE_ARGS+= --with-ldap=no
.endif
.if !defined(WITHOUT_XEMACS_PACKAGES)
RUN_DEPENDS+= ${LOCALBASE}/lib/xemacs/xemacs-packages/etc/enriched.doc:${PORTSDIR}/editors/xemacs-packages
.endif