]> granicus.if.org Git - php/commitdiff
- Some minor fixes
authorfoobar <sniper@php.net>
Fri, 12 Aug 2005 09:10:04 +0000 (09:10 +0000)
committerfoobar <sniper@php.net>
Fri, 12 Aug 2005 09:10:04 +0000 (09:10 +0000)
ext/unicode/config.m4
ext/unicode/config.w32
ext/unicode/locale.c
ext/unicode/php_unicode.h
ext/unicode/unicode.c
ext/unicode/unicode_filter.c

index 139963b91a0c436c981401693d7581bcdb4e19de..68d28870dc2a3573fdc89a7ae11a6082dabf6de4 100644 (file)
@@ -1,5 +1,5 @@
 dnl
-dnl $ Id: $
+dnl $Id$
 dnl
 
 PHP_ARG_ENABLE(unicode, whether to enable unicode functions,
index 915b84ba1ffdadc0169d8eda3b965b7c288cda8c..bc09b2610261847c3e11fe6d569e664b418a61f9 100644 (file)
@@ -1,9 +1,9 @@
-// $ Id: $
+// $Id$
 // vim:ft=javascript
 
 ARG_ENABLE('unicode' , 'ICU API extension', 'no');
 if (PHP_UNICODE) {
 
-  EXTENSION("unicode", "unicode.c");
+  EXTENSION("unicode", "unicode.c unicode_filter.c locale.c");
   AC_DEFINE('HAVE_UNICODE', 1, 'ICU API extension');
 }
index ced73d0437389f68325cd7809b768df7afd19088..88335e53b26e0abf3ac1619053d617bc74df4cb9 100644 (file)
@@ -1,6 +1,6 @@
 /*
   +----------------------------------------------------------------------+
-  | PHP Version 5                                                        |
+  | PHP Version 6                                                        |
   +----------------------------------------------------------------------+
   | This source file is subject to version 3.0 of the PHP license,       |
   | that is bundled with this package in the file LICENSE, and is        |
@@ -14,7 +14,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $ Id: $ */ 
+/* $Id$ */ 
 
 #include "php_unicode.h"
 
index 40b5f3670a7cd407923184f312bcca2a3c2b778d..1bb148b2bd3b2122ee4372e9e5c156b113011a66 100644 (file)
@@ -1,4 +1,6 @@
 /*
+   +----------------------------------------------------------------------+
+   | PHP Version 6                                                        |
    +----------------------------------------------------------------------+
    | This source file is subject to version 3.0 of the PHP license,       |
    | that is bundled with this package in the file LICENSE, and is        |
@@ -12,7 +14,7 @@
    +----------------------------------------------------------------------+
 */
 
-/* $ Id: $ */ 
+/* $Id$ */ 
 
 #ifndef PHP_UNICODE_H
 #define PHP_UNICODE_H
index 77c102228d108b13eaff5c348d12ba5fad0de215..974f7135e1f42feb3ff879797161145e5770ee1f 100644 (file)
@@ -1,6 +1,6 @@
 /*
   +----------------------------------------------------------------------+
-  | PHP Version 5                                                        |
+  | PHP Version 6                                                        |
   +----------------------------------------------------------------------+
   | This source file is subject to version 3.0 of the PHP license,       |
   | that is bundled with this package in the file LICENSE, and is        |
@@ -14,7 +14,7 @@
   +----------------------------------------------------------------------+
 */
 
-/* $ Id: $ */ 
+/* $Id$ */ 
 
 #include "php_unicode.h"
 
index fc0574ddc975399cceec392420bfadbbee9da259..5c645d05dae8c46759c5d2202710581fcf298d21 100644 (file)
@@ -1,6 +1,6 @@
 /*
    +----------------------------------------------------------------------+
-   | PHP Version 5                                                        |
+   | PHP Version 6                                                        |
    +----------------------------------------------------------------------+
    | This source file is subject to version 3.0 of the PHP license,       |
    | that is bundled with this package in the file LICENSE, and is        |