summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnantha Kesari H Y <hyanantha@php.net>2004-10-18 12:06:57 +0000
committerAnantha Kesari H Y <hyanantha@php.net>2004-10-18 12:06:57 +0000
commitd608f1a0e01caa9580aec9f55b04a59a61a1318c (patch)
treeef865beb8f580792e7977a97b278e5c2b6328f99
parent5bf2be3461ed04c2179e634e88a36c32961baf8e (diff)
downloadphp-git-d608f1a0e01caa9580aec9f55b04a59a61a1318c.tar.gz
including zend_compile.h for NetWare as NetWare uses MetroWerks Code warrior compiler which does not allow declarations of following kind before defining the types.
extern struct _zend_arg_info first_arg_force_ref[2];
-rw-r--r--Zend/zend_modules.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_modules.h b/Zend/zend_modules.h
index af9f7779a6..de9b42c8fb 100644
--- a/Zend/zend_modules.h
+++ b/Zend/zend_modules.h
@@ -24,6 +24,9 @@
#include "zend.h"
+#ifdef NETWARE
+#include "zend_compile.h"
+#endif
#define INIT_FUNC_ARGS int type, int module_number TSRMLS_DC
#define INIT_FUNC_ARGS_PASSTHRU type, module_number TSRMLS_CC
#define SHUTDOWN_FUNC_ARGS int type, int module_number TSRMLS_DC