From c86cf4fbeaf1572315254bc86f7098c450a7e226 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Tue, 21 Mar 2006 13:56:50 +0000 Subject: [PATCH] - Make ext/unicode an extension that is always there and can not be disabled. --- ext/unicode/config.m4 | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/ext/unicode/config.m4 b/ext/unicode/config.m4 index 68a0cddf98..ae9ed568c3 100644 --- a/ext/unicode/config.m4 +++ b/ext/unicode/config.m4 @@ -2,12 +2,6 @@ dnl dnl $Id$ 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) -- 2.50.1