diff options
| author | christos <christos@NetBSD.org> | 2005-03-09 03:11:21 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2005-03-09 03:11:21 +0000 |
| commit | ceb0805a9b5e9c47bbcba5a63f87dfaa200c90dc (patch) | |
| tree | 9635e658ac0349c3cb43f8a7f997ae09c17d0fd7 /gnu | |
| parent | 1c7109cbce71f7adb256e9685c5fb78407a64397 (diff) | |
Add -lcrypt where -lcrypto is specified.
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/usr.bin/cvs/cvs/Makefile | 6 | ||||
| -rw-r--r-- | gnu/usr.sbin/sendmail/Makefile.inc | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/gnu/usr.bin/cvs/cvs/Makefile b/gnu/usr.bin/cvs/cvs/Makefile index 9181daa4d30..64960d6e0d4 100644 --- a/gnu/usr.bin/cvs/cvs/Makefile +++ b/gnu/usr.bin/cvs/cvs/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.14 2004/05/20 15:08:30 christos Exp $ +# $NetBSD: Makefile,v 1.15 2005/03/09 03:11:21 christos Exp $ .include "${.CURDIR}/../Makefile.inc" @@ -29,8 +29,8 @@ LDADD+= -lkrb -ldes .endif CPPFLAGS+= -DHAVE_GSSAPI -I${DESTDIR}/usr/include/krb5 -DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} -LDADD+= -lgssapi -lkrb5 -lasn1 -lcrypto +DPADD+= ${LIBGSSAPI} ${LIBKRB5} ${LIBASN1} ${LIBCRYPTO} ${LIBCRYPT} +LDADD+= -lgssapi -lkrb5 -lasn1 -lcrypto -lcrypt CPPFLAGS+= -DENCRYPTION DPADD+= ${LIBCOM_ERR} ${LIBROKEN} ${LIBCRYPT} diff --git a/gnu/usr.sbin/sendmail/Makefile.inc b/gnu/usr.sbin/sendmail/Makefile.inc index 690a9b580ae..45148af135c 100644 --- a/gnu/usr.sbin/sendmail/Makefile.inc +++ b/gnu/usr.sbin/sendmail/Makefile.inc @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.inc,v 1.9 2005/01/10 02:58:58 lukem Exp $ +# $NetBSD: Makefile.inc,v 1.10 2005/03/09 03:11:21 christos Exp $ WARNS?= 0 @@ -19,8 +19,8 @@ CPPFLAGS+= -DNIS .if ${MKCRYPTO} != "no" CPPFLAGS+= -DSTARTTLS -LDADD+= -lssl -lcrypto -DPADD+= ${LIBSSL} ${LIBCRYPTO} +LDADD+= -lssl -lcrypto -lcrypt +DPADD+= ${LIBSSL} ${LIBCRYPTO} ${LIBCRYPT} .endif .if exists(${.CURDIR}/../../Makefile.inc) |
