Module Name: src
Committed By: christos
Date: Sun Feb 13 01:50:04 UTC 2011
Modified Files:
src/external/ibm-public/postfix: Makefile.inc
Log Message:
change the saslc define to USE_ and test against "no" instead of just defined.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 src/external/ibm-public/postfix/Makefile.inc
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/ibm-public/postfix/Makefile.inc
diff -u src/external/ibm-public/postfix/Makefile.inc:1.4 src/external/ibm-public/postfix/Makefile.inc:1.5
--- src/external/ibm-public/postfix/Makefile.inc:1.4 Sat Feb 12 19:41:20 2011
+++ src/external/ibm-public/postfix/Makefile.inc Sat Feb 12 20:50:03 2011
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile.inc,v 1.4 2011/02/13 00:41:20 christos Exp $
+# $NetBSD: Makefile.inc,v 1.5 2011/02/13 01:50:03 christos Exp $
.include <bsd.own.mk>
USE_FORT?= yes # network client and server
-HAVE_LIB_SASLC?= yes
+USE_LIB_SASLC?= yes
WARNS?= 0
@@ -16,7 +16,7 @@
-I${PFIX_DISTDIR}/src/tls -I${PFIX_DISTDIR}/src/milter \
-I${PFIX_DISTDIR}/src/xsasl
-.if defined(HAVE_LIB_SASLC)
+.if ${USE_LIB_SASLC} != "no"
CPPFLAGS+= -DUSE_SASL_AUTH -DUSE_SASLC_SASL
.if (${MKCRYPTO} != "mo")
DPADD+= ${LIBSASCL} ${LIBSSL}