Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/external/ibm-public/postfix change the saslc define to USE_ ...



details:   https://anonhg.NetBSD.org/src/rev/75736a3e1361
branches:  trunk
changeset: 762002:75736a3e1361
user:      christos <christos%NetBSD.org@localhost>
date:      Sun Feb 13 01:50:03 2011 +0000

description:
change the saslc define to USE_ and test against "no" instead of just defined.

diffstat:

 external/ibm-public/postfix/Makefile.inc |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (24 lines):

diff -r b1796c4c9fdf -r 75736a3e1361 external/ibm-public/postfix/Makefile.inc
--- a/external/ibm-public/postfix/Makefile.inc  Sun Feb 13 01:21:52 2011 +0000
+++ b/external/ibm-public/postfix/Makefile.inc  Sun Feb 13 01:50:03 2011 +0000
@@ -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}



Home | Main Index | Thread Index | Old Index