summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHartmut Holzgraefe <hholzgra@php.net>2001-12-22 18:47:59 +0000
committerHartmut Holzgraefe <hholzgra@php.net>2001-12-22 18:47:59 +0000
commit0d69607ebd843ad671e58c81a99d2af666489cc9 (patch)
tree837e660867c3a2f1415a613fed770804932f89b8
parent9e7c0d67d002f5be0328d9de575dc0d6e2a1dd78 (diff)
downloadphp-git-0d69607ebd843ad671e58c81a99d2af666489cc9.tar.gz
*now* it is backwards compatible ...
-rw-r--r--ext/msession/msession.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/msession/msession.c b/ext/msession/msession.c
index 4106996ad4..941b5e3aaf 100644
--- a/ext/msession/msession.c
+++ b/ext/msession/msession.c
@@ -104,7 +104,9 @@ function_entry msession_functions[] = {
};
zend_module_entry msession_module_entry = {
+#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
+#endif
"msession",
msession_functions,
PHP_MINIT(msession),
@@ -112,7 +114,9 @@ zend_module_entry msession_module_entry = {
PHP_RINIT(msession), /* Replace with NULL if there's nothing to do at request start */
PHP_RSHUTDOWN(msession),/* Replace with NULL if there's nothing to do at request end */
PHP_MINFO(msession),
- NO_VERSION_YET,
+#if ZEND_MODULE_API_NO >= 20010901
+ NO_VERSION_YET,
+#endif
STANDARD_MODULE_PROPERTIES
};