Date: Wed, 26 Jun 2013 21:53:51 +0000 (UTC) From: William Grzybowski <wg@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r321819 - head/news/nzbget Message-ID: <201306262153.r5QLrprj077825@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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}
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306262153.r5QLrprj077825>