We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32290b3 commit b7ac568Copy full SHA for b7ac568
1 file changed
main/main.c
@@ -52,7 +52,9 @@
52
#include "ext/random/php_random_csprng.h"
53
#include "ext/random/php_random_zend_utils.h"
54
#include "ext/opcache/ZendAccelerator.h"
55
-#include "ext/opcache/jit/zend_jit.h"
+#ifdef HAVE_JIT
56
+# include "ext/opcache/jit/zend_jit.h"
57
+#endif
58
#include "php_variables.h"
59
#include "ext/standard/credits.h"
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)) +
2811
TSRM_ALIGNED_SIZE(sizeof(zend_accel_globals)) +
- TSRM_ALIGNED_SIZE(sizeof(zend_jit_globals))
2812
2813
+ TSRM_ALIGNED_SIZE(sizeof(zend_jit_globals)) +
2814
2815
+ 0
2816
);
2817
}
2818
/* }}} */
0 commit comments