mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
php: enabling mbstring support by default
svn path=/nixpkgs/trunk/; revision=13704
This commit is contained in:
parent
7cd7c4cffb
commit
692d493f4e
1 changed files with 5 additions and 0 deletions
|
@ -83,6 +83,10 @@ composableDerivation {
|
|||
buildInputs = ["openssl"];
|
||||
};
|
||||
|
||||
mbstring = {
|
||||
configureFlags = ["--enable-mbstring"];
|
||||
};
|
||||
|
||||
/*
|
||||
Building xdebug withing php to be able to add the parameters to the ini file.. Ther should be a better way
|
||||
meta = {
|
||||
|
@ -115,6 +119,7 @@ composableDerivation {
|
|||
zlibSupport = true;
|
||||
opnesslSupport = true;
|
||||
xdebugSupport = true;
|
||||
mbstringSupport = true;
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
|
|
Loading…
Reference in a new issue