derick Tue Mar 21 13:56:50 2006 UTC Modified files: /php-src/ext/unicode config.m4 Log: - Make ext/unicode an extension that is always there and can not be disabled. http://cvs.php.net/viewcvs.cgi/php-src/ext/unicode/config.m4?r1=1.4&r2=1.5&diff_format=u Index: php-src/ext/unicode/config.m4 diff -u php-src/ext/unicode/config.m4:1.4 php-src/ext/unicode/config.m4:1.5 --- php-src/ext/unicode/config.m4:1.4 Wed Feb 1 23:50:50 2006 +++ php-src/ext/unicode/config.m4 Tue Mar 21 13:56:50 2006 @@ -1,13 +1,7 @@ dnl -dnl $Id: config.m4,v 1.4 2006/02/01 23:50:50 andrei Exp $ +dnl $Id: config.m4,v 1.5 2006/03/21 13:56:50 derick Exp $ dnl -PHP_ARG_ENABLE(unicode, whether to enable unicode functions, -[ --disable-unicode Disable Unicode API support]) - -if test "$PHP_UNICODE" != "no"; then - PHP_SUBST(UNICODE_SHARED_LIBADD) - AC_DEFINE(HAVE_UNICODE, 1, [ ]) - PHP_NEW_EXTENSION(unicode, unicode.c locale.c unicode_filter.c unicode_iterators.c, $ext_shared) -fi - +PHP_SUBST(UNICODE_SHARED_LIBADD) +AC_DEFINE(HAVE_UNICODE, 1, [ ]) +PHP_NEW_EXTENSION(unicode, unicode.c locale.c unicode_filter.c unicode_iterators.c, $ext_shared)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php