From owner-freebsd-ports@FreeBSD.ORG Thu Jul 23 09:11:40 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 3B931106566B for ; Thu, 23 Jul 2009 09:11:40 +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 AD2B78FC0A for ; Thu, 23 Jul 2009 09:11:39 +0000 (UTC) (envelope-from m3diaslut@gmail.com) Received: by ewy22 with SMTP id 22so778564ewy.43 for ; Thu, 23 Jul 2009 02:11:38 -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=un7GXsspmkCFvCd0AbrZ9ZPerx11tgkYAtl46mJRmNc=; b=jalYqZsDfcI9/laerV04jce18QcF0duzEbbXI4kWRolN60MU5QUH2DIHdmxX+nRpBY 9yLFrKxTED8c3bpGFKxJsNSf8/lQvztta4IY444IwDHoSr42SLZixg/ITlPt5FsN3HBD UJREC9D8YovrNql+qw9GXLKxLXDIPtMNbz35U= 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=UqfBaY/zHuKbhrqn+6m6vf0DU5Y5Ekl6T6FsG6/NU+hmRA9RSlVsfgVuBX0BopF/av +TxoyZqlF+IqwwYJtbV3LBhS2583TjacjNpmZ7YCLHUdxEszjGbc8lKe02/ByNFoWuge aubO2n2FFqN5EiYgggKQN4erLOwd9ntkBB60c= MIME-Version: 1.0 Received: by 10.216.46.203 with SMTP id r53mr554185web.187.1248340298689; Thu, 23 Jul 2009 02:11:38 -0700 (PDT) Date: Thu, 23 Jul 2009 11:11:38 +0200 Message-ID: <98de397f0907230211kb0029cbi50d7c4d7ccdb35c0@mail.gmail.com> From: mediaslut von abfab To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit 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:11:40 -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 the newest 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: cd /usr/ports/ports-mgmt/portdowngrade make 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) 3 2009/02/24 04:01:48 1.2.35 Upgrade to 1.2.35 Enter 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: portsdb -Uu # (that one takes very long!) portupgrade -f png Now Reinstall everything that depends on libpng: portupgrade -fr png After everything is reinstalled, restart Apache apachectl restart done! :o)