diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2008-07-15 18:07:42 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2008-07-15 18:07:42 +0000 |
commit | 5b603fb1b7cf4cb91cb893241398d1e756605bc2 (patch) | |
tree | f426f30b1f37a8b9757ec344eb4f0f2e6be2920c /ext | |
parent | 2975bbb34790bacbe6a56039c273d4fd34d1efa8 (diff) | |
download | php-git-5b603fb1b7cf4cb91cb893241398d1e756605bc2.tar.gz |
* MFH: indentation fix only.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/mbstring/config.m4 | 25 |
1 files changed, 11 insertions, 14 deletions
diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index 8c9246f6d6..7712b90532 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -72,19 +72,17 @@ int foo(int x, ...) { return 0; } int main() { return foo(10, "", 3.14); } - ], [cv_php_mbstring_stdarg=yes], [cv_php_mbstring_stdarg=no], - [ - dnl cross-compile needs something here -case $host_alias in -*netware*) -cv_php_mbstring_stdarg=yes -;; -*) -cv_php_mbstring_stdarg=no -;; -esac -] -) + ], [cv_php_mbstring_stdarg=yes], [cv_php_mbstring_stdarg=no], [ + dnl cross-compile needs something here + case $host_alias in + *netware*) + cv_php_mbstring_stdarg=yes + ;; + *) + cv_php_mbstring_stdarg=no + ;; + esac + ]) ]) AC_CHECK_HEADERS([stdlib.h string.h strings.h unistd.h sys/time.h sys/times.h stdarg.h]) @@ -98,7 +96,6 @@ esac AC_DEFINE([HAVE_MBREGEX], 1, [whether to have multibyte regex support]) - if test "$PHP_MBREGEX_BACKTRACK" != "no"; then AC_DEFINE([USE_COMBINATION_EXPLOSION_CHECK],1,[whether to check multibyte regex backtrack]) fi |