fix when zts is disabled
This commit is contained in:
parent
a2e7781f74
commit
58a0b4cd7c
8
php.spec
8
php.spec
@ -1289,7 +1289,9 @@ for mod in pgsql odbc ldap snmp xmlrpc \
|
|||||||
# some extensions have their own config file
|
# some extensions have their own config file
|
||||||
if [ -f ${ini} ]; then
|
if [ -f ${ini} ]; then
|
||||||
cp -p ${ini} $RPM_BUILD_ROOT%{_sysconfdir}/php.d/${ini}
|
cp -p ${ini} $RPM_BUILD_ROOT%{_sysconfdir}/php.d/${ini}
|
||||||
|
%if %{with_zts}
|
||||||
cp -p ${ini} $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/${ini}
|
cp -p ${ini} $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/${ini}
|
||||||
|
%endif
|
||||||
else
|
else
|
||||||
cat > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/${ini} <<EOF
|
cat > $RPM_BUILD_ROOT%{_sysconfdir}/php.d/${ini} <<EOF
|
||||||
; Enable ${mod} extension module
|
; Enable ${mod} extension module
|
||||||
@ -1347,9 +1349,11 @@ cat files.zip >> files.common
|
|||||||
|
|
||||||
# The default Zend OPcache blacklist file
|
# The default Zend OPcache blacklist file
|
||||||
install -m 644 %{SOURCE51} $RPM_BUILD_ROOT%{_sysconfdir}/php.d/opcache-default.blacklist
|
install -m 644 %{SOURCE51} $RPM_BUILD_ROOT%{_sysconfdir}/php.d/opcache-default.blacklist
|
||||||
|
%if %{with_zts}
|
||||||
install -m 644 %{SOURCE51} $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/opcache-default.blacklist
|
install -m 644 %{SOURCE51} $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/opcache-default.blacklist
|
||||||
sed -e '/blacklist_filename/s/php.d/php-zts.d/' \
|
sed -e '/blacklist_filename/s/php.d/php-zts.d/' \
|
||||||
-i $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/10-opcache.ini
|
-i $RPM_BUILD_ROOT%{_sysconfdir}/php-zts.d/10-opcache.ini
|
||||||
|
%endif
|
||||||
|
|
||||||
# Install the macros file:
|
# Install the macros file:
|
||||||
sed -e "s/@PHP_APIVER@/%{apiver}-%{__isa_bits}/" \
|
sed -e "s/@PHP_APIVER@/%{apiver}-%{__isa_bits}/" \
|
||||||
@ -1423,6 +1427,7 @@ rm -f README.{Zeus,QNX,CVS-RULES}
|
|||||||
%{_bindir}/php
|
%{_bindir}/php
|
||||||
%if %{with_zts}
|
%if %{with_zts}
|
||||||
%{_bindir}/zts-php
|
%{_bindir}/zts-php
|
||||||
|
%{_mandir}/man1/zts-php.1*
|
||||||
%endif
|
%endif
|
||||||
%{_bindir}/php-cgi
|
%{_bindir}/php-cgi
|
||||||
%{_bindir}/phar.phar
|
%{_bindir}/phar.phar
|
||||||
@ -1430,7 +1435,6 @@ rm -f README.{Zeus,QNX,CVS-RULES}
|
|||||||
# provides phpize here (not in -devel) for pecl command
|
# provides phpize here (not in -devel) for pecl command
|
||||||
%{_bindir}/phpize
|
%{_bindir}/phpize
|
||||||
%{_mandir}/man1/php.1*
|
%{_mandir}/man1/php.1*
|
||||||
%{_mandir}/man1/zts-php.1*
|
|
||||||
%{_mandir}/man1/php-cgi.1*
|
%{_mandir}/man1/php-cgi.1*
|
||||||
%{_mandir}/man1/phar.1*
|
%{_mandir}/man1/phar.1*
|
||||||
%{_mandir}/man1/phar.phar.1*
|
%{_mandir}/man1/phar.phar.1*
|
||||||
@ -1531,7 +1535,9 @@ rm -f README.{Zeus,QNX,CVS-RULES}
|
|||||||
%files mysqlnd -f files.mysqlnd
|
%files mysqlnd -f files.mysqlnd
|
||||||
%files opcache -f files.opcache
|
%files opcache -f files.opcache
|
||||||
%config(noreplace) %{_sysconfdir}/php.d/opcache-default.blacklist
|
%config(noreplace) %{_sysconfdir}/php.d/opcache-default.blacklist
|
||||||
|
%if %{with_zts}
|
||||||
%config(noreplace) %{_sysconfdir}/php-zts.d/opcache-default.blacklist
|
%config(noreplace) %{_sysconfdir}/php-zts.d/opcache-default.blacklist
|
||||||
|
%endif
|
||||||
%files json -f files.json
|
%files json -f files.json
|
||||||
%if %{with_sodium}
|
%if %{with_sodium}
|
||||||
%files sodium -f files.sodium
|
%files sodium -f files.sodium
|
||||||
|
Loading…
Reference in New Issue
Block a user