2008-05-13 05:03:49 +08:00
|
|
|
dnl $Id$
|
|
|
|
dnl config.m4 for extension phar
|
|
|
|
|
|
|
|
PHP_ARG_ENABLE(phar, for phar archive support,
|
2008-07-14 17:02:26 +08:00
|
|
|
[ --disable-phar Disable phar support], yes)
|
2008-05-13 05:03:49 +08:00
|
|
|
|
|
|
|
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)
|
2008-06-01 12:21:26 +08:00
|
|
|
AC_MSG_CHECKING([for phar openssl support])
|
2008-10-09 08:50:47 +08:00
|
|
|
if test "$PHP_HASH_SHARED" != "yes"; then
|
2008-11-04 09:27:52 +08:00
|
|
|
if test "$PHP_HASH" != "no"; then
|
|
|
|
AC_DEFINE(PHAR_HASH_OK,1,[ ])
|
|
|
|
fi
|
2008-10-09 08:50:47 +08:00
|
|
|
else
|
|
|
|
AC_MSG_WARN([Phar: sha256/sha512 signature support disabled if ext/hash is built shared])
|
|
|
|
fi
|
2008-06-01 12:21:26 +08:00
|
|
|
if test "$PHP_OPENSSL_SHARED" = "yes"; then
|
|
|
|
AC_MSG_RESULT([no (shared openssl)])
|
|
|
|
else
|
|
|
|
if test "$PHP_OPENSSL" = "yes"; then
|
|
|
|
AC_MSG_RESULT([yes])
|
|
|
|
AC_DEFINE(PHAR_HAVE_OPENSSL,1,[ ])
|
|
|
|
else
|
|
|
|
AC_MSG_RESULT([no])
|
|
|
|
fi
|
|
|
|
fi
|
2008-11-04 09:27:52 +08:00
|
|
|
PHP_ADD_EXTENSION_DEP(phar, hash, true)
|
2008-05-13 05:03:49 +08:00
|
|
|
PHP_ADD_EXTENSION_DEP(phar, spl, true)
|
|
|
|
PHP_ADD_MAKEFILE_FRAGMENT
|
2013-07-02 16:46:50 +08:00
|
|
|
|
2013-10-17 12:23:09 +08:00
|
|
|
PHP_INSTALL_HEADERS([ext/phar], [php_phar.h])
|
|
|
|
|
2013-07-02 16:46:50 +08:00
|
|
|
PHP_OUTPUT(ext/phar/phar.1 ext/phar/phar.phar.1)
|
2008-05-13 05:03:49 +08:00
|
|
|
fi
|