diff options
author | Thies C. Arntzen <thies@php.net> | 2000-04-21 15:04:41 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2000-04-21 15:04:41 +0000 |
commit | 5132321c3ee66e0864bc92860c0cf9690bf7a71f (patch) | |
tree | 95007a4414b9569a705b2cfe8c33e2bc8112f458 /ext/oracle/oracle.c | |
parent | 0e2ac7d9920687482e76fa457295c3e1dc759179 (diff) | |
download | php-git-5132321c3ee66e0864bc92860c0cf9690bf7a71f.tar.gz |
oracle compiles now on win32 - untested!
Diffstat (limited to 'ext/oracle/oracle.c')
-rw-r--r-- | ext/oracle/oracle.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/oracle/oracle.c b/ext/oracle/oracle.c index 35dcb98b36..31259c0a15 100644 --- a/ext/oracle/oracle.c +++ b/ext/oracle/oracle.c @@ -40,12 +40,6 @@ #include "ext/standard/info.h" -#ifdef WIN32 -# include "variables.h" -#else -# include "build-defs.h" -#endif - #ifndef min #define min(a, b) ((a) > (b) ? (b) : (a)) @@ -281,8 +275,6 @@ static void php_ora_init_globals(ORALS_D) PHP_MINIT_FUNCTION(oracle) { - ELS_FETCH(); - #ifdef ZTS ora_globals_id = ts_allocate_id(sizeof(php_ora_globals), (ts_allocate_ctor) php_ora_init_globals, NULL); #else |