3
0
Fork 0
forked from mirrors/nixpkgs

php-5.4: Don't build gd as a dynamically-loaded extension

We didn't do this in PHP 5.3 either, so it causes regressions if
php.ini isn't set up to load the gd extension.
This commit is contained in:
Eelco Dolstra 2013-05-06 13:56:40 +02:00
parent 592ec52e94
commit 7480746a12

View file

@ -90,7 +90,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
gd = {
# FIXME: Our own gd package doesn't work, see https://bugs.php.net/bug.php?id=60108.
configureFlags = ["--with-gd=shared --with-freetype-dir=${freetype} --with-png-dir=${libpng}"];
configureFlags = ["--with-gd --with-freetype-dir=${freetype} --with-png-dir=${libpng}"];
buildInputs = [ libpng libjpeg freetype ];
};