diff options
author | joerg <joerg@pkgsrc.org> | 2009-02-13 14:13:58 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-02-13 14:13:58 +0000 |
commit | 588f5ff8a920fb1a72dcf6397a22e2dd3f962a92 (patch) | |
tree | 4eab47cb34ff5521de4848dfedae894118e7a155 | |
parent | f049b40446bc6db201958bc372ea72435fc404d7 (diff) | |
download | pkgsrc-588f5ff8a920fb1a72dcf6397a22e2dd3f962a92.tar.gz |
Explicitly pull in crypto if building with ssl option.
-rw-r--r-- | pkgtools/pkg_install/files/info/Makefile.in | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgtools/pkg_install/files/info/Makefile.in b/pkgtools/pkg_install/files/info/Makefile.in index e2f1d4a4733..0db43d84caf 100644 --- a/pkgtools/pkg_install/files/info/Makefile.in +++ b/pkgtools/pkg_install/files/info/Makefile.in @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.in,v 1.17 2009/02/02 12:35:01 joerg Exp $ +# $NetBSD: Makefile.in,v 1.18 2009/02/13 14:13:58 joerg Exp $ srcdir= @srcdir@ @@ -17,6 +17,9 @@ CC= @CC@ CCLD= $(CC) .if empty(BOOTSTRAP) LIBS= -linstall -larchive -lfetch -lbz2 -lz @LIBS@ +.if !empty(SSL_SUPPORT) +LIBS+= -lcrypto +.endif CPPFLAGS= @CPPFLAGS@ -I. -I$(srcdir) -I../lib .else LIBS= -linstall @LIBS@ |