diff options
author | cube <cube@pkgsrc.org> | 2004-04-21 21:09:31 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2004-04-21 21:09:31 +0000 |
commit | e1aaa019a47227fcfabc7600c4aa35e0a728b70f (patch) | |
tree | fc2c1dd3e4c87b5b0db0fb1e10cf3ab400c0d2e6 /mail/postfix | |
parent | 536a13d16bd4fa80763bb6455dbb8c2a09ebf65d (diff) | |
download | pkgsrc-e1aaa019a47227fcfabc7600c4aa35e0a728b70f.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/postfix')
-rw-r--r-- | mail/postfix/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mail/postfix/Makefile b/mail/postfix/Makefile index fb6b889be92..99ca72e9579 100644 --- a/mail/postfix/Makefile +++ b/mail/postfix/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.128 2004/04/14 17:51:37 grant Exp $ +# $NetBSD: Makefile,v 1.129 2004/04/21 21:09:31 cube Exp $ DISTNAME= postfix-2.0.19 CATEGORIES= mail @@ -42,9 +42,9 @@ FIX_RPATH+= AUXLIBS BUILD_DEFS+= POSTFIX_USE_INET6 BUILD_DEFS+= POSTFIX_USE_TLS BUILD_DEFS+= POSTFIX_USE_PCRE -BUILD_DEFS+= POSTFIX_USE_LDAP BUILD_DEFS+= POSTFIX_USE_MYSQL BUILD_DEFS+= POSTFIX_USE_PGSQL +BUILD_DEFS+= USE_OPENLDAP BUILD_DEFS+= USE_SASL BUILD_DEFS+= USE_SASL2 @@ -73,7 +73,7 @@ AUXLIBS+= -L${BUILDLINK_PREFIX.pcre}/lib \ CCARGS+= -DNO_PCRE .endif -.if defined(POSTFIX_USE_LDAP) && ${POSTFIX_USE_LDAP} == "YES" +.if defined(USE_OPENLDAP) && ${USE_OPENLDAP} == "YES" . include "../../databases/openldap/buildlink3.mk" CCARGS+= -DHAS_LDAP AUXLIBS+= -L${BUILDLINK_PREFIX.openldap}/lib \ |