1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 18:23:26 +02:00
Files
archived-php-src/ext/unicode/config.w32
T
Wez Furlong 57ae2f99b7 Fixup config.w32.
Implement unicode_decode() and unicode_encode(), as described in README.UNICODE.

Still need to decide how to handle errors here, since there is no error return,
and a conversion error is not necessarily fatal.
2005-08-13 13:43:31 +00:00

9 lines
227 B
JavaScript

// $Id$
// vim:ft=javascript
ARG_ENABLE('unicode' , 'ICU API extension', 'yes');
if (PHP_UNICODE != 'no') {
EXTENSION("unicode", "unicode.c unicode_filter.c locale.c");
AC_DEFINE('HAVE_UNICODE', 1, 'ICU API extension');
}