Merge pull request #581 from bbenoist/phpftp
php-5.4: Reintroduce the ftpSupport build option
This commit is contained in:
commit
b41d8029c9
@ -144,6 +144,10 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
configureFlags = ["--enable-zip"];
|
configureFlags = ["--enable-zip"];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
ftp = {
|
||||||
|
configureFlags = ["--enable-ftp"];
|
||||||
|
};
|
||||||
|
|
||||||
/*
|
/*
|
||||||
php is build within this derivation in order to add the xdebug lines to the php.ini.
|
php is build within this derivation in order to add the xdebug lines to the php.ini.
|
||||||
So both Apache and command line php both use xdebug without having to configure anything.
|
So both Apache and command line php both use xdebug without having to configure anything.
|
||||||
@ -181,6 +185,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
mcryptSupport = config.php.mcrypt or false;
|
mcryptSupport = config.php.mcrypt or false;
|
||||||
bz2Support = config.php.bz2 or false;
|
bz2Support = config.php.bz2 or false;
|
||||||
zipSupport = config.php.zip or true;
|
zipSupport = config.php.zip or true;
|
||||||
|
ftpSupport = config.php.ftp or true;
|
||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user