disable interbase sub package

This commit is contained in:
Remi Collet 2016-11-14 07:19:24 +01:00
parent 1704f717c4
commit 511fd17198

View File

@ -51,6 +51,9 @@
%global with_zip 0 %global with_zip 0
%global with_libzip 0 %global with_libzip 0
# Not yet compatible with firebird 3
# https://bugs.php.net/bug.php?id=73512
%global with_firebird 0
%if 0%{?fedora} < 18 && 0%{?rhel} < 7 %if 0%{?fedora} < 18 && 0%{?rhel} < 7
%global db_devel db4-devel %global db_devel db4-devel
@ -433,6 +436,7 @@ BuildRequires: libxml2-devel
The php-soap package contains a dynamic shared object that will add The php-soap package contains a dynamic shared object that will add
support to PHP for using the SOAP web services protocol. support to PHP for using the SOAP web services protocol.
%if %{with_firebird}
%package interbase %package interbase
Summary: A module for PHP applications that use Interbase/Firebird databases Summary: A module for PHP applications that use Interbase/Firebird databases
Group: Development/Languages Group: Development/Languages
@ -456,6 +460,7 @@ technical advisors and supporters developing and enhancing a multi-platform
relational database management system based on the source code released by relational database management system based on the source code released by
Inprise Corp (now known as Borland Software Corp) under the InterBase Public Inprise Corp (now known as Borland Software Corp) under the InterBase Public
License. License.
%endif
%package snmp %package snmp
Summary: A module for PHP applications that query SNMP-managed devices Summary: A module for PHP applications that query SNMP-managed devices
@ -931,8 +936,10 @@ build --libdir=%{_libdir}/php \
--enable-mysqlnd=shared \ --enable-mysqlnd=shared \
--with-mysqli=shared,mysqlnd \ --with-mysqli=shared,mysqlnd \
--with-mysql-sock=%{mysql_sock} \ --with-mysql-sock=%{mysql_sock} \
%if %{with_firebird}
--with-interbase=shared,%{_libdir}/firebird \ --with-interbase=shared,%{_libdir}/firebird \
--with-pdo-firebird=shared,%{_libdir}/firebird \ --with-pdo-firebird=shared,%{_libdir}/firebird \
%endif
--enable-dom=shared \ --enable-dom=shared \
--with-pgsql=shared \ --with-pgsql=shared \
--enable-simplexml=shared \ --enable-simplexml=shared \
@ -1056,8 +1063,10 @@ build --includedir=%{_includedir}/php-zts \
--with-mysqli=shared,mysqlnd \ --with-mysqli=shared,mysqlnd \
--with-mysql-sock=%{mysql_sock} \ --with-mysql-sock=%{mysql_sock} \
--enable-mysqlnd-threading \ --enable-mysqlnd-threading \
%if %{with_firebird}
--with-interbase=shared,%{_libdir}/firebird \ --with-interbase=shared,%{_libdir}/firebird \
--with-pdo-firebird=shared,%{_libdir}/firebird \ --with-pdo-firebird=shared,%{_libdir}/firebird \
%endif
--enable-dom=shared \ --enable-dom=shared \
--with-pgsql=shared \ --with-pgsql=shared \
--enable-simplexml=shared \ --enable-simplexml=shared \
@ -1232,7 +1241,9 @@ for mod in pgsql odbc ldap snmp xmlrpc imap json \
%if %{with_zip} %if %{with_zip}
zip \ zip \
%endif %endif
%if %{with_firebird}
interbase pdo_firebird \ interbase pdo_firebird \
%endif
sqlite3 \ sqlite3 \
enchant phar fileinfo intl \ enchant phar fileinfo intl \
mcrypt tidy pdo_dblib pspell curl wddx \ mcrypt tidy pdo_dblib pspell curl wddx \
@ -1287,7 +1298,9 @@ cat files.mysqli \
# Split out the PDO modules # Split out the PDO modules
cat files.pdo_pgsql >> files.pgsql cat files.pdo_pgsql >> files.pgsql
cat files.pdo_odbc >> files.odbc cat files.pdo_odbc >> files.odbc
%if %{with_firebird}
cat files.pdo_firebird >> files.interbase cat files.pdo_firebird >> files.interbase
%endif
# sysv* and posix in packaged in php-process # sysv* and posix in packaged in php-process
cat files.shmop files.sysv* files.posix > files.process cat files.shmop files.sysv* files.posix > files.process
@ -1480,7 +1493,9 @@ rm -f README.{Zeus,QNX,CVS-RULES}
%files intl -f files.intl %files intl -f files.intl
%files process -f files.process %files process -f files.process
%files recode -f files.recode %files recode -f files.recode
%if %{with_firebird}
%files interbase -f files.interbase %files interbase -f files.interbase
%endif
%files enchant -f files.enchant %files enchant -f files.enchant
%files mysqlnd -f files.mysqlnd %files mysqlnd -f files.mysqlnd
%files opcache -f files.opcache %files opcache -f files.opcache
@ -1493,6 +1508,7 @@ rm -f README.{Zeus,QNX,CVS-RULES}
* Mon Nov 14 2016 Remi Collet <remi@fedoraproject.org> 7.1.0-0.1.RC6 * Mon Nov 14 2016 Remi Collet <remi@fedoraproject.org> 7.1.0-0.1.RC6
- Update to 7.1.0RC6 - Update to 7.1.0RC6
- update tzdata patch to v14, improve check for valid tz file - update tzdata patch to v14, improve check for valid tz file
- disable interbase sub package (interbase and pdo_firebird)
* Tue Oct 11 2016 Remi Collet <remi@fedoraproject.org> 7.1.0-0.1.RC3 * Tue Oct 11 2016 Remi Collet <remi@fedoraproject.org> 7.1.0-0.1.RC3
- Update to 7.1.0RC3 - Update to 7.1.0RC3