php-5.4: Do not build with mssql support on Darwin

This commit is contained in:
John Wiegley 2014-06-21 16:29:28 -07:00
parent b24da6b15d
commit 1228caae9e

View file

@ -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 = ''