php-src/ext/unicode/config.w32
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');
}