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:
des 2002-06-05 21:25:33 +00:00
parent 7f7b291518
commit 694ae4fc45
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>