fix linux build

regression from r4291, which accidentally reverted a hunk of configure
This commit is contained in:
pengvado 2012-07-10 19:53:29 +00:00
parent 8ca63cbb54
commit 1c88873788
2 changed files with 12 additions and 0 deletions

View File

@ -264,6 +264,15 @@ if test "x$HAVE_LIBGLADE" = "xyes"; then
])
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
AC_ARG_ENABLE(wifi,
[AC_HELP_STRING(--enable-wifi, enable experimental wifi comm support)],

View File

@ -20,6 +20,9 @@
#define ARM_JIT
#include "types.h"
#ifndef _MSC_VER
#include <stdint.h>
#endif
typedef u32 (FASTCALL* ArmOpCompiled)();