pajoye                                   Sat, 24 Oct 2009 19:52:23 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=289905

Log:
- #49986, fix ICU DLLs path

Bug: http://bugs.php.net/49986 (Assigned) intl extension missing/DLLs for intl 
extension missing
      
Changed paths:
    U   php/php-src/branches/PHP_5_3/win32/build/mkdist.php
    U   php/php-src/branches/PHP_5_3_1/NEWS
    U   php/php-src/branches/PHP_5_3_1/win32/build/mkdist.php

Modified: php/php-src/branches/PHP_5_3/win32/build/mkdist.php
===================================================================
--- php/php-src/branches/PHP_5_3/win32/build/mkdist.php 2009-10-24 10:10:38 UTC 
(rev 289904)
+++ php/php-src/branches/PHP_5_3/win32/build/mkdist.php 2009-10-24 19:52:23 UTC 
(rev 289905)
@@ -315,7 +315,7 @@
 deps. For example, libenchant.dll loads libenchant_myspell.dll or
 libenchant_ispell.dll
 */
-$ICU_DLLS = $php_build_dir . '/icu*.dll';
+$ICU_DLLS = $php_build_dir . '/bin/icu*.dll';
 foreach (glob($ICU_DLLS) as $filename) {
        copy($filename, "$dist_dir/" . basename($filename));
 }

Modified: php/php-src/branches/PHP_5_3_1/NEWS
===================================================================
--- php/php-src/branches/PHP_5_3_1/NEWS 2009-10-24 10:10:38 UTC (rev 289904)
+++ php/php-src/branches/PHP_5_3_1/NEWS 2009-10-24 19:52:23 UTC (rev 289905)
@@ -1,6 +1,7 @@
 PHP                                                                        NEWS
 |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
 ?? ??? 2009, PHP 5.3.1 RC3
+- #49986 (Missing ICU DLLs on windows package). (Pierre)

 20 Oct 2009, PHP 5.3.1 RC2
 - Upgraded bundled sqlite to version 3.6.19. (Scott)

Modified: php/php-src/branches/PHP_5_3_1/win32/build/mkdist.php
===================================================================
--- php/php-src/branches/PHP_5_3_1/win32/build/mkdist.php       2009-10-24 
10:10:38 UTC (rev 289904)
+++ php/php-src/branches/PHP_5_3_1/win32/build/mkdist.php       2009-10-24 
19:52:23 UTC (rev 289905)
@@ -315,7 +315,7 @@
 deps. For example, libenchant.dll loads libenchant_myspell.dll or
 libenchant_ispell.dll
 */
-$ICU_DLLS = $php_build_dir . '/icu*.dll';
+$ICU_DLLS = $php_build_dir . '/bin/icu*.dll';
 foreach (glob($ICU_DLLS) as $filename) {
        copy($filename, "$dist_dir/" . basename($filename));
 }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to