diff options
author | des <des@FreeBSD.org> | 2002-06-05 11:38:19 +0000 |
---|---|---|
committer | des <des@FreeBSD.org> | 2002-06-05 11:38:19 +0000 |
commit | 71760f513057fccda17e748f41da1723218944e7 (patch) | |
tree | 16636f8bf2395315377f7fcac27c12f32b1c6f05 /lib | |
parent | 6f8415eeca669d858b54f52a3c67b6322b6572d4 (diff) | |
download | FreeBSD-src-71760f513057fccda17e748f41da1723218944e7.zip FreeBSD-src-71760f513057fccda17e748f41da1723218944e7.tar.gz |
Add the necessary dependencies for SSL.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libfetch/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index c5ec5bc..b99388d 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -10,6 +10,8 @@ SRCS= fetch.c common.c ftp.c http.c file.c \ INCS= fetch.h MAN= fetch.3 CLEANFILES= ftperr.h httperr.h +DPADD= ${LIBCRYPTO} ${LIBSSL} +LDADD= -lcrypto -lssl NO_WERROR= yes |