From: Anantha Kesari H Y Date: Mon, 18 Oct 2004 12:06:57 +0000 (+0000) Subject: including zend_compile.h for NetWare as NetWare uses MetroWerks Code warrior compiler... X-Git-Tag: PRE_NEW_VM_GEN_PATCH~22 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d608f1a0e01caa9580aec9f55b04a59a61a1318c;p=php 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]; --- 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