Module Name: src
Committed By: christos
Date: Thu Jun 30 03:05:45 UTC 2016
Modified Files:
src/external/ibm-public/postfix/libexec/smtpd: Makefile
Log Message:
Makefile.inc needs -I${DIST} to be the source dir of the program we are
compiling, make it so.
To generate a diff of this commit:
cvs rdiff -u -r1.4 -r1.5 \
src/external/ibm-public/postfix/libexec/smtpd/Makefile
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/libexec/smtpd/Makefile
diff -u src/external/ibm-public/postfix/libexec/smtpd/Makefile:1.4 src/external/ibm-public/postfix/libexec/smtpd/Makefile:1.5
--- src/external/ibm-public/postfix/libexec/smtpd/Makefile:1.4 Wed Jun 29 16:07:52 2016
+++ src/external/ibm-public/postfix/libexec/smtpd/Makefile Wed Jun 29 23:05:45 2016
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2016/06/29 20:07:52 christos Exp $
+# $NetBSD: Makefile,v 1.5 2016/06/30 03:05:45 christos Exp $
NOMAN= # defined
@@ -6,8 +6,9 @@ NOMAN= # defined
PROG= smtpd
-DIST= ${NETBSDSRCDIR}/external/ibm-public/postfix/dist
-.PATH: ${DIST}/src/${PROG}
+TOP= ${NETBSDSRCDIR}/external/ibm-public/postfix/dist
+DIST=${TOP}/src/${PROG}
+.PATH: ${DIST}
SRCS= smtpd.c smtpd_token.c smtpd_check.c smtpd_chat.c smtpd_state.c \
smtpd_peer.c smtpd_sasl_proto.c smtpd_sasl_glue.c smtpd_proxy.c \
@@ -21,7 +22,7 @@ LDADD+= ${LIBPMASTER} ${LIBPMILTER} ${LI
DPADD+= ${LIBPTLS} ${LIBSSL} ${LIBCRYPTO}
LDADD+= ${LIBPTLS} -lssl -lcrypto
.else
-.PATH: ${DIST}/src/tls
+.PATH: ${TOP}/src/tls
SRCS+= tls_level.c
.endif