diff options
author | Antony Dovgal <tony2001@php.net> | 2007-01-03 20:49:27 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-01-03 20:49:27 +0000 |
commit | 6dd26de0c947a0f38a16c1565e539d613f81c482 (patch) | |
tree | bf75222d0a161d4dcfd22acb34ebe6710230573f | |
parent | a323972c87e4daafc9721a6aa865c0450be45dfa (diff) | |
download | php-git-6dd26de0c947a0f38a16c1565e539d613f81c482.tar.gz |
more magic number fixes
-rw-r--r-- | Zend/zend_extensions.h | 2 | ||||
-rw-r--r-- | Zend/zend_modules.h | 2 | ||||
-rw-r--r-- | ext/exif/exif.c | 2 | ||||
-rw-r--r-- | ext/mime_magic/mime_magic.c | 2 | ||||
-rw-r--r-- | ext/sqlite/sqlite.c | 2 |
5 files changed, 5 insertions, 5 deletions
diff --git a/Zend/zend_extensions.h b/Zend/zend_extensions.h index 4bfb358f13..114d852197 100644 --- a/Zend/zend_extensions.h +++ b/Zend/zend_extensions.h @@ -27,7 +27,7 @@ /* The first number is the engine version and the rest is the date. * This way engine 2/3 API no. is always greater than engine 1 API no.. */ -#define ZEND_EXTENSION_API_NO 320070519 +#define ZEND_EXTENSION_API_NO 320060519 typedef struct _zend_extension_version_info { int zend_extension_api_no; diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h index a6b6c8647d..971f202bb3 100644 --- a/Zend/zend_modules.h +++ b/Zend/zend_modules.h @@ -39,7 +39,7 @@ extern struct _zend_arg_info fourth_arg_force_ref[5]; extern struct _zend_arg_info fifth_arg_force_ref[6]; extern struct _zend_arg_info all_args_by_ref[1]; -#define ZEND_MODULE_API_NO 20070613 +#define ZEND_MODULE_API_NO 20060613 #ifdef ZTS #define USING_ZTS 1 #else diff --git a/ext/exif/exif.c b/ext/exif/exif.c index b5eb39eec8..2048c22397 100644 --- a/ext/exif/exif.c +++ b/ext/exif/exif.c @@ -253,7 +253,7 @@ zend_module_entry exif_module_entry = { #if ZEND_MODULE_API_NO >= 20010901 EXIF_VERSION, #endif -#if ZEND_MODULE_API_NO >= 20070613 +#if ZEND_MODULE_API_NO >= 20060613 PHP_MODULE_GLOBALS(exif), PHP_GINIT(exif), NULL, diff --git a/ext/mime_magic/mime_magic.c b/ext/mime_magic/mime_magic.c index 28397da1cc..c186923031 100644 --- a/ext/mime_magic/mime_magic.c +++ b/ext/mime_magic/mime_magic.c @@ -240,7 +240,7 @@ zend_module_entry mime_magic_module_entry = { #if ZEND_MODULE_API_NO >= 20010901 "0.1", #endif -#if ZEND_MODULE_API_NO >= 20070613 +#if ZEND_MODULE_API_NO >= 20060613 PHP_MODULE_GLOBALS(mime_magic), PHP_GINIT(mime_magic), NULL, diff --git a/ext/sqlite/sqlite.c b/ext/sqlite/sqlite.c index d16d248669..f0a54c3c1c 100644 --- a/ext/sqlite/sqlite.c +++ b/ext/sqlite/sqlite.c @@ -347,7 +347,7 @@ zend_module_entry sqlite_module_entry = { #if ZEND_MODULE_API_NO >= 20010901 PHP_SQLITE_MODULE_VERSION, #endif -#if ZEND_MODULE_API_NO >= 20070613 +#if ZEND_MODULE_API_NO >= 20060613 PHP_MODULE_GLOBALS(sqlite), PHP_GINIT(sqlite), NULL, |