mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-10 08:39:08 +03:00
php.extensions.pdo_mysql: Set default socket location
Set the default socket location to match the one used by the MySQL module, so PHP programs using pdo_mysql don't have to specify this themselves.
This commit is contained in:
parent
43020a8692
commit
d85bf2f5b7
@ -939,7 +939,7 @@ in
|
||||
# pdo_firebird (7.4, 7.3, 7.2)
|
||||
{ name = "pdo_mysql";
|
||||
internalDeps = with php.extensions; [ pdo mysqlnd ];
|
||||
configureFlags = [ "--with-pdo-mysql=mysqlnd" ];
|
||||
configureFlags = [ "--with-pdo-mysql=mysqlnd" "PHP_MYSQL_SOCK=/run/mysqld/mysqld.sock" ];
|
||||
doCheck = false; }
|
||||
# pdo_oci (7.4, 7.3, 7.2)
|
||||
{ name = "pdo_odbc";
|
||||
|
Loading…
Reference in New Issue
Block a user