From owner-freebsd-ports@freebsd.org Thu May 11 00:42:02 2017 Return-Path: Delivered-To: freebsd-ports@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0D7CDD67FD4 for ; Thu, 11 May 2017 00:42:02 +0000 (UTC) (envelope-from osa@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [96.47.72.132]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id E15AF1A7E; Thu, 11 May 2017 00:42:01 +0000 (UTC) (envelope-from osa@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 975) id 186835320; Thu, 11 May 2017 00:42:01 +0000 (UTC) Date: Thu, 11 May 2017 00:42:01 +0000 From: "Sergey A. Osokin" To: Adam Weinberger Cc: "jim@ohlste.in" , freebsd-ports@freebsd.org, abi Subject: Re: nginx is not linking against libressl Message-ID: <20170511004201.GD8994@FreeBSD.org> References: <62ed08f5-b41d-aa69-e9e8-4a05dd378c90@abinet.ru> <20170510215133.GA8994@FreeBSD.org> <0FB79D5D-1759-4EE2-A204-8753A9FBB0AC@adamw.org> <20170510225626.GB8994@FreeBSD.org> <20170510231305.GC8994@FreeBSD.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="4Ckj6UjgE2iN1+kY" Content-Disposition: inline In-Reply-To: <20170510231305.GC8994@FreeBSD.org> User-Agent: Mutt/1.7.1 (2016-10-04) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 11 May 2017 00:42:02 -0000 --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=koi8-r Content-Disposition: inline On Wed, May 10, 2017 at 11:13:05PM +0000, Sergey A. Osokin wrote: > On Wed, May 10, 2017 at 10:56:26PM +0000, Sergey A. Osokin wrote: > > On Wed, May 10, 2017 at 04:04:52PM -0600, Adam Weinberger wrote: > > > > On 10 May, 2017, at 15:51, Sergey A. Osokin wrote: > > > > > > > > can't reproduce it on my laptop with FreeBSD 11.0-STABLE #5: Sun Apr 16. > > > > Would you mind to raise a problem report with details, i.e. OS version, > > > > ident Makefile, config.log, etc. > > > > > > > > Thanks in advance. > > > > > > Sergey - > > > > > > Set DEFAULT_VERSIONS= ssl=libressl, and then turn off the IPV6 option in nginx. It's reproducible for me. > > > > Got it, thanks Adam for the point, looks like a regression. Patch. -- Sergey Osokin osa@FreeBSD.org --4Ckj6UjgE2iN1+kY Content-Type: text/plain; charset=koi8-r Content-Disposition: attachment; filename=patch-nginx Index: Makefile =================================================================== --- Makefile (revision 440609) +++ Makefile (working copy) @@ -3,7 +3,7 @@ PORTNAME= nginx PORTVERSION= 1.12.0 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 2 CATEGORIES= www MASTER_SITES= http://nginx.org/download/ @@ -307,7 +307,7 @@ .endif .if empty(PORT_OPTIONS:MIPV6) -CONFIGURE_ARGS+=--with-cc-opt="-DNGX_HAVE_INET6=0" +CONFIGURE_ARGS+=--with-cc-opt="-DNGX_HAVE_INET6=0 -I ${LOCALBASE}/include" .else CATEGORIES+= ipv6 .endif --4Ckj6UjgE2iN1+kY--