diff options
author | cube <cube> | 2004-04-21 21:09:31 +0000 |
---|---|---|
committer | cube <cube> | 2004-04-21 21:09:31 +0000 |
commit | 28ec4f0ccbae2db16313eb2a9f788d2de1bf20b0 (patch) | |
tree | fc2c1dd3e4c87b5b0db0fb1e10cf3ab400c0d2e6 /mail/sendmail811 | |
parent | 68e5e2a5e2f75ce0f71fe798540445a88d0f9a96 (diff) | |
download | pkgsrc-28ec4f0ccbae2db16313eb2a9f788d2de1bf20b0.tar.gz |
Drop localized *_USE_LDAP definitions and consistently use USE_OPENLDAP
instead. As announced on tech-pkg.
Most notably affected are Postfix, sendmail, Samba and cyrus-saslauthd. Be
sure to update your mk.conf accordingly.
Diffstat (limited to 'mail/sendmail811')
-rw-r--r-- | mail/sendmail811/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/sendmail811/Makefile b/mail/sendmail811/Makefile index d62f4931261..9b10afd6879 100644 --- a/mail/sendmail811/Makefile +++ b/mail/sendmail811/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2004/04/18 05:10:15 snj Exp $ +# $NetBSD: Makefile,v 1.17 2004/04/21 21:09:31 cube Exp $ DISTNAME= sendmail.8.11.6 PKGNAME= sendmail-8.11.6 @@ -38,7 +38,7 @@ MAKE_ENV+= BSD_BINOWN="${BINOWN}" BSD_BINGRP="${BINGRP}" \ BUILDLINK_DIR="${BUILDLINK_DIR}" SITECONFIG= ${WRKSRC}/devtools/Site/site.config.m4 -BUILD_DEFS+= USE_WIDEPATCH USE_INET6 USE_TCPWRAPPERS USE_LDAP USE_DB2 \ +BUILD_DEFS+= USE_WIDEPATCH USE_INET6 USE_TCPWRAPPERS USE_OPENLDAP USE_DB2 \ USE_SASL USE_STARTTLS MESSAGE_SRC= ${WRKDIR}/.MESSAGE_SRC PLIST_SRC= ${WRKDIR}/.PLIST_SRC @@ -55,7 +55,7 @@ USE_DB2?= NO . include "../../databases/db/buildlink3.mk" .endif -.if defined(USE_LDAP) && (${USE_LDAP} == "YES") +.if defined(USE_OPENLDAP) && (${USE_OPENLDAP} == "YES") . include "../../databases/openldap/buildlink3.mk" .endif @@ -92,7 +92,7 @@ post-patch: .if ${OPSYS} == "SunOS" ${CAT} ${FILESDIR}/site.config.m4-solaris >>${SITECONFIG} .endif -.if defined(USE_LDAP) && ${USE_LDAP} == YES +.if defined(USE_OPENLDAP) && ${USE_OPENLDAP} == YES ${CAT} ${FILESDIR}/site.config.m4-ldap >>${SITECONFIG} ${ECHO} -n ' LDAP' >>${DESCR_SRC} .endif |