Skip to content

Commit acf758d

Browse files
authored
Fix build on platforms without JIT support (#15069)
1 parent 350c10d commit acf758d

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)