From 3ed4aee952b7cd1e0555e1843e9405f44ec2c045 Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 12 Aug 2005 09:10:04 +0000 Subject: [PATCH] - Some minor fixes --- ext/unicode/config.m4 | 2 +- ext/unicode/config.w32 | 4 ++-- ext/unicode/locale.c | 4 ++-- ext/unicode/php_unicode.h | 4 +++- ext/unicode/unicode.c | 4 ++-- ext/unicode/unicode_filter.c | 2 +- 6 files changed, 11 insertions(+), 9 deletions(-) diff --git a/ext/unicode/config.m4 b/ext/unicode/config.m4 index 139963b91a..68d28870dc 100644 --- a/ext/unicode/config.m4 +++ b/ext/unicode/config.m4 @@ -1,5 +1,5 @@ dnl -dnl $ Id: $ +dnl $Id$ dnl PHP_ARG_ENABLE(unicode, whether to enable unicode functions, diff --git a/ext/unicode/config.w32 b/ext/unicode/config.w32 index 915b84ba1f..bc09b26102 100644 --- a/ext/unicode/config.w32 +++ b/ext/unicode/config.w32 @@ -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'); } diff --git a/ext/unicode/locale.c b/ext/unicode/locale.c index ced73d0437..88335e53b2 100644 --- a/ext/unicode/locale.c +++ b/ext/unicode/locale.c @@ -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" diff --git a/ext/unicode/php_unicode.h b/ext/unicode/php_unicode.h index 40b5f3670a..1bb148b2bd 100644 --- a/ext/unicode/php_unicode.h +++ b/ext/unicode/php_unicode.h @@ -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 diff --git a/ext/unicode/unicode.c b/ext/unicode/unicode.c index 77c102228d..974f7135e1 100644 --- a/ext/unicode/unicode.c +++ b/ext/unicode/unicode.c @@ -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" diff --git a/ext/unicode/unicode_filter.c b/ext/unicode/unicode_filter.c index fc0574ddc9..5c645d05da 100644 --- a/ext/unicode/unicode_filter.c +++ b/ext/unicode/unicode_filter.c @@ -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 | -- 2.50.1