php: disable mhash
Per https://www.php.net/manual/en/intro.mhash.php, mhash extension is obsolete, so disabling it here. (Also it doesn't cross-compile) **Warning**: This could be a breaking change for some packages that are very old and rely on this extension, maintainer discretion is advised.
This commit is contained in:
parent
855be67358
commit
ba83c08610
@ -17,7 +17,7 @@ let
|
|||||||
, withSystemd ? config.php.systemd or stdenv.isLinux
|
, withSystemd ? config.php.systemd or stdenv.isLinux
|
||||||
, imapSupport ? config.php.imap or (!stdenv.isDarwin)
|
, imapSupport ? config.php.imap or (!stdenv.isDarwin)
|
||||||
, ldapSupport ? config.php.ldap or true
|
, ldapSupport ? config.php.ldap or true
|
||||||
, mhashSupport ? config.php.mhash or true
|
, mhashSupport ? config.php.mhash or false
|
||||||
, mysqlndSupport ? config.php.mysqlnd or true
|
, mysqlndSupport ? config.php.mysqlnd or true
|
||||||
, mysqliSupport ? config.php.mysqli or true
|
, mysqliSupport ? config.php.mysqli or true
|
||||||
, pdo_mysqlSupport ? config.php.pdo_mysql or true
|
, pdo_mysqlSupport ? config.php.pdo_mysql or true
|
||||||
|
Loading…
Reference in New Issue
Block a user