diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2008-07-15 18:04:32 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2008-07-15 18:04:32 +0000 |
commit | 817f393a2d5238b780803fa27518bdc27f4a22f8 (patch) | |
tree | 03cb12d26d2ba3aef5408fbcabde118935ef9265 /ext | |
parent | 3df7836db9456aadcec7239864c49d7d6f8eb1d1 (diff) | |
download | php-git-817f393a2d5238b780803fa27518bdc27f4a22f8.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 4dfe60fc81..431d6d836f 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 |