diff options
author | Xuefer <xuefer@gmail.com> | 2013-05-28 02:07:48 +0000 |
---|---|---|
committer | Xuefer <xuefer@gmail.com> | 2013-05-28 02:07:48 +0000 |
commit | c1d9d863a7762b8cdf68a30711ca8554225b7405 (patch) | |
tree | 656095f7f3abe8e029457a49e2bf7445d9f8ed29 /xcache | |
parent | 5d5b18a4bcce23574da664d61630fc86fc374cd4 (diff) | |
download | xcache-c1d9d863a7762b8cdf68a30711ca8554225b7405.tar.gz xcache-c1d9d863a7762b8cdf68a30711ca8554225b7405.zip |
disassembler: fix: compile against correct const string for PHP 5.2, use 5.3 version of strings is enough
git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1254 c26eb9a1-5813-0410-bd6c-c2e55f420ca7
Diffstat (limited to 'xcache')
-rw-r--r-- | xcache/xc_const_string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xcache/xc_const_string.c b/xcache/xc_const_string.c index 2881f2b..def49da 100644 --- a/xcache/xc_const_string.c +++ b/xcache/xc_const_string.c @@ -67,7 +67,7 @@ const char *xc_get_data_type(zend_uchar data_type) # include "xc_const_string_opcodes_php5.5.h" #elif defined(ZEND_ENGINE_2_4) # include "xc_const_string_opcodes_php5.4.h" -#elif defined(ZEND_ENGINE_2_3) +#elif defined(ZEND_ENGINE_2_2) # include "xc_const_string_opcodes_php5.3.h" #elif defined(ZEND_ENGINE_2_1) # include "xc_const_string_opcodes_php5.1.h" |