fix libcrypto

This commit is contained in:
christos 2014-07-08 13:04:07 +00:00
parent b8f42e532b
commit 645f974306
1 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.2 2014/07/08 09:58:12 martin Exp $
# $NetBSD: Makefile,v 1.3 2014/07/08 13:04:07 christos Exp $
NOMAN= # defined
@ -10,7 +10,12 @@ SRCS= posttls-finger.c tlsmgrmem.c
DIST= ${NETBSDSRCDIR}/external/ibm-public/postfix/dist/src/${PROG}
.PATH: ${DIST}
DPADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL} ${LIBCRYPTO}
LDADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL} ${LIBCRYPTO}
DPADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
LDADD+= ${LIBPDNS} ${LIBPTLS} ${LIBPGLOBAL} ${LIBPUTIL}
.if ${MKCRYPTO} != "no"
DPADD+= ${LIBCRYPTO}
LDADD+= -lcrypto
.endif
.include <bsd.prog.mk>