derick Wed Dec 31 06:28:40 2003 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/mysql config.m4 /php-src NEWS Log: - MFH: Fixed bug #26751 (PHP can't find the MySQL socket on a case sensitive file system). Index: php-src/ext/mysql/config.m4 diff -u php-src/ext/mysql/config.m4:1.54.2.1 php-src/ext/mysql/config.m4:1.54.2.2 --- php-src/ext/mysql/config.m4:1.54.2.1 Mon Jul 14 06:43:51 2003 +++ php-src/ext/mysql/config.m4 Wed Dec 31 06:28:38 2003 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.54.2.1 2003/07/14 10:43:51 wez Exp $ +dnl $Id: config.m4,v 1.54.2.2 2003/12/31 11:28:38 derick Exp $ dnl sinclude(ext/mysql/libmysql/acinclude.m4) @@ -26,6 +26,7 @@ /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 Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.513 php-src/NEWS:1.1247.2.514 --- php-src/NEWS:1.1247.2.513 Sat Dec 27 17:20:55 2003 +++ php-src/NEWS Wed Dec 31 06:28:39 2003 @@ -10,6 +10,8 @@ - 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)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php