diff options
-rw-r--r-- | debian/changelog | 8 | ||||
-rwxr-xr-x | debian/rules | 4 |
2 files changed, 10 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index a9c4c99b1..4c09441ca 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +php5 (5.2.0-7) unstable; urgency=high + + [ Steve Langasek ] + * Also disable firebird in the PDO config for archs other than + i386/amd64. + + -- sean finney <seanius@debian.org> Fri, 24 Nov 2006 15:20:53 +0100 + php5 (5.2.0-6) unstable; urgency=high [ sean finney ] diff --git a/debian/rules b/debian/rules index 036ef0158..c01caa7c8 100755 --- a/debian/rules +++ b/debian/rules @@ -55,7 +55,8 @@ endif # only enable interbase support for i386/amd64 ifneq (,$(filter $(DEB_BUILD_ARCH),amd64 i386)) - IBFLAGS=--with-interbase=shared,/usr + IBFLAGS=--with-interbase=shared,/usr \ + --with-pdo-firebird=shared,/usr endif COMMON_CONFIG=--build=$(PHP5_BUILD_GNU_TYPE)-gnu \ @@ -246,7 +247,6 @@ configure-apache2-stamp: patch-stamp --with-pgsql=shared,/usr PGSQL_INCLUDE=`pg_config --includedir` \ --enable-pdo=shared \ --without-pdo-dblib \ - --with-pdo-firebird=shared,/usr \ --with-pdo-mysql=shared,/usr \ --with-pdo-odbc=shared,unixODBC,/usr \ --with-pdo-pgsql=shared,/usr/bin/pg_config \ |