From bcd1b318316b199d704df00bc9694c6e21425e3f Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Tue, 5 Aug 2008 20:56:03 +0000 Subject: [PATCH] - fix oci8_11g when build shared (invalid extension) --- ext/oci8/oci8.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/oci8/oci8.c b/ext/oci8/oci8.c index d1ce476801..3ab7eb9afe 100644 --- a/ext/oci8/oci8.c +++ b/ext/oci8/oci8.c @@ -99,7 +99,7 @@ static sword php_oci_ping_init(php_oci_connection *connection, OCIError *errh TS /* }}} */ /* {{{ dynamically loadable module stuff */ -#ifdef COMPILE_DL_OCI8 +#if defined(COMPILE_DL_OCI8) || defined(COMPILE_DL_OCI8_11G) ZEND_GET_MODULE(oci8) #endif /* COMPILE_DL */ /* }}} */ -- 2.50.1