mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
This syncs all help texts of extension preprocessor macros to the same style "Define to 1 if the PHP extension '<ext>' is available.". [skip ci]
140 lines
3.8 KiB
Plaintext
140 lines
3.8 KiB
Plaintext
PHP_ARG_WITH([iconv],
|
|
[for iconv support],
|
|
[AS_HELP_STRING([[--without-iconv[=DIR]]],
|
|
[Exclude iconv support])],
|
|
[yes])
|
|
|
|
if test "$PHP_ICONV" != "no"; then
|
|
PHP_SETUP_ICONV([ICONV_SHARED_LIBADD],,
|
|
[AC_MSG_ERROR([The iconv not found. Please, check config.log for details.])])
|
|
|
|
save_LDFLAGS="$LDFLAGS"
|
|
save_CFLAGS="$CFLAGS"
|
|
LDFLAGS="$ICONV_SHARED_LIBADD $LDFLAGS"
|
|
CFLAGS="$INCLUDES $CFLAGS"
|
|
|
|
AC_MSG_CHECKING([if iconv is glibc's])
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <gnu/libc-version.h>]], [[gnu_get_libc_version();]])],[
|
|
AC_MSG_RESULT([yes])
|
|
iconv_impl_name="glibc"
|
|
],[
|
|
AC_MSG_RESULT([no])
|
|
])
|
|
|
|
if test -z "$iconv_impl_name"; then
|
|
AC_MSG_CHECKING([if using GNU libiconv])
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <iconv.h>], [(void) _libiconv_version])],[
|
|
AC_MSG_RESULT([yes])
|
|
iconv_impl_name="gnu_libiconv"
|
|
],[
|
|
AC_MSG_RESULT([no])
|
|
])
|
|
fi
|
|
|
|
if test -z "$iconv_impl_name"; then
|
|
AC_MSG_CHECKING([if iconv is Konstantin Chuguev's])
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <iconv.h>]], [[iconv_ccs_init(NULL, NULL);]])],[
|
|
AC_MSG_RESULT([yes])
|
|
iconv_impl_name="bsd"
|
|
],[
|
|
AC_MSG_RESULT([no])
|
|
])
|
|
fi
|
|
|
|
if test -z "$iconv_impl_name"; then
|
|
AC_MSG_CHECKING([if using IBM iconv])
|
|
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <iconv.h>]], [[cstoccsid("");]])],[
|
|
AC_MSG_RESULT([yes])
|
|
iconv_impl_name="ibm"
|
|
],[
|
|
AC_MSG_RESULT([no])
|
|
])
|
|
fi
|
|
|
|
AH_TEMPLATE([PHP_ICONV_IMPL], [The iconv implementation.])
|
|
|
|
AS_CASE([$iconv_impl_name],
|
|
[gnu_libiconv], [
|
|
AC_DEFINE([PHP_ICONV_IMPL], ["libiconv"])
|
|
AC_DEFINE([HAVE_LIBICONV], [1])
|
|
],
|
|
[bsd], [AC_DEFINE([PHP_ICONV_IMPL], ["BSD iconv"])],
|
|
[glibc], [
|
|
AC_DEFINE([HAVE_GLIBC_ICONV], [1],
|
|
[Define to 1 if iconv implementation is glibc.])
|
|
AC_DEFINE([PHP_ICONV_IMPL], ["glibc"])
|
|
],
|
|
[ibm], [
|
|
AC_DEFINE([HAVE_IBM_ICONV], [1],
|
|
[Define to 1 if iconv implementation is IBM.])
|
|
AC_DEFINE([PHP_ICONV_IMPL], ["IBM iconv"])
|
|
])
|
|
|
|
AC_CACHE_CHECK([if iconv supports errno], [php_cv_iconv_errno],
|
|
[AC_RUN_IFELSE([AC_LANG_SOURCE([
|
|
#include <iconv.h>
|
|
#include <errno.h>
|
|
|
|
int main(void) {
|
|
iconv_t cd;
|
|
cd = iconv_open( "*blahblah*", "*blahblahblah*" );
|
|
if (cd == (iconv_t)(-1)) {
|
|
if (errno == EINVAL) {
|
|
return 0;
|
|
} else {
|
|
return 1;
|
|
}
|
|
}
|
|
iconv_close( cd );
|
|
return 2;
|
|
}
|
|
])],
|
|
[php_cv_iconv_errno=yes],
|
|
[php_cv_iconv_errno=no],
|
|
[php_cv_iconv_errno=yes])])
|
|
AS_VAR_IF([php_cv_iconv_errno], [yes],,
|
|
[AC_MSG_ERROR([iconv does not support errno])])
|
|
|
|
AC_CACHE_CHECK([if iconv supports //IGNORE], [php_cv_iconv_ignore],
|
|
[AC_RUN_IFELSE([AC_LANG_SOURCE([[
|
|
#include <iconv.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
iconv_t cd = iconv_open( "UTF-8//IGNORE", "UTF-8" );
|
|
if(cd == (iconv_t)-1) {
|
|
return 1;
|
|
}
|
|
char *in_p = "\xC3\xC3\xC3\xB8";
|
|
size_t in_left = 4, out_left = 4096;
|
|
char *out = malloc(out_left);
|
|
char *out_p = out;
|
|
size_t result = iconv(cd, (char **) &in_p, &in_left, (char **) &out_p, &out_left);
|
|
if(result == (size_t)-1) {
|
|
return 1;
|
|
}
|
|
return 0;
|
|
}
|
|
]])],
|
|
[php_cv_iconv_ignore=yes],
|
|
[php_cv_iconv_ignore=no],
|
|
[php_cv_iconv_ignore=no])])
|
|
|
|
AS_VAR_IF([php_cv_iconv_ignore], [no],
|
|
[AC_DEFINE([ICONV_BROKEN_IGNORE], [1],
|
|
[Define to 1 if iconv has broken IGNORE.])])
|
|
|
|
LDFLAGS="$save_LDFLAGS"
|
|
CFLAGS="$save_CFLAGS"
|
|
|
|
AC_DEFINE([HAVE_ICONV], [1],
|
|
[Define to 1 if the PHP extension 'iconv' is available.])
|
|
|
|
PHP_NEW_EXTENSION([iconv],
|
|
[iconv.c],
|
|
[$ext_shared],,
|
|
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
|
|
PHP_SUBST([ICONV_SHARED_LIBADD])
|
|
PHP_INSTALL_HEADERS([ext/iconv], [php_iconv.h])
|
|
fi
|