From owner-freebsd-ports-bugs@FreeBSD.ORG Wed Jun 12 15:00:37 2013 Return-Path: Delivered-To: freebsd-ports-bugs@FreeBSD.org Received: by hub.freebsd.org (Postfix, from userid 1317) id 9F2BAE46; Wed, 12 Jun 2013 15:00:37 +0000 (UTC) Date: Wed, 12 Jun 2013 15:00:37 +0000 From: William Grzybowski To: wg@FreeBSD.org Subject: Re: ports/179508: news/nzbget - configure is unable to locate base openssl headers and libs Message-ID: <20130612150037.GA46981@hub.freebsd.org> References: <201306121459.r5CEx2Et031155@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: <201306121459.r5CEx2Et031155@freefall.freebsd.org> User-Agent: Mutt/1.5.21 (2010-09-15) Cc: toxic@doobie.com, freebsd-ports-bugs@FreeBSD.org X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jun 2013 15:00:37 -0000 --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hi, Patch attached, please approve. On Wed, Jun 12, 2013 at 02:59:02PM +0000, wg@FreeBSD.org wrote: > Synopsis: news/nzbget - configure is unable to locate base openssl headers and libs > > Responsible-Changed-From-To: freebsd-ports-bugs->wg > Responsible-Changed-By: wg > Responsible-Changed-When: Wed Jun 12 14:59:02 UTC 2013 > Responsible-Changed-Why: > I'll take it. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=179508 --SUOF0GtieIMvvwua Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="nzbget.patch" Index: Makefile =================================================================== --- Makefile (revision 320293) +++ Makefile (working copy) @@ -39,7 +39,9 @@ .endif .if ${PORT_OPTIONS:MOPENSSL} - CONFIGURE_ARGS+= --with-tlslib=OpenSSL + CONFIGURE_ARGS+= --with-tlslib=OpenSSL \ + --with-openssl-includes=/usr/include/openssl \ + --with-openssl-libraries=/usr/lib/openssl .endif .if ${PORT_OPTIONS:MGNUTLS} --SUOF0GtieIMvvwua--