pajoye Thu, 02 Dec 2010 23:23:14 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=305923
Log: - Fix #29085, bad default include_path on Windows Bug: http://bugs.php.net/29085 (Closed) bad default include_path on Windows Changed paths: U php/php-src/branches/PHP_5_3/win32/build/config.w32 U php/php-src/trunk/win32/build/config.w32 Modified: php/php-src/branches/PHP_5_3/win32/build/config.w32 =================================================================== --- php/php-src/branches/PHP_5_3/win32/build/config.w32 2010-12-02 23:12:07 UTC (rev 305922) +++ php/php-src/branches/PHP_5_3/win32/build/config.w32 2010-12-02 23:23:14 UTC (rev 305923) @@ -104,7 +104,7 @@ // Configures the hard-coded installation dir ARG_ENABLE('prefix', 'where PHP will be installed', ''); if (PHP_PREFIX == '') { - PHP_PREFIX = "C:\\php" + PHP_VERSION; + PHP_PREFIX = "C:\\php"; if (PHP_DEBUG == "yes") PHP_PREFIX += "\\debug"; } Modified: php/php-src/trunk/win32/build/config.w32 =================================================================== --- php/php-src/trunk/win32/build/config.w32 2010-12-02 23:12:07 UTC (rev 305922) +++ php/php-src/trunk/win32/build/config.w32 2010-12-02 23:23:14 UTC (rev 305923) @@ -109,7 +109,7 @@ // Configures the hard-coded installation dir ARG_ENABLE('prefix', 'where PHP will be installed', ''); if (PHP_PREFIX == '') { - PHP_PREFIX = "C:\\php" + PHP_VERSION; + PHP_PREFIX = "C:\\php"; if (PHP_DEBUG == "yes") PHP_PREFIX += "\\debug"; }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php