]> granicus.if.org Git - php/commitdiff
refine config.m4 to use the newly found zip headers
authorGreg Beaver <cellog@php.net>
Thu, 17 Jan 2008 04:04:30 +0000 (04:04 +0000)
committerGreg Beaver <cellog@php.net>
Thu, 17 Jan 2008 04:04:30 +0000 (04:04 +0000)
ext/phar/config.m4

index 79286b5de9ee033eade372122a240d78cd48f936..4aac00d4979a7c4359ec52cffbd7bb74630fd1b5 100644 (file)
@@ -10,20 +10,23 @@ if test "$PHP_PHAR" != "no"; then
       zip_inc_path=$abs_srcdir/ext
       AC_DEFINE(HAVE_PHAR_ZIP,1,[ ])
       AC_MSG_RESULT($zip_inc_path)
+      PHP_NEW_EXTENSION(phar, tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared,,-I$zip_inc_path $PHAR_DEFS)
     elif test -f $abs_srcdir/ext/zip/lib/zip.h; then
       zip_inc_path=$abs_srcdir/ext
       AC_DEFINE(HAVE_PHAR_ZIP,1,[ ])
       AC_MSG_RESULT($zip_inc_path)
+      PHP_NEW_EXTENSION(phar, tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared,,-I$zip_inc_path $PHAR_DEFS)
     elif test -f $prefix/include/php/ext/zip/lib/zip.h; then
       zip_inc_path=$prefix/include/php/ext
       AC_DEFINE(HAVE_PHAR_ZIP,1,[ ])
       AC_MSG_RESULT($zip_inc_path)
+      PHP_NEW_EXTENSION(phar, tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared,,-I$zip_inc_path $PHAR_DEFS)
     else
       zip_inc_path=/dev/null
       AC_DEFINE(HAVE_PHAR_ZIP,0,[ ])
       AC_MSG_RESULT([not found, disabling ZIP-based phar support])
+      PHP_NEW_EXTENSION(phar, tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared)
     fi
-  PHP_NEW_EXTENSION(phar, tar.c zip.c stream.c func_interceptors.c dirstream.c phar.c phar_object.c phar_path_check.c, $ext_shared)
   PHP_ADD_BUILD_DIR($ext_builddir/lib, 1)
   PHP_SUBST(PHAR_SHARED_LIBADD)
   PHP_ADD_EXTENSION_DEP(phar, zip, true)