From owner-freebsd-gnome@FreeBSD.ORG Wed Aug 9 16:16:02 2006 Return-Path: X-Original-To: gnome@freebsd.org Delivered-To: freebsd-gnome@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30E4C16A4DF for ; Wed, 9 Aug 2006 16:16:02 +0000 (UTC) (envelope-from mi+kde@aldan.algebra.com) Received: from aldan.algebra.com (aldan.algebra.com [216.254.65.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFF1C43D6E for ; Wed, 9 Aug 2006 16:16:01 +0000 (GMT) (envelope-from mi+kde@aldan.algebra.com) Received: from aldan.algebra.com (aldan [127.0.0.1]) by aldan.algebra.com (8.13.7/8.13.7) with ESMTP id k79GG0gQ045896 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 9 Aug 2006 12:16:00 -0400 (EDT) (envelope-from mi+kde@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by aldan.algebra.com (8.13.7/8.13.7/Submit) id k79GG0YW045895 for gnome@freebsd.org; Wed, 9 Aug 2006 12:16:00 -0400 (EDT) (envelope-from mi+kde@aldan.algebra.com) From: Mikhail Teterin To: gnome@freebsd.org Date: Wed, 9 Aug 2006 12:16:00 -0400 User-Agent: KMail/1.9.1 X-Face: %UW#n0|w>ydeGt/b@1-.UFP=K^~-:0f#O:D7whJ5G_<5143Bb3kOIs9XpX+"V+~$adGP:J|SLieM31VIhqXeLBli" Cc: Subject: Avoiding firefox' own zlib X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 09 Aug 2006 16:16:02 -0000 Hello! I'm pretty sure, I've reported this already. Firefox checks the "system" libz's version and insists on it 1.2.3, because there was a security flaw in the 1.2.2. FreeBSD patched the flaw years ago _without_ bumping the version number, so firefox' configure misdetects and decides to build the bundled zlib instead of using the perfectly good "system" one. The following hunk should be added to files/patch-configure to stop this silliness (mind the tabs/spaces): @@ -1022,5 +1022,5 @@ MOZJPEG=62 MOZPNG=10207 -MOZZLIB=1.2.3 +MOZZLIB=1.2.2 NSPR_VERSION=4 Other Mozilla-ports could use this too... Yours, -mi