diff options
| author | Ruslan Ermilov <ru@FreeBSD.org> | 2002-06-06 13:45:46 +0000 |
|---|---|---|
| committer | Ruslan Ermilov <ru@FreeBSD.org> | 2002-06-06 13:45:46 +0000 |
| commit | 4093807dd95a918ce009be5d4d3ad6c536857129 (patch) | |
| tree | 7af9257a853afb203a015dec13366bbf60a9e7d8 /lib/libfetch | |
| parent | e12155c8345909beaf654cc023f613a62b977db5 (diff) | |
Notes
Diffstat (limited to 'lib/libfetch')
| -rw-r--r-- | lib/libfetch/Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index 4308e7541e49..1321118c3285 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -5,16 +5,17 @@ LIB= fetch WARNS?= 4 CFLAGS+= -I. CFLAGS+= -DINET6 -.if !defined(NOCRYPT) -CFLAGS+= -DWITH_SSL -.endif SRCS= fetch.c common.c ftp.c http.c file.c \ ftperr.h httperr.h INCS= fetch.h MAN= fetch.3 CLEANFILES= ftperr.h httperr.h -#DPADD= ${LIBCRYPTO} ${LIBSSL} -#LDADD= -lcrypto -lssl + +.if !defined(NOCRYPT) && !defined(NOSECURE) && !defined(NO_OPENSSL) +CFLAGS+= -DWITH_SSL +DPADD= ${LIBCRYPTO} ${LIBSSL} +LDADD= -lcrypto -lssl +.endif NO_WERROR= yes |
