From owner-freebsd-gnome@FreeBSD.ORG Thu Oct 19 01:00:31 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 B8E2116A415 for ; Thu, 19 Oct 2006 01:00:31 +0000 (UTC) (envelope-from mi+mx@aldan.algebra.com) Received: from corbulon.video-collage.com (static-151-204-231-237.bos.east.verizon.net [151.204.231.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07DD543D58 for ; Thu, 19 Oct 2006 01:00:30 +0000 (GMT) (envelope-from mi+mx@aldan.algebra.com) Received: from mteterin.us.murex.com (mx-broadway [38.98.68.18]) by corbulon.video-collage.com (8.13.6/8.13.6) with ESMTP id k9J10TKt031444 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Wed, 18 Oct 2006 21:00:29 -0400 (EDT) (envelope-from mi+mx@aldan.algebra.com) Received: from mteterin.us.murex.com (mteterin@localhost [127.0.0.1]) by mteterin.us.murex.com (8.13.6/8.13.6) with ESMTP id k9J10NjA082612; Wed, 18 Oct 2006 21:00:23 -0400 (EDT) (envelope-from mi+mx@aldan.algebra.com) Received: from localhost (localhost [[UNIX: localhost]]) by mteterin.us.murex.com (8.13.6/8.13.6/Submit) id k9J10Nfm082611; Wed, 18 Oct 2006 21:00:23 -0400 (EDT) (envelope-from mi+mx@aldan.algebra.com) X-Authentication-Warning: mteterin.us.murex.com: mteterin set sender to mi+mx@aldan.algebra.com using -f From: Mikhail Teterin Organization: Virtual Estates, Inc. To: "michael johnson" , gnome@freebsd.org Date: Wed, 18 Oct 2006 21:00:22 -0400 User-Agent: KMail/1.9.1 References: <200609190241.k8J2f6CM084659@repoman.freebsd.org> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-u" Content-Transfer-Encoding: 8bit Content-Disposition: inline Message-Id: <200610182100.23335.mi+mx@aldan.algebra.com> X-Virus-Scanned: ClamAV 0.88.4/2041/Wed Oct 18 02:29:52 2006 on corbulon.video-collage.com X-Virus-Status: Clean X-Scanned-By: MIMEDefang 2.43 Cc: Subject: Re: cvs commit: ports/www/firefox/files patch-configure 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: Thu, 19 Oct 2006 01:00:31 -0000 After updating the ports today and trying to rebuilding firefox, I see it trying to use the zlib module. Commenting it out in work/mozilla/Makefile seems to work: #ifndef MOZ_NATIVE_ZLIB #tier_1_dirs += modules/zlib #endif I only noticed, because my own www/mozilla/Makefile.common takes care to not even extract libbz2 and zlib modules: RCS file: /meow/ncvs/ports/www/mozilla/Makefile.common,v retrieving revision 1.17 diff -U2 -r1.17 Makefile.common --- Makefile.common 14 Oct 2006 08:35:23 -0000 1.17 +++ Makefile.common 18 Oct 2006 22:37:39 -0000 @@ -103,4 +103,6 @@ --exclude */nsprpub/* \ --exclude mozilla/modules/libimg/png \ + --exclude mozilla/modules/libbz2 \ + --exclude mozilla/modules/zlib \ --exclude mozilla/jpeg \ --exclude mozilla/dbm \ Yours, -mi в╕второк 19 вересень 2006 17:39, michael johnson написав: > On 9/18/06, Mikhail Teterin wrote: > > mi 2006-09-19 02:41:06 UTC > > > > FreeBSD ports repository > > > > Modified files: > > www/firefox/files patch-configure > > Log: > > Add a tiny hunk to allow firefox to use our system libz instead of > > building its own. Some years ago there was a security problem with > > zlib-1.2.2 and firefox' configure checks the system's zlib.h to be > > 1.2.3 or higher. > > > > FreeBSD patched the hole without bumping the version number, which > > caused Firefox (and, likely, other Mozilla stuff) to build their own > > versions instead (and install their headers). > > > > Maintainers were repeatedly notified -- most recently about a month > > ago: <200608091216.00510@aldan>, < > > 200601251926.39246.mi+mx@aldan.algebra.com>. > > I see where you emailed us in August, we must've totally missed that > thread. Sorry. > I'll fix this in other gecko ports soon. > > > Approved by: maintainer timeout > > > Revision Changes Path > > 1.3 +8 -1 ports/www/firefox/files/patch-configure