From owner-freebsd-gecko@FreeBSD.ORG Thu Feb 6 20:06:21 2014 Return-Path: Delivered-To: gecko@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 57668DF5 for ; Thu, 6 Feb 2014 20:06:21 +0000 (UTC) Received: from kuller.raad.tartu.ee (kuller.raad.tartu.ee [213.184.43.8]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 063CB1FF4 for ; Thu, 6 Feb 2014 20:06:20 +0000 (UTC) Received: from kuller.raad.tartu.ee (localhost [127.0.0.1]) by kuller.raad.tartu.ee (Postfix) with ESMTP id 5951A39881 for ; Thu, 6 Feb 2014 21:56:15 +0200 (EET) X-Virus-Scanned: amavisd-new at post.raad.tartu.ee Received: from kuller.raad.tartu.ee ([127.0.0.1]) by kuller.raad.tartu.ee (kuller.raad.tartu.ee [127.0.0.1]) (amavisd-new, port 10024) with LMTP id LHDiaO5cq3gn for ; Thu, 6 Feb 2014 21:56:10 +0200 (EET) Received: by kuller.raad.tartu.ee (Postfix, from userid 80) id B19D63986E; Thu, 6 Feb 2014 21:56:09 +0200 (EET) Received: from 76.20.190.90.dyn.estpak.ee (76.20.190.90.dyn.estpak.ee [90.190.20.76]) by webmail.raad.tartu.ee (Horde Framework) with HTTP; Thu, 06 Feb 2014 21:56:09 +0200 Message-ID: <20140206215609.10924u0fr05m9auc@webmail.raad.tartu.ee> Date: Thu, 06 Feb 2014 21:56:09 +0200 From: Toomas Aas To: gecko@freebsd.org Subject: [patch] firefox-esr fails to build with nss<3.15.4 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=_4n8igd2e5wcg" Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.3.7) X-Originating-IP: 90.190.20.76 X-BeenThere: freebsd-gecko@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Gecko Rendering Engine issues List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 06 Feb 2014 20:06:21 -0000 This message is in MIME format. --=_4n8igd2e5wcg Content-Type: text/plain; charset=ISO-8859-1; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable ww/firefox-esr/Makefile currently checks for nss>=3D3.15. I had 3.15.2 =20 installed and attempted to build firefox-esr 24, but it failed during =20 configure: ---------------------------------------------------------------------------= ---- configure:15121: checking for nss-config configure:15156: checking for NSS - version >=3D 3.15.4 =3D=3D=3D> Script "../configure" failed unexpectedly. Please report the problem to gecko@FreeBSD.org [maintainer] and attach the "/usr/ports/www/firefox-esr/work/mozilla-esr24/obj-x86_64-unknown-freebsd9.= 2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/sbin/pkg_info -Ea). *** [do-configure] Error code 1 Stop in /usr/ports/www/firefox-esr. *** [build] Error code 1 Stop in /usr/ports/www/firefox-esr. ---------------------------------------------------------------------------= ---- --=20 Toomas Aas Tartu linnakantselei arvutiv=F5rgu peaspetsialist tel 736 1274 mob 513 6493 --=_4n8igd2e5wcg Content-Type: text/x-patch; charset=ISO-8859-1; name="Makefile.patch" Content-Disposition: attachment; filename="Makefile.patch" Content-Transfer-Encoding: 7bit --- Makefile.orig 2014-02-06 21:49:38.000000000 +0200 +++ Makefile 2014-02-06 21:49:57.000000000 +0200 @@ -13,7 +13,7 @@ COMMENT= Web browser based on the browser portion of Mozilla BUILD_DEPENDS= nspr>=4.10.2:${PORTSDIR}/devel/nspr \ - nss>=3.15:${PORTSDIR}/security/nss \ + nss>=3.15.4:${PORTSDIR}/security/nss \ sqlite3>=3.7.17:${PORTSDIR}/databases/sqlite3 \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:${PORTSDIR}/databases/py-sqlite3 \ cairo>=1.10.2_1,1:${PORTSDIR}/graphics/cairo \ --=_4n8igd2e5wcg--