1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-28 16:43:09 +00:00

During buildworld, "regular" libraries are built before crypto stuff, so

libfetch can't depend on lib{crypto,ssl}.  Move the dependency to fetch
until we can figure out how to fix this.
This commit is contained in:
Dag-Erling Smørgrav 2002-06-05 21:25:33 +00:00
parent 678735da39
commit d9615d7da4
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=97888
2 changed files with 6 additions and 2 deletions

View File

@ -10,8 +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
#DPADD= ${LIBCRYPTO} ${LIBSSL}
#LDADD= -lcrypto -lssl
NO_WERROR= yes

View File

@ -4,5 +4,9 @@ MAINTAINER= des@freebsd.org
PROG= fetch
DPADD= ${LIBFETCH}
LDADD= -lfetch
.if !defined(NOCRYPTO)
DPADD+= ${LIBCRYPTO} ${LIBSSL}
LDADD+= -lcrypto -lssl
.endif
.include <bsd.prog.mk>