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:
parent
7f7b291518
commit
694ae4fc45
@ -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
|
||||
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user