Module Name: src
Committed By: martin
Date: Tue Jul 8 09:58:12 UTC 2014
Modified Files:
src/external/ibm-public/postfix/sbin/posttls-finger: Makefile
Log Message:
Add missing libcrypto
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 \
src/external/ibm-public/postfix/sbin/posttls-finger/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/sbin/posttls-finger/Makefile
diff -u src/external/ibm-public/postfix/sbin/posttls-finger/Makefile:1.1 src/external/ibm-public/postfix/sbin/posttls-finger/Makefile:1.2
--- src/external/ibm-public/postfix/sbin/posttls-finger/Makefile:1.1 Sun Jul 6 20:09:26 2014
+++ src/external/ibm-public/postfix/sbin/posttls-finger/Makefile Tue Jul 8 09:58:12 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.1 2014/07/06 20:09:26 tron Exp $
+# $NetBSD: Makefile,v 1.2 2014/07/08 09:58:12 martin Exp $
NOMAN= # defined
@@ -10,7 +10,7 @@ SRCS= posttls-finger.c tlsmgrmem.c
DIST= ${NETBSDSRCDIR}/external/ibm-public/postfix/dist/src/${PROG}
.PATH: ${DIST}
-DPADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
-LDADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
+DPADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL} ${LIBCRYPTO}
+LDADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL} ${LIBCRYPTO}
.include <bsd.prog.mk>