From: Derick Rethans Date: Wed, 31 Dec 2003 11:28:39 +0000 (+0000) Subject: - MFH: Fixed bug #26751 (PHP can't find the MySQL socket on a case sensitive X-Git-Tag: php-4.3.5RC1~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=aa288c1f7a8d0af7d753c4c8cb3c76658c4f3e6d;p=php - MFH: Fixed bug #26751 (PHP can't find the MySQL socket on a case sensitive file system). --- diff --git a/NEWS b/NEWS index b2cc3fb9c2..98a86db114 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,8 @@ PHP 4 NEWS - Added a warning when creating temp stream fails with ftp_(n)list(). (Sara) - Fixed header handler in NSAPI SAPI module (header->replace was ignored, send_default_content_type now sends value from php.ini). (Uwe Schindler) +- Fixed bug #26751 (PHP can't find the MySQL socket on a case sensitive file + system). (Derick) - Fixed Bug #26703 (Certain characters inside strings incorrectly treated as keywords). (vrana [at] php [dot] net, Ilia) - Fixed bug #26667 (Added safety checks to ip2long()). (Ilia) diff --git a/ext/mysql/config.m4 b/ext/mysql/config.m4 index 95c40b8982..0bd79cc7a3 100644 --- a/ext/mysql/config.m4 +++ b/ext/mysql/config.m4 @@ -26,6 +26,7 @@ AC_DEFUN(PHP_MYSQL_SOCKET_SEARCH, [ /var/mysql/mysql.sock \ /usr/local/mysql/var/mysql.sock \ /Private/tmp/mysql.sock \ + /private/tmp/mysql.sock \ /tmp/mysql.sock \ ; do if test -r $i; then