Fix build

This commit is contained in:
Arnaud Le Blanc 2025-08-06 19:50:11 +02:00
parent 32290b3529
commit b7ac56822d
No known key found for this signature in database

View file

@ -52,7 +52,9 @@
#include "ext/random/php_random_csprng.h"
#include "ext/random/php_random_zend_utils.h"
#include "ext/opcache/ZendAccelerator.h"
#include "ext/opcache/jit/zend_jit.h"
#ifdef HAVE_JIT
# include "ext/opcache/jit/zend_jit.h"
#endif
#include "php_variables.h"
#include "ext/standard/credits.h"
#ifdef PHP_WIN32
@ -2807,7 +2809,10 @@ PHPAPI void php_reserve_tsrm_memory(void)
TSRM_ALIGNED_SIZE(sizeof(php_core_globals)) +
TSRM_ALIGNED_SIZE(sizeof(sapi_globals_struct)) +
TSRM_ALIGNED_SIZE(sizeof(zend_accel_globals)) +
TSRM_ALIGNED_SIZE(sizeof(zend_jit_globals))
#ifdef HAVE_JIT
TSRM_ALIGNED_SIZE(sizeof(zend_jit_globals)) +
#endif
0
);
}
/* }}} */