diff options
author | bapt <bapt@FreeBSD.org> | 2014-11-25 11:07:26 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2014-11-25 11:07:26 +0000 |
commit | 6adce30d288e6c89f9247b8bced6dc1382b72c8f (patch) | |
tree | 9490af12e8dfdddce4107ac3a4cefe6c56ba0614 /lib/libfetch | |
parent | 1578ed600d5f0f7553eff58b014cf5f74141ebcd (diff) | |
download | FreeBSD-src-6adce30d288e6c89f9247b8bced6dc1382b72c8f.zip FreeBSD-src-6adce30d288e6c89f9247b8bced6dc1382b72c8f.tar.gz |
Convert libraries to use LIBADD
While here reduce a bit overlinking
Diffstat (limited to 'lib/libfetch')
-rw-r--r-- | lib/libfetch/Makefile | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libfetch/Makefile b/lib/libfetch/Makefile index cef5f5a..4f56552 100644 --- a/lib/libfetch/Makefile +++ b/lib/libfetch/Makefile @@ -16,11 +16,9 @@ CFLAGS+= -DINET6 .if ${MK_OPENSSL} != "no" CFLAGS+= -DWITH_SSL -DPADD= ${LIBSSL} ${LIBCRYPTO} -LDADD= -lssl -lcrypto +LIBADD+= ssl crypto .else -DPADD= ${LIBMD} -LDADD= -lmd +LIBADD+= md .endif CFLAGS+= -DFTP_COMBINE_CWDS |