make ZTS build optional (still enabled)
This commit is contained in:
parent
233dfde8e5
commit
2e9cbf7f5d
@ -5,8 +5,4 @@
|
|||||||
<IfModule prefork.c>
|
<IfModule prefork.c>
|
||||||
LoadModule php5_module modules/libphp5.so
|
LoadModule php5_module modules/libphp5.so
|
||||||
</IfModule>
|
</IfModule>
|
||||||
<IfModule !prefork.c>
|
|
||||||
LoadModule php5_module modules/libphp5-zts.so
|
|
||||||
</IfModule>
|
|
||||||
|
|
||||||
|
|
||||||
|
60
php.spec
60
php.spec
@ -25,6 +25,9 @@
|
|||||||
# Build mysql/mysqli/pdo extensions using libmysqlclient or only mysqlnd
|
# Build mysql/mysqli/pdo extensions using libmysqlclient or only mysqlnd
|
||||||
%global with_libmysql 0
|
%global with_libmysql 0
|
||||||
|
|
||||||
|
# Build ZTS extension or only NTS
|
||||||
|
%global with_zts 1
|
||||||
|
|
||||||
%if 0%{?__isa:1}
|
%if 0%{?__isa:1}
|
||||||
%global isasuffix -%{__isa}
|
%global isasuffix -%{__isa}
|
||||||
%else
|
%else
|
||||||
@ -61,7 +64,7 @@
|
|||||||
Summary: PHP scripting language for creating dynamic web sites
|
Summary: PHP scripting language for creating dynamic web sites
|
||||||
Name: php
|
Name: php
|
||||||
Version: 5.4.12
|
Version: 5.4.12
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
# All files licensed under PHP version 3.01, except
|
# All files licensed under PHP version 3.01, except
|
||||||
# Zend is licensed under Zend
|
# Zend is licensed under Zend
|
||||||
# TSRM is licensed under BSD
|
# TSRM is licensed under BSD
|
||||||
@ -79,6 +82,7 @@ Source6: php-fpm.service
|
|||||||
Source7: php-fpm.logrotate
|
Source7: php-fpm.logrotate
|
||||||
Source8: php-fpm.sysconfig
|
Source8: php-fpm.sysconfig
|
||||||
Source9: php.modconf
|
Source9: php.modconf
|
||||||
|
Source10: php.ztsmodconf
|
||||||
|
|
||||||
# Build fixes
|
# Build fixes
|
||||||
Patch5: php-5.2.0-includedir.patch
|
Patch5: php-5.2.0-includedir.patch
|
||||||
@ -126,9 +130,12 @@ BuildRequires: libtool-ltdl-devel
|
|||||||
BuildRequires: libzip-devel >= 0.10
|
BuildRequires: libzip-devel >= 0.10
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
Obsoletes: php-dbg, php3, phpfi, stronghold-php, php-zts < 5.3.7
|
Obsoletes: php-dbg, php3, phpfi, stronghold-php
|
||||||
|
%if %{with_zts}
|
||||||
|
Obsoletes: php-zts < 5.3.7
|
||||||
Provides: php-zts = %{version}-%{release}
|
Provides: php-zts = %{version}-%{release}
|
||||||
Provides: php-zts%{?_isa} = %{version}-%{release}
|
Provides: php-zts%{?_isa} = %{version}-%{release}
|
||||||
|
%endif
|
||||||
|
|
||||||
Requires: httpd-mmn = %{_httpd_mmn}
|
Requires: httpd-mmn = %{_httpd_mmn}
|
||||||
Provides: mod_php = %{version}-%{release}
|
Provides: mod_php = %{version}-%{release}
|
||||||
@ -263,8 +270,10 @@ Summary: Files needed for building PHP extensions
|
|||||||
Requires: php-cli%{?_isa} = %{version}-%{release}, autoconf, automake
|
Requires: php-cli%{?_isa} = %{version}-%{release}, autoconf, automake
|
||||||
Requires: pcre-devel%{?_isa}
|
Requires: pcre-devel%{?_isa}
|
||||||
Obsoletes: php-pecl-pdo-devel
|
Obsoletes: php-pecl-pdo-devel
|
||||||
|
%if %{with_zts}
|
||||||
Provides: php-zts-devel = %{version}-%{release}
|
Provides: php-zts-devel = %{version}-%{release}
|
||||||
Provides: php-zts-devel%{?_isa} = %{version}-%{release}
|
Provides: php-zts-devel%{?_isa} = %{version}-%{release}
|
||||||
|
%endif
|
||||||
|
|
||||||
%description devel
|
%description devel
|
||||||
The php-devel package contains the files needed for building PHP
|
The php-devel package contains the files needed for building PHP
|
||||||
@ -705,7 +714,10 @@ cp ext/phar/LICENSE phar_LICENSE
|
|||||||
cp ext/bcmath/libbcmath/COPYING.LIB libbcmath_COPYING
|
cp ext/bcmath/libbcmath/COPYING.LIB libbcmath_COPYING
|
||||||
|
|
||||||
# Multiple builds for multiple SAPIs
|
# Multiple builds for multiple SAPIs
|
||||||
mkdir build-cgi build-apache build-embedded build-zts build-ztscli \
|
mkdir build-cgi build-apache build-embedded \
|
||||||
|
%if %{with_zts}
|
||||||
|
build-zts build-ztscli \
|
||||||
|
%endif
|
||||||
%if %{with_fpm}
|
%if %{with_fpm}
|
||||||
build-fpm
|
build-fpm
|
||||||
%endif
|
%endif
|
||||||
@ -974,6 +986,7 @@ build --enable-embed \
|
|||||||
${without_shared}
|
${without_shared}
|
||||||
popd
|
popd
|
||||||
|
|
||||||
|
%if %{with_zts}
|
||||||
# Build a special thread-safe (mainly for modules)
|
# Build a special thread-safe (mainly for modules)
|
||||||
pushd build-ztscli
|
pushd build-ztscli
|
||||||
|
|
||||||
@ -1062,6 +1075,8 @@ popd
|
|||||||
|
|
||||||
### NOTE!!! EXTENSION_DIR was changed for the -zts build, so it must remain
|
### NOTE!!! EXTENSION_DIR was changed for the -zts build, so it must remain
|
||||||
### the last SAPI to be built.
|
### the last SAPI to be built.
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if %runselftest
|
%if %runselftest
|
||||||
@ -1084,6 +1099,7 @@ unset NO_INTERACTION REPORT_EXIT_STATUS MALLOC_CHECK_
|
|||||||
%endif
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
%if %{with_zts}
|
||||||
# Install the extensions for the ZTS version
|
# Install the extensions for the ZTS version
|
||||||
make -C build-ztscli install \
|
make -C build-ztscli install \
|
||||||
INSTALL_ROOT=$RPM_BUILD_ROOT
|
INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||||
@ -1106,6 +1122,7 @@ make -C build-zts install-modules \
|
|||||||
mv $RPM_BUILD_ROOT%{_bindir}/php $RPM_BUILD_ROOT%{_bindir}/zts-php
|
mv $RPM_BUILD_ROOT%{_bindir}/php $RPM_BUILD_ROOT%{_bindir}/zts-php
|
||||||
mv $RPM_BUILD_ROOT%{_bindir}/phpize $RPM_BUILD_ROOT%{_bindir}/zts-phpize
|
mv $RPM_BUILD_ROOT%{_bindir}/phpize $RPM_BUILD_ROOT%{_bindir}/zts-phpize
|
||||||
mv $RPM_BUILD_ROOT%{_bindir}/php-config $RPM_BUILD_ROOT%{_bindir}/zts-php-config
|
mv $RPM_BUILD_ROOT%{_bindir}/php-config $RPM_BUILD_ROOT%{_bindir}/zts-php-config
|
||||||
|
%endif
|
||||||
|
|
||||||
# Install the version for embedded script language in applications + php_embed.h
|
# Install the version for embedded script language in applications + php_embed.h
|
||||||
make -C build-embedded install-sapi install-headers \
|
make -C build-embedded install-sapi install-headers \
|
||||||
@ -1148,22 +1165,33 @@ install -m 755 -d $RPM_BUILD_ROOT%{_datadir}/php
|
|||||||
install -m 755 -d $RPM_BUILD_ROOT%{_httpd_moddir}
|
install -m 755 -d $RPM_BUILD_ROOT%{_httpd_moddir}
|
||||||
install -m 755 build-apache/libs/libphp5.so $RPM_BUILD_ROOT%{_httpd_moddir}
|
install -m 755 build-apache/libs/libphp5.so $RPM_BUILD_ROOT%{_httpd_moddir}
|
||||||
|
|
||||||
|
%if %{with_zts}
|
||||||
# install the ZTS DSO
|
# install the ZTS DSO
|
||||||
install -m 755 build-zts/libs/libphp5.so $RPM_BUILD_ROOT%{_httpd_moddir}/libphp5-zts.so
|
install -m 755 build-zts/libs/libphp5.so $RPM_BUILD_ROOT%{_httpd_moddir}/libphp5-zts.so
|
||||||
|
%endif
|
||||||
|
|
||||||
# Apache config fragment
|
# Apache config fragment
|
||||||
%if "%{_httpd_modconfdir}" == "%{_httpd_confdir}"
|
%if "%{_httpd_modconfdir}" == "%{_httpd_confdir}"
|
||||||
# Single config file with httpd < 2.4 (fedora <= 17)
|
# Single config file with httpd < 2.4 (fedora <= 17)
|
||||||
install -D -m 644 %{SOURCE9} $RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
install -D -m 644 %{SOURCE9} $RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
||||||
|
%if %{with_zts}
|
||||||
|
cat %{SOURCE10} >>$RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
||||||
|
%endif
|
||||||
cat %{SOURCE1} >>$RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
cat %{SOURCE1} >>$RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
||||||
%else
|
%else
|
||||||
# Dual config file with httpd >= 2.4 (fedora >= 18)
|
# Dual config file with httpd >= 2.4 (fedora >= 18)
|
||||||
install -D -m 644 %{SOURCE9} $RPM_BUILD_ROOT%{_httpd_modconfdir}/10-php.conf
|
install -D -m 644 %{SOURCE9} $RPM_BUILD_ROOT%{_httpd_modconfdir}/10-php.conf
|
||||||
|
%if %{with_zts}
|
||||||
|
cat %{SOURCE10} >>$RPM_BUILD_ROOT%{_httpd_modconfdir}/10-php.conf
|
||||||
|
%endif
|
||||||
|
|
||||||
install -D -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
install -D -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_httpd_confdir}/php.conf
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/php.d
|
install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/php.d
|
||||||
|
%if %{with_zts}
|
||||||
install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d
|
install -m 755 -d $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d
|
||||||
|
%endif
|
||||||
install -m 755 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php
|
install -m 755 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php
|
||||||
install -m 700 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php/session
|
install -m 700 -d $RPM_BUILD_ROOT%{_localstatedir}/lib/php/session
|
||||||
|
|
||||||
@ -1210,15 +1238,19 @@ for mod in pgsql odbc ldap snmp xmlrpc imap \
|
|||||||
; Enable ${mod} extension module
|
; Enable ${mod} extension module
|
||||||
extension=${mod}.so
|
extension=${mod}.so
|
||||||
EOF
|
EOF
|
||||||
|
%if %{with_zts}
|
||||||
cat > $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/${mod}.ini <<EOF
|
cat > $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/${mod}.ini <<EOF
|
||||||
; Enable ${mod} extension module
|
; Enable ${mod} extension module
|
||||||
extension=${mod}.so
|
extension=${mod}.so
|
||||||
EOF
|
EOF
|
||||||
|
%endif
|
||||||
cat > files.${mod} <<EOF
|
cat > files.${mod} <<EOF
|
||||||
%attr(755,root,root) %{_libdir}/php/modules/${mod}.so
|
%attr(755,root,root) %{_libdir}/php/modules/${mod}.so
|
||||||
%attr(755,root,root) %{_libdir}/php-zts/modules/${mod}.so
|
|
||||||
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/php.d/${mod}.ini
|
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/php.d/${mod}.ini
|
||||||
|
%if %{with_zts}
|
||||||
|
%attr(755,root,root) %{_libdir}/php-zts/modules/${mod}.so
|
||||||
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/php-zts.d/${mod}.ini
|
%config(noreplace) %attr(644,root,root) %{_sysconfdir}/php-zts.d/${mod}.ini
|
||||||
|
%endif
|
||||||
EOF
|
EOF
|
||||||
done
|
done
|
||||||
|
|
||||||
@ -1263,6 +1295,9 @@ sed -e "s/@PHP_APIVER@/%{apiver}%{isasuffix}/" \
|
|||||||
-e "s/@PHP_ZENDVER@/%{zendver}%{isasuffix}/" \
|
-e "s/@PHP_ZENDVER@/%{zendver}%{isasuffix}/" \
|
||||||
-e "s/@PHP_PDOVER@/%{pdover}%{isasuffix}/" \
|
-e "s/@PHP_PDOVER@/%{pdover}%{isasuffix}/" \
|
||||||
-e "s/@PHP_VERSION@/%{version}/" \
|
-e "s/@PHP_VERSION@/%{version}/" \
|
||||||
|
%if ! %{with_zts}
|
||||||
|
-e "/zts/d" \
|
||||||
|
%endif
|
||||||
< %{SOURCE3} > macros.php
|
< %{SOURCE3} > macros.php
|
||||||
install -m 644 -c macros.php \
|
install -m 644 -c macros.php \
|
||||||
$RPM_BUILD_ROOT%{_sysconfdir}/rpm/macros.php
|
$RPM_BUILD_ROOT%{_sysconfdir}/rpm/macros.php
|
||||||
@ -1341,7 +1376,9 @@ fi
|
|||||||
|
|
||||||
%files
|
%files
|
||||||
%{_httpd_moddir}/libphp5.so
|
%{_httpd_moddir}/libphp5.so
|
||||||
|
%if %{with_zts}
|
||||||
%{_httpd_moddir}/libphp5-zts.so
|
%{_httpd_moddir}/libphp5-zts.so
|
||||||
|
%endif
|
||||||
%attr(0770,root,apache) %dir %{_localstatedir}/lib/php/session
|
%attr(0770,root,apache) %dir %{_localstatedir}/lib/php/session
|
||||||
%config(noreplace) %{_httpd_confdir}/php.conf
|
%config(noreplace) %{_httpd_confdir}/php.conf
|
||||||
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
|
%if "%{_httpd_modconfdir}" != "%{_httpd_confdir}"
|
||||||
@ -1357,11 +1394,13 @@ fi
|
|||||||
%doc php.ini-*
|
%doc php.ini-*
|
||||||
%config(noreplace) %{_sysconfdir}/php.ini
|
%config(noreplace) %{_sysconfdir}/php.ini
|
||||||
%dir %{_sysconfdir}/php.d
|
%dir %{_sysconfdir}/php.d
|
||||||
%dir %{_sysconfdir}/php-zts.d
|
|
||||||
%dir %{_libdir}/php
|
%dir %{_libdir}/php
|
||||||
%dir %{_libdir}/php/modules
|
%dir %{_libdir}/php/modules
|
||||||
|
%if %{with_zts}
|
||||||
|
%dir %{_sysconfdir}/php-zts.d
|
||||||
%dir %{_libdir}/php-zts
|
%dir %{_libdir}/php-zts
|
||||||
%dir %{_libdir}/php-zts/modules
|
%dir %{_libdir}/php-zts/modules
|
||||||
|
%endif
|
||||||
%dir %{_localstatedir}/lib/php
|
%dir %{_localstatedir}/lib/php
|
||||||
%dir %{_datadir}/php
|
%dir %{_datadir}/php
|
||||||
|
|
||||||
@ -1397,14 +1436,16 @@ fi
|
|||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_bindir}/php-config
|
%{_bindir}/php-config
|
||||||
|
%{_includedir}/php
|
||||||
|
%{_libdir}/php/build
|
||||||
|
%if %{with_zts}
|
||||||
%{_bindir}/zts-php-config
|
%{_bindir}/zts-php-config
|
||||||
|
%{_includedir}/php-zts
|
||||||
%{_bindir}/zts-phpize
|
%{_bindir}/zts-phpize
|
||||||
# usefull only to test other module during build
|
# usefull only to test other module during build
|
||||||
%{_bindir}/zts-php
|
%{_bindir}/zts-php
|
||||||
%{_includedir}/php
|
|
||||||
%{_includedir}/php-zts
|
|
||||||
%{_libdir}/php/build
|
|
||||||
%{_libdir}/php-zts/build
|
%{_libdir}/php-zts/build
|
||||||
|
%endif
|
||||||
%{_mandir}/man1/php-config.1*
|
%{_mandir}/man1/php-config.1*
|
||||||
%config %{_sysconfdir}/rpm/macros.php
|
%config %{_sysconfdir}/rpm/macros.php
|
||||||
|
|
||||||
@ -1447,6 +1488,9 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu Feb 21 2013 Remi Collet <rcollet@redhat.com> 5.4.12-3
|
||||||
|
- make ZTS build optional (still enabled)
|
||||||
|
|
||||||
* Wed Feb 20 2013 Remi Collet <rcollet@redhat.com> 5.4.12-2
|
* Wed Feb 20 2013 Remi Collet <rcollet@redhat.com> 5.4.12-2
|
||||||
- make php-mysql package optional and disabled
|
- make php-mysql package optional and disabled
|
||||||
|
|
||||||
|
4
php.ztsmodconf
Normal file
4
php.ztsmodconf
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
<IfModule !prefork.c>
|
||||||
|
LoadModule php5_module modules/libphp5-zts.so
|
||||||
|
</IfModule>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user