]> granicus.if.org Git - php/commitdiff
Fix PECL Bug #5010
authorWez Furlong <wez@php.net>
Sun, 11 Sep 2005 19:44:26 +0000 (19:44 +0000)
committerWez Furlong <wez@php.net>
Sun, 11 Sep 2005 19:44:26 +0000 (19:44 +0000)
ext/pdo/config.m4
ext/pdo/package.xml
ext/pdo/pdo.c

index d220a2d039a5c1087737b24fa213b26bdf7d1b51..9751f6f439483df455529f2c31a3d10d133ac4db 100755 (executable)
@@ -54,8 +54,11 @@ for more detail on this issue.
   
   ifdef([PHP_INSTALL_HEADERS],
   [
+    dnl Sadly, this is a complete NOP for pecl extensions
     PHP_INSTALL_HEADERS(ext/pdo, [php_pdo.h php_pdo_driver.h])
-  ], [
-    PHP_ADD_MAKEFILE_FRAGMENT
   ])
+
+  dnl so we always include the known-good working hack.
+  PHP_ADD_MAKEFILE_FRAGMENT
 fi
+
index 06074ae2c29f2e18f712f509c03e7beb36ece5b6..eb6441daf2f311e8a3a98b6b936a435df6973e0e 100755 (executable)
@@ -41,7 +41,7 @@
  <license>PHP</license>
  <release>
   <state>beta</state>
-  <version>1.0RC1</version>
+  <version>1.0RC2</version>
   <date>2005-09-11</date>
 
   <notes>
@@ -60,6 +60,8 @@ http://snaps.php.net/win32/PECL_5_0/php_pdo.dll
 You can find additional PDO drivers at:
 http://snaps.php.net/win32/PECL_5_0/
 
+- Fixed an issue with the installation of the pdo headers
+
 - Consult the PHP 5.1b3 release notes and http://netevil.org/node.php?nid=325
   for more recent changes.
 
index 5f81217240ea3ec5d3635329c122d4e40cd2cd1f..fd38a56cc506023877e68625dad4fefe3ed9531b 100755 (executable)
@@ -112,7 +112,7 @@ zend_module_entry pdo_module_entry = {
        PHP_RINIT(pdo),
        PHP_RSHUTDOWN(pdo),
        PHP_MINFO(pdo),
-       "1.0RC1",
+       "1.0RC2",
        STANDARD_MODULE_PROPERTIES
 };
 /* }}} */