Browse Source

Bump PECL package info version check to allow PECL installs with PHP 5.5+

pull/401/head
Christopher Jones 13 years ago
parent
commit
6ac7c9d0a7
  1. 3
      NEWS
  2. 27
      ext/oci8/package.xml
  3. 2
      ext/oci8/php_oci8.h

3
NEWS

@ -42,6 +42,9 @@ PHP NEWS
. Fixed bug #61860 (Offsets may be wrong for grapheme_stri* functions).
(Stas)
- OCI8:
. Bump PECL package info version check to allow PECL installs with PHP 5.5+
- PDO:
. Allowed PDO_OCI to compile with Oracle Database 12c client libraries.
(Chris Jones)

27
ext/oci8/package.xml

@ -6,7 +6,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
<name>oci8</name>
<channel>pecl.php.net</channel>
<summary>Extension for Oracle Database</summary>
<description>This extension allows you to access Oracle databases. It can be built with PHP 4.3.9 to 5.x. It can be linked with Oracle 9.2, 10.2, 11.1, or 11.2 client libraries.
<description>This extension allows you to access Oracle databases. It can be built with PHP 4.3.9 to 5.x. It can be linked with Oracle 9.2, 10, 11, or 12.1 client libraries.
</description>
<lead>
<name>Christopher Jones</name>
@ -33,12 +33,12 @@ http://pear.php.net/dtd/package-2.0.xsd">
<active>no</active>
</lead>
<date>2012-10-21</date>
<date>2013-07-08</date>
<time>12:00:00</time>
<version>
<release>1.4.9</release>
<api>1.4.9</api>
<release>1.4.10</release>
<api>1.4.10</api>
</version>
<stability>
<release>stable</release>
@ -46,7 +46,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
Re-fixed bug #60901 (Improve "tail" syntax for AIX installation)
Bump PECL package info version check to allow PECL installs with PHP 5.5+
</notes>
<contents>
<dir name="/">
@ -397,7 +397,7 @@ http://pear.php.net/dtd/package-2.0.xsd">
<required>
<php>
<min>4.3.9</min>
<max>5.4.99</max>
<max>6.0.0</max>
</php>
<pearinstaller>
<min>1.4.0b1</min>
@ -410,6 +410,21 @@ http://pear.php.net/dtd/package-2.0.xsd">
</extsrcrelease>
<changelog>
<release>
<version>
<release>1.4.9</release>
<api>1.4.9</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.php.net/license">PHP</license>
<notes>
Re-fixed bug #60901 (Improve "tail" syntax for AIX installation)
</notes>
</release>
<release>
<version>
<release>1.4.8</release>

2
ext/oci8/php_oci8.h

@ -46,7 +46,7 @@
*/
#undef PHP_OCI8_VERSION
#endif
#define PHP_OCI8_VERSION "1.4.9"
#define PHP_OCI8_VERSION "1.4.10"
extern zend_module_entry oci8_module_entry;
#define phpext_oci8_ptr &oci8_module_entry

Loading…
Cancel
Save