diff options
author | Popa Adrian Marius <mapopa@reea.net> | 2014-04-28 12:13:11 +0300 |
---|---|---|
committer | Popa Adrian Marius <mapopa@reea.net> | 2014-04-28 12:13:11 +0300 |
commit | bb422cb60e69794b3ea9d7d47fcc8a976a385608 (patch) | |
tree | 6aaad65d2399d8a5515e24351478cb154992d3f3 /ext/pdo_firebird/pdo_firebird.c | |
parent | d3dcd616231e6eda97a7b474bbd585a7f61f0b71 (diff) | |
parent | dbcd6304bb2dc5bdab4d25c7fac8e578354ed2d9 (diff) | |
download | php-git-bb422cb60e69794b3ea9d7d47fcc8a976a385608.tar.gz |
Merge branch 'PHP-5.3' into PHP-5.4
* PHP-5.3:
Cleanup ZEND_MODULE_API_NO => 20050922
Diffstat (limited to 'ext/pdo_firebird/pdo_firebird.c')
-rw-r--r-- | ext/pdo_firebird/pdo_firebird.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/ext/pdo_firebird/pdo_firebird.c b/ext/pdo_firebird/pdo_firebird.c index 595a6a3987..d59aa53fa3 100644 --- a/ext/pdo_firebird/pdo_firebird.c +++ b/ext/pdo_firebird/pdo_firebird.c @@ -35,21 +35,15 @@ const zend_function_entry pdo_firebird_functions[] = { /* {{{ */ /* {{{ pdo_firebird_deps */ -#if ZEND_MODULE_API_NO >= 20050922 static const zend_module_dep pdo_firebird_deps[] = { ZEND_MOD_REQUIRED("pdo") ZEND_MOD_END }; -#endif /* }}} */ zend_module_entry pdo_firebird_module_entry = { /* {{{ */ -#if ZEND_MODULE_API_NO >= 20050922 STANDARD_MODULE_HEADER_EX, NULL, pdo_firebird_deps, -#else - STANDARD_MODULE_HEADER, -#endif "PDO_Firebird", pdo_firebird_functions, PHP_MINIT(pdo_firebird), |