fix phpPackages memcache,memcached,xdebug

These packages, and maybe some more include unix.h for some reason.
Creating that file makes them build, and in the case of xdebug also
appear to work.
This commit is contained in:
Emil Rangden 2015-02-05 20:22:28 +01:00
parent 36ceb01176
commit 8c125c0c74

View file

@ -20,4 +20,6 @@ stdenv.mkDerivation (args // {
makeFlags = [ "EXTENSION_DIR=$(out)/lib/php/extensions" ] ++ makeFlags;
autoreconfPhase = "phpize";
preConfigure = "touch unix.h";
})