summaryrefslogtreecommitdiff
path: root/news
diff options
context:
space:
mode:
authorWilliam Grzybowski <wg@FreeBSD.org>2013-06-26 21:53:51 +0000
committerWilliam Grzybowski <wg@FreeBSD.org>2013-06-26 21:53:51 +0000
commit5d910c3624f951c1aa2e8d55eb4fce0bddd66252 (patch)
tree291d0074b00883de738a026a868226da9f43fe0b /news
parent- Update to 3.6.3 (diff)
news/nzbget: fix build with openssl
- Fix build with OpenSSL, path to base lib PR: ports/179508 Submitted by: Nicolas Raspail <nicolas@whisperingvault.net> Approved by: maintainer (timeout)
Notes
Notes: svn path=/head/; revision=321819
Diffstat (limited to 'news')
-rw-r--r--news/nzbget/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/news/nzbget/Makefile b/news/nzbget/Makefile
index b5d3def1b2c8..1d840fe90b45 100644
--- a/news/nzbget/Makefile
+++ b/news/nzbget/Makefile
@@ -39,7 +39,10 @@ OPTIONS_DEFAULT= PAR GNUTLS
.endif
.if ${PORT_OPTIONS:MOPENSSL}
- CONFIGURE_ARGS+= --with-tlslib=OpenSSL
+ USE_OPENSSL= yes
+ CONFIGURE_ARGS+= --with-tlslib=OpenSSL \
+ --with-openssl-includes=${OPENSSLINC} \
+ --with-openssl-libraries=${OPENSSLLIB}
.endif
.if ${PORT_OPTIONS:MGNUTLS}