1
0
Fork 0

fix win32/vc build for php4

git-svn-id: svn://svn.lighttpd.net/xcache/trunk@18 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
1.1
Xuefer 2006-05-25 02:33:32 +00:00
parent eb68431952
commit 044daa2ed7
1 changed files with 6 additions and 2 deletions

View File

@ -26,12 +26,14 @@
#include "const_string.h"
#include "opcode_spec.h"
#undef NDEBUG
#ifdef DEBUG
# undef NDEBUG
# undef inline
# define inline
#else
# define NDEBUG
# ifndef NDEBUG
# define NDEBUG
# endif
#endif
#include <assert.h>
@ -1876,7 +1878,9 @@ static PHP_RSHUTDOWN_FUNCTION(xcache)
static ZEND_MODULE_POST_ZEND_DEACTIVATE_D(xcache)
#endif
{
#ifdef ZEND_ENGINE_2
TSRMLS_FETCH();
#endif
xc_request_shutdown(TSRMLS_C);
return SUCCESS;