]> granicus.if.org Git - php/commitdiff
re-enable ext/phar on big-endian systems, fixes verified as workign
authorGreg Beaver <cellog@php.net>
Mon, 16 Feb 2009 16:41:40 +0000 (16:41 +0000)
committerGreg Beaver <cellog@php.net>
Mon, 16 Feb 2009 16:41:40 +0000 (16:41 +0000)
ext/phar/config.m4

index 80a552ccea8a6aeab496bf67cc6f55e65abe17ab..2ac7f3dd81324bdac1fd5710fee22861419797e6 100644 (file)
@@ -5,11 +5,6 @@ PHP_ARG_ENABLE(phar, for phar archive support,
 [  --disable-phar          Disable phar support], yes)
 
 if test "$PHP_PHAR" != "no"; then
-  PHP_C_BIGENDIAN
-  if test $ac_cv_c_bigendian_php = yes; then
-    AC_MSG_WARN([Disabling Phar due to crash bugs on big endian systems])
-    PHP_PHAR=no
-  else
   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)
   AC_MSG_CHECKING([for phar openssl support])
   if test "$PHP_HASH_SHARED" != "yes"; then
@@ -32,5 +27,4 @@ if test "$PHP_PHAR" != "no"; then
   PHP_ADD_EXTENSION_DEP(phar, hash, true)
   PHP_ADD_EXTENSION_DEP(phar, spl, true)
   PHP_ADD_MAKEFILE_FRAGMENT
-  fi
 fi