From 29764f94a9bc3ed7fd911d7a1dbfe3a27e61b12d Mon Sep 17 00:00:00 2001 From: Martin Joerg Date: Sat, 23 Mar 2024 17:33:05 +0100 Subject: [PATCH] Fix autoconf test for --enable-jit=auto (#396) The test is now done in sljitConfigCPU.h --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 4e2b16f84..56c4c23da 100644 --- a/configure.ac +++ b/configure.ac @@ -191,7 +191,7 @@ if test "$enable_jit" = "auto"; then CPPFLAGS=-I$srcdir AC_COMPILE_IFELSE([AC_LANG_SOURCE([[ #define SLJIT_CONFIG_AUTO 1 - #include "src/sljit/sljitConfigInternal.h" + #include "src/sljit/sljitConfigCPU.h" #if (defined SLJIT_CONFIG_UNSUPPORTED && SLJIT_CONFIG_UNSUPPORTED) #error unsupported #endif]])], enable_jit=yes, enable_jit=no)