File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 52
52
#include "ext/random/php_random_csprng.h"
53
53
#include "ext/random/php_random_zend_utils.h"
54
54
#include "ext/opcache/ZendAccelerator.h"
55
- #include "ext/opcache/jit/zend_jit.h"
55
+ #ifdef HAVE_JIT
56
+ # include "ext/opcache/jit/zend_jit.h"
57
+ #endif
56
58
#include "php_variables.h"
57
59
#include "ext/standard/credits.h"
58
60
#ifdef PHP_WIN32
@@ -2807,7 +2809,10 @@ PHPAPI void php_reserve_tsrm_memory(void)
2807
2809
TSRM_ALIGNED_SIZE (sizeof (php_core_globals )) +
2808
2810
TSRM_ALIGNED_SIZE (sizeof (sapi_globals_struct )) +
2809
2811
TSRM_ALIGNED_SIZE (sizeof (zend_accel_globals )) +
2810
- TSRM_ALIGNED_SIZE (sizeof (zend_jit_globals ))
2812
+ #ifdef HAVE_JIT
2813
+ TSRM_ALIGNED_SIZE (sizeof (zend_jit_globals )) +
2814
+ #endif
2815
+ 0
2811
2816
);
2812
2817
}
2813
2818
/* }}} */
You can’t perform that action at this time.
0 commit comments