mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
php-5.4: Do not build with mssql support on Darwin
This commit is contained in:
parent
b24da6b15d
commit
1228caae9e
1 changed files with 2 additions and 2 deletions
|
@ -171,7 +171,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||
configureFlags = ["--enable-fpm"];
|
||||
};
|
||||
|
||||
mssql = {
|
||||
mssql = stdenv.lib.optional (!stdenv.isDarwin) {
|
||||
configureFlags = ["--with-mssql=${freetds}"];
|
||||
buildInputs = [freetds];
|
||||
};
|
||||
|
@ -218,7 +218,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||
zipSupport = config.php.zip or true;
|
||||
ftpSupport = config.php.ftp or true;
|
||||
fpmSupport = config.php.fpm or true;
|
||||
mssqlSupport = config.php.mssql or true;
|
||||
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
||||
};
|
||||
|
||||
configurePhase = ''
|
||||
|
|
Loading…
Reference in a new issue