Skip to content

Commit 9e9f413

Browse files
committed
Fix PECL Bug #5010
1 parent af01525 commit 9e9f413

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

ext/pdo/config.m4

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,11 @@ for more detail on this issue.
5454

5555
ifdef([PHP_INSTALL_HEADERS],
5656
[
57+
dnl Sadly, this is a complete NOP for pecl extensions
5758
PHP_INSTALL_HEADERS(ext/pdo, [php_pdo.h php_pdo_driver.h])
58-
], [
59-
PHP_ADD_MAKEFILE_FRAGMENT
6059
])
60+
61+
dnl so we always include the known-good working hack.
62+
PHP_ADD_MAKEFILE_FRAGMENT
6163
fi
64+

ext/pdo/package.xml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
<license>PHP</license>
4242
<release>
4343
<state>beta</state>
44-
<version>1.0RC1</version>
44+
<version>1.0RC2</version>
4545
<date>2005-09-11</date>
4646

4747
<notes>
@@ -60,6 +60,8 @@ http://snaps.php.net/win32/PECL_5_0/php_pdo.dll
6060
You can find additional PDO drivers at:
6161
http://snaps.php.net/win32/PECL_5_0/
6262

63+
- Fixed an issue with the installation of the pdo headers
64+
6365
- Consult the PHP 5.1b3 release notes and http://netevil.org/node.php?nid=325
6466
for more recent changes.
6567

ext/pdo/pdo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ zend_module_entry pdo_module_entry = {
112112
PHP_RINIT(pdo),
113113
PHP_RSHUTDOWN(pdo),
114114
PHP_MINFO(pdo),
115-
"1.0RC1",
115+
"1.0RC2",
116116
STANDARD_MODULE_PROPERTIES
117117
};
118118
/* }}} */

0 commit comments

Comments
 (0)