diff options
author | Anatol Belski <ab@php.net> | 2014-10-17 16:03:40 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-10-17 16:03:40 +0200 |
commit | 7a6a3d923bfaac10a73e7ddf93eb5b7b7f2703e8 (patch) | |
tree | 9f320101e4e817c392b5d1ed3554d786a389a3f3 /ext/phar/config.m4 | |
parent | 4fce2ae2c64b61e5ef7cdbdb631b8d5691d1b31f (diff) | |
download | php-git-7a6a3d923bfaac10a73e7ddf93eb5b7b7f2703e8.tar.gz |
fix arg order, CFLAGS is the fifth arg in m4
Diffstat (limited to 'ext/phar/config.m4')
-rw-r--r-- | ext/phar/config.m4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/phar/config.m4 b/ext/phar/config.m4 index 1ba7ecdef1..8b91caaedc 100644 --- a/ext/phar/config.m4 +++ b/ext/phar/config.m4 @@ -5,7 +5,7 @@ PHP_ARG_ENABLE(phar, for phar archive support, [ --disable-phar Disable phar support], yes) if test "$PHP_PHAR" != "no"; then - PHP_NEW_EXTENSION(phar, util.c tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1) + PHP_NEW_EXTENSION(phar, util.c tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared,, -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1) AC_MSG_CHECKING([for phar openssl support]) if test "$PHP_HASH_SHARED" != "yes"; then if test "$PHP_HASH" != "no"; then |