fix linux build
regression from r4291, which accidentally reverted a hunk of configure
This commit is contained in:
parent
8ca63cbb54
commit
1c88873788
|
@ -264,6 +264,15 @@ if test "x$HAVE_LIBGLADE" = "xyes"; then
|
||||||
])
|
])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl - jit support
|
||||||
|
case $host_cpu in
|
||||||
|
x86|x86_64|i386|i486|i586|i686)
|
||||||
|
HAVE_JIT=yes
|
||||||
|
AC_DEFINE(HAVE_JIT)
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
AM_CONDITIONAL([HAVE_JIT], [test "x$HAVE_JIT" = "xyes"])
|
||||||
|
|
||||||
dnl - wifi support
|
dnl - wifi support
|
||||||
AC_ARG_ENABLE(wifi,
|
AC_ARG_ENABLE(wifi,
|
||||||
[AC_HELP_STRING(--enable-wifi, enable experimental wifi comm support)],
|
[AC_HELP_STRING(--enable-wifi, enable experimental wifi comm support)],
|
||||||
|
|
|
@ -20,6 +20,9 @@
|
||||||
#define ARM_JIT
|
#define ARM_JIT
|
||||||
|
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
#ifndef _MSC_VER
|
||||||
|
#include <stdint.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
typedef u32 (FASTCALL* ArmOpCompiled)();
|
typedef u32 (FASTCALL* ArmOpCompiled)();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue