Skip to content

Commit 385151d

Browse files
committed
Merge branch 'PHP-8.2' into PHP-8.3
* PHP-8.2: Fix build on platforms without JIT support (php#15069)
2 parents 2599b6e + acf758d commit 385151d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ext/opcache/shared_alloc_mmap.c

+3-1
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)