diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2004-05-13 07:51:47 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2004-05-13 07:51:47 +0000 |
commit | 1116791977851dad8aeba748cfdc2062bd57f5d1 (patch) | |
tree | 13279f97a5c84839f0dc8b69e0cc2f10e80e2d9d /secure | |
parent | f9bc91709ef3b1ac1083a01208c3feab01e830b4 (diff) | |
download | src-1116791977851dad8aeba748cfdc2062bd57f5d1.tar.gz src-1116791977851dad8aeba748cfdc2062bd57f5d1.zip |
Record the libssl.so dependency on libcrypto.so. This should
help some ports that depend on libradius that recently gained
the dependency on libssl. This is also how the stock OpenSSL
build would link libssl.so on FreeBSD.
Prompted by: kris
OK'ed by: markm, nectar
Notes
Notes:
svn path=/head/; revision=129174
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libssl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/secure/lib/libssl/Makefile b/secure/lib/libssl/Makefile index 8c039cad45d9..a3d109fd3af1 100644 --- a/secure/lib/libssl/Makefile +++ b/secure/lib/libssl/Makefile @@ -20,6 +20,9 @@ SRCS= bio_ssl.c s23_clnt.c s23_lib.c s23_meth.c s23_pkt.c s23_srvr.c \ INCS= kssl.h ssl.h ssl2.h ssl23.h ssl3.h tls1.h INCSDIR=${INCLUDEDIR}/openssl +DPADD= ${LIBCRYPTO} +LDADD= -lcrypto + .include <bsd.lib.mk> .PATH: ${LCRYPTO_SRC}/ssl \ |