svn commit: r321819 - head/news/nzbget

William Grzybowski wg at FreeBSD.org
Wed Jun 26 21:53:52 UTC 2013


Author: wg
Date: Wed Jun 26 21:53:51 2013
New Revision: 321819
URL: http://svnweb.freebsd.org/changeset/ports/321819

Log:
  news/nzbget: fix build with openssl
  
  - Fix build with OpenSSL, path to base lib
  
  PR:		ports/179508
  Submitted by:	Nicolas Raspail <nicolas at whisperingvault.net>
  Approved by:	maintainer (timeout)

Modified:
  head/news/nzbget/Makefile

Modified: head/news/nzbget/Makefile
==============================================================================
--- head/news/nzbget/Makefile	Wed Jun 26 21:18:53 2013	(r321818)
+++ head/news/nzbget/Makefile	Wed Jun 26 21:53:51 2013	(r321819)
@@ -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}


More information about the svn-ports-all mailing list