diff -Nru /tmp/vOqsxZDXfx/php5-5.2.1/debian/changelog /tmp/TXRLMlLRV9/php5-5.2.1/debian/changelog --- /tmp/vOqsxZDXfx/php5-5.2.1/debian/changelog 2007-05-01 12:57:20.000000000 +0100 +++ /tmp/TXRLMlLRV9/php5-5.2.1/debian/changelog 2007-05-01 12:57:23.000000000 +0100 @@ -1,3 +1,10 @@ +php5 (5.2.1-0ubuntu2) feisty; urgency=low + + * Added mssql extension support in form of the package php5-mssql + * Fixes bug #87063 (launchpad.net) + + -- Ralph Janke Mon, 30 Apr 2007 14:36:51 +0100 + php5 (5.2.1-0ubuntu1.1) feisty-security; urgency=low * SECURITY UPDATE: multiple security vulnerabilities fixed. Thanks to diff -Nru /tmp/vOqsxZDXfx/php5-5.2.1/debian/control /tmp/TXRLMlLRV9/php5-5.2.1/debian/control --- /tmp/vOqsxZDXfx/php5-5.2.1/debian/control 2007-05-01 12:57:20.000000000 +0100 +++ /tmp/TXRLMlLRV9/php5-5.2.1/debian/control 2007-05-01 12:57:23.000000000 +0100 @@ -176,6 +176,20 @@ in. The goal of the language is to allow web developers to write dynamically generated pages quickly. +Package: php5-mssql +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${Source-Version}) +Description: MSSQL module for php5 + This package provides modules for Microsoft SQL database connections directly from + PHP scripts. It includes the generic "mysql" module which can be used + to connect to all versions of Microsoft SQL, and the pdo_mssql module for use with + the PHP Data Object extension. + . + PHP5 is an HTML-embedded scripting language. Much of its syntax is borrowed + from C, Java and Perl with a couple of unique PHP-specific features thrown + in. The goal of the language is to allow web developers to write + dynamically generated pages quickly. + Package: php5-mysql Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, ${php:Depends}, php5-common (= ${Source-Version}) diff -Nru /tmp/vOqsxZDXfx/php5-5.2.1/debian/extramodulelist /tmp/TXRLMlLRV9/php5-5.2.1/debian/extramodulelist --- /tmp/vOqsxZDXfx/php5-5.2.1/debian/extramodulelist 2007-05-01 12:57:20.000000000 +0100 +++ /tmp/TXRLMlLRV9/php5-5.2.1/debian/extramodulelist 2007-05-01 12:57:23.000000000 +0100 @@ -1,3 +1,5 @@ +mssql MSSQL mssql +mssql MSSQL pdo_mssql mysql MySQL mysqli mysql MySQL pdo_mysql interbase InterBase/Firebird pdo_firebird diff -Nru /tmp/vOqsxZDXfx/php5-5.2.1/debian/rules /tmp/TXRLMlLRV9/php5-5.2.1/debian/rules --- /tmp/vOqsxZDXfx/php5-5.2.1/debian/rules 2007-05-01 12:57:20.000000000 +0100 +++ /tmp/TXRLMlLRV9/php5-5.2.1/debian/rules 2007-05-01 12:57:23.000000000 +0100 @@ -195,7 +195,7 @@ $(COMMON_CONFIG) \ --without-mm \ --disable-pdo \ - --without-mysql --without-sybase-ct --without-sqlite + --without-mysql --without-mssql --without-sybase-ct --without-sqlite cd apache-build && \ cp ../Zend/zend_ini_scanner.c ../Zend/zend_language_scanner.c \ ../Zend/zend_ini_parser.h ../Zend/zend_language_parser.h \ @@ -227,6 +227,7 @@ --with-t1lib=shared,/usr \ --with-ldap=shared,/usr \ --with-mhash=shared,/usr \ + --with-mssql=shared,/usr \ --with-mysql=shared,/usr \ --with-mysqli=shared,/usr/bin/mysql_config \ --with-pspell=shared,/usr \ @@ -241,6 +242,7 @@ --with-pgsql=shared,/usr PGSQL_INCLUDE=`pg_config --includedir` \ --enable-pdo=shared \ --without-pdo-dblib \ + --with-pdo-mssql=shared,/usr \ --with-pdo-mysql=shared,/usr \ --with-pdo-odbc=shared,unixODBC,/usr \ --with-pdo-pgsql=shared,/usr/bin/pg_config \ @@ -264,7 +266,7 @@ $(COMMON_CONFIG) \ --without-mm \ --disable-pdo \ - --without-mysql --without-sybase-ct --without-sqlite + --without-mysql --without-mssql --without-sybase-ct --without-sqlite cd cgi-build && \ cp ../Zend/zend_ini_scanner.c ../Zend/zend_language_scanner.c \ ../Zend/zend_ini_parser.h ../Zend/zend_language_parser.h \ @@ -284,7 +286,7 @@ $(COMMON_CONFIG) \ --without-mm \ --disable-pdo \ - --without-mysql --without-sybase-ct --without-sqlite \ + --without-mysql --without-mssql --without-sybase-ct --without-sqlite \ --enable-pcntl \ --with-ncurses=/usr cd cli-build && \