Skip to content

Commit d4ef8b9

Browse files
committed
Merge branch 'PHP-8.3'
* PHP-8.3: Fix build on platforms without JIT support (#15069)
2 parents 518939a + 385151d commit d4ef8b9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ext/opcache/shared_alloc_mmap.c

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@
2020
*/
2121

2222
#include "zend_shared_alloc.h"
23-
#include "jit/zend_jit.h"
23+
#ifdef HAVE_JIT
24+
# include "jit/zend_jit.h"
25+
#endif
2426

2527
#ifdef USE_MMAP
2628

0 commit comments

Comments
 (0)