summaryrefslogtreecommitdiff
path: root/ext/pdo_oci
diff options
context:
space:
mode:
authorfoobar <sniper@php.net>2005-11-25 15:40:14 +0000
committerfoobar <sniper@php.net>2005-11-25 15:40:14 +0000
commit04dffec1c4db169de2686b7330a3b1ab8a811719 (patch)
treed54a3004c291d1bf4fec440724417cb89a5aa6ce /ext/pdo_oci
parenta526db79562dabdb855f2369d3b08700af2a717a (diff)
downloadphp-git-04dffec1c4db169de2686b7330a3b1ab8a811719.tar.gz
- Use right define: ZEND_MODULE_API_NO as these are PHP modules, not Zend extensions
Diffstat (limited to 'ext/pdo_oci')
-rwxr-xr-xext/pdo_oci/pdo_oci.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/pdo_oci/pdo_oci.c b/ext/pdo_oci/pdo_oci.c
index 5e5e873d5c..6ab7bc887c 100755
--- a/ext/pdo_oci/pdo_oci.c
+++ b/ext/pdo_oci/pdo_oci.c
@@ -38,7 +38,7 @@ function_entry pdo_oci_functions[] = {
/* {{{ pdo_oci_module_entry */
-#if ZEND_EXTENSION_API_NO >= 220050617
+#if ZEND_MODULE_API_NO >= 20050922
static zend_module_dep pdo_oci_deps[] = {
ZEND_MOD_REQUIRED("pdo")
{NULL, NULL, NULL}
@@ -46,7 +46,7 @@ static zend_module_dep pdo_oci_deps[] = {
#endif
zend_module_entry pdo_oci_module_entry = {
-#if ZEND_EXTENSION_API_NO >= 220050617
+#if ZEND_MODULE_API_NO >= 20050922
STANDARD_MODULE_HEADER_EX, NULL,
pdo_oci_deps,
#else