From owner-freebsd-ports@FreeBSD.ORG Thu Jul 23 09:14:25 2009 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 49970106566C for ; Thu, 23 Jul 2009 09:14:25 +0000 (UTC) (envelope-from m3diaslut@gmail.com) Received: from mail-ew0-f222.google.com (mail-ew0-f222.google.com [209.85.219.222]) by mx1.freebsd.org (Postfix) with ESMTP id D14688FC0A for ; Thu, 23 Jul 2009 09:14:24 +0000 (UTC) (envelope-from m3diaslut@gmail.com) Received: by ewy22 with SMTP id 22so779948ewy.43 for ; Thu, 23 Jul 2009 02:14:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type:content-transfer-encoding; bh=uxEgZgryKjafUo+ykeBpNmcU4gomLIrU1UMXQHDlJLA=; b=oom997isNgtLVPw0Qj3XM++E7QuyNVrGhokzLZWsfqGW8qCCWSclbgV65g2okKaIGs n85kvYk3TvtAjLNq6pqM3Bede9cnn/aD4oSttIkEefhAJG/Plo1arxFgrNObla8FUaGp DVTAcPOX4N0vrqtDT06imada/MnlB6WtUUeVo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type :content-transfer-encoding; b=Gq8SmaDPCAwdVUr3ai7TY3/u0Y5F3V0Z/FnEOGQfOfGya1Vx0/Yh5Vr4ZQ7Lms31Ol ynpNiqiACP8FX/7JYPv8nh2CEsqyn5I97NrWhUW+iftenR/hAutBS8K+dUcRHDvgy46h ZeKcFtgCfc6qDiUuLWHzuqQU8C+Wo6bHNaTtg= MIME-Version: 1.0 Received: by 10.216.49.194 with SMTP id x44mr544101web.130.1248338662200; Thu, 23 Jul 2009 01:44:22 -0700 (PDT) Date: Thu, 23 Jul 2009 10:44:22 +0200 Message-ID: <98de397f0907230144o6ceb0eb0n9891228003f23e9a@mail.gmail.com> From: mediaslut von abfab To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Subject: PHP gd issues X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 23 Jul 2009 09:14:25 -0000 I had the same fatallibpngerror discovered yesterday. It seems like libpng version 1.2.37 was buggy. And version 1.2.38 is not available yet on FreeBSD Ports (although, I don't know if this bug is fixed in this version?). I have downgraded to version 1.2.35 and the error has gone away. Here's just a little how-to, if anyone else needs help with downgrading: If you haven't portdowngrade installed, install it first: =A0cd /usr/ports/ports-mgmt/portdowngrade =A0make install clean After that, use portdowngrade to downgrade libpng: portdowngrade graphics/png$ -s:pserver:anoncvs@anoncvs.tw.FreeBSD.org:/home/ncvs On Step 4, choose the following version (press first in order to be able to insert the number) =A03 =A02009/02/24 04:01:48 =A01.2.35 =A0 =A0 =A0 Upgrade to 1.2.35 =A0 =A0Enter version number to change port to (0: exit): 3 The port will now be downgraded to version 1.2.35. Now you need to downgrade the Software: =A0portsdb -Uu =A0 =A0 =A0 =A0 =A0 =A0 # (that one takes very long!) =A0portupgrade -f png Now Reinstall everything that depends on libpng: =A0portupgrade -fr png After everything is reinstalled, restart Apache =A0apachectl restart done! :o)