1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-10 14:02:43 +00:00

Make sure the crypto versions of libfetch and fetch(1) appear in

the "crypto" distribution.

Approved by:	des
This commit is contained in:
Ruslan Ermilov 2003-07-22 13:54:31 +00:00
parent b92ba02261
commit 36317d686a
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=117890
2 changed files with 2 additions and 0 deletions

View File

@ -10,6 +10,7 @@ MAN= fetch.3
CLEANFILES= ftperr.h httperr.h
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
DISTRIBUTION= crypto
CFLAGS+= -DWITH_SSL
DPADD= ${LIBSSL} ${LIBCRYPTO}
LDADD= -lssl -lcrypto

View File

@ -6,6 +6,7 @@ WARNS?= 6
DPADD= ${LIBFETCH}
LDADD= -lfetch
.if !defined(NOCRYPT) && !defined(NO_OPENSSL)
DISTRIBUTION= crypto
DPADD+= ${LIBSSL} ${LIBCRYPTO}
LDADD+= -lssl -lcrypto
.endif