diff options
author | joerg <joerg@pkgsrc.org> | 2009-02-18 08:36:53 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2009-02-18 08:36:53 +0000 |
commit | edc8bc8786ca18077a17a5c858685899fa377ba8 (patch) | |
tree | 939b0e247d8aab4d6734c062480ab3cc06bbc7d1 /net/fetch | |
parent | 86f3e6f8e8eceb826494510e41ab6a6d0e9300a2 (diff) | |
download | pkgsrc-edc8bc8786ca18077a17a5c858685899fa377ba8.tar.gz |
Add back support for OpenSSL option, otherwise fetch can't link against
static libfetch built with SSL.
Diffstat (limited to 'net/fetch')
-rw-r--r-- | net/fetch/options.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/net/fetch/options.mk b/net/fetch/options.mk index 6585fc8f88d..25853611c18 100644 --- a/net/fetch/options.mk +++ b/net/fetch/options.mk @@ -1,10 +1,14 @@ -# $NetBSD: options.mk,v 1.2 2009/02/09 13:34:51 joerg Exp $ +# $NetBSD: options.mk,v 1.3 2009/02/18 08:36:53 joerg Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.libfetch PKG_SUPPORTED_OPTIONS= PKG_SUGGESTED_OPTIONS= .include "../../net/libfetch/buildlink3.mk" +.if !empty(PKG_BUILD_OPTIONS.libfetch:Mopenssl) +PKG_SUPPORTED_OPTIONS+= openssl +PKG_SUGGESTED_OPTIONS+= openssl +.endif .include "../../mk/bsd.options.mk" |