mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
Fix build
This commit is contained in:
parent
32290b3529
commit
b7ac56822d
1 changed files with 7 additions and 2 deletions
|
@ -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
|
||||
);
|
||||
}
|
||||
/* }}} */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue