From ab91ea1c41ae545dbf269bfebaee82f6a1739537 Mon Sep 17 00:00:00 2001 From: remi Date: Tue, 18 Sep 2012 14:28:42 +0200 Subject: [PATCH] fix test to enable zip extension on RHEL-7 --- php.spec | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/php.spec b/php.spec index 0764654..f862afb 100644 --- a/php.spec +++ b/php.spec @@ -33,14 +33,14 @@ # /etc/httpd/conf.d with httpd < 2.4 and defined as /etc/httpd/conf.modules.d with httpd >= 2.4 %{!?_httpd_modconfdir: %{expand: %%global _httpd_modconfdir %%{_sysconfdir}/httpd/conf.d}} -%if 0%{?fedora} >= 17 -%global with_zip 1 -%global with_libzip 1 -%global zipmod zip -%else +%if 0%{?fedora} < 17 %global with_zip 0 %global with_libzip 0 %global zipmod %nil +%else +%global with_zip 1 +%global with_libzip 1 +%global zipmod zip %endif %if 0%{?fedora} < 18 @@ -52,7 +52,7 @@ Summary: PHP scripting language for creating dynamic web sites Name: php Version: 5.4.7 -Release: 2%{?dist} +Release: 3%{?dist} License: PHP Group: Development/Languages URL: http://www.php.net/ @@ -1279,6 +1279,9 @@ fi %changelog +* Tue Sep 18 2012 Remi Collet 5.4.7-3 +- fix test to enable zip extension on RHEL-7 + * Mon Sep 17 2012 Remi Collet 5.4.7-2 - remove session.save_path from php.ini move it to apache and php-fpm configuration files