php-5.4: Do not build with mssql support on Darwin
This commit is contained in:
parent
b24da6b15d
commit
1228caae9e
@ -171,7 +171,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
configureFlags = ["--enable-fpm"];
|
configureFlags = ["--enable-fpm"];
|
||||||
};
|
};
|
||||||
|
|
||||||
mssql = {
|
mssql = stdenv.lib.optional (!stdenv.isDarwin) {
|
||||||
configureFlags = ["--with-mssql=${freetds}"];
|
configureFlags = ["--with-mssql=${freetds}"];
|
||||||
buildInputs = [freetds];
|
buildInputs = [freetds];
|
||||||
};
|
};
|
||||||
@ -218,7 +218,7 @@ composableDerivation.composableDerivation {} ( fixed : let inherit (fixed.fixed)
|
|||||||
zipSupport = config.php.zip or true;
|
zipSupport = config.php.zip or true;
|
||||||
ftpSupport = config.php.ftp or true;
|
ftpSupport = config.php.ftp or true;
|
||||||
fpmSupport = config.php.fpm or true;
|
fpmSupport = config.php.fpm or true;
|
||||||
mssqlSupport = config.php.mssql or true;
|
mssqlSupport = config.php.mssql or (!stdenv.isDarwin);
|
||||||
};
|
};
|
||||||
|
|
||||||
configurePhase = ''
|
configurePhase = ''
|
||||||
|
Loading…
x
Reference in New Issue
Block a user