Search
lxdream.org :: lxdream/configure.in :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 586:2a3ba82cf243
prev542:96c5494e02fd
next614:a2d239d4438a
author nkeynes
date Fri Jan 25 05:38:26 2008 +0000 (16 years ago)
permissions -rw-r--r--
last change Fix dangling references to recovery_posn
file annotate diff log raw
1.1 --- a/configure.in Wed Nov 21 11:52:13 2007 +0000
1.2 +++ b/configure.in Fri Jan 25 05:38:26 2008 +0000
1.3 @@ -8,10 +8,20 @@
1.4 AC_ISC_POSIX
1.5 AC_PROG_CC
1.6 AM_PROG_CC_STDC
1.7 +AM_PROG_AS
1.8 AC_HEADER_STDC
1.9 AC_CANONICAL_BUILD
1.10 AC_CANONICAL_HOST
1.11 -
1.12 +AC_ARG_ENABLE( trace,
1.13 + AS_HELP_STRING( [--enable-trace], [Enable generation of IO traces (warning: hurts performance)]),
1.14 + [if test "$enableval" == "yes"; then
1.15 + AC_DEFINE(ENABLE_TRACE_IO, 1, [Enable IO tracing])
1.16 + fi] )
1.17 +AC_ARG_ENABLE( watch,
1.18 + AS_HELP_STRING( [--enable-watch], [Enable watchpoints in the debugger (warning: hurts performance)]),
1.19 + [if test "$enableval" == "yes"; then
1.20 + AC_DEFINE(ENABLE_WATCH, 1, [Enable watchpoints])
1.21 + fi] )
1.22 dnl ----------- Check for mandatory dependencies --------------
1.23 dnl Building on MAC?
1.24 AC_CHECK_HEADER([Carbon/Carbon.h], [
1.25 @@ -60,6 +70,7 @@
1.26 echo "Warning: No translator available for $host. Building emulation core only";;
1.27 esac
1.28 AM_CONDITIONAL(BUILD_SH4X86, [test "$SH4_TRANSLATOR" = "x86" -o "$SH4_TRANSLATOR" = "x86_64"])
1.29 +AM_CONDITIONAL(BUILD_X86_64, [test "$SH4_TRANSLATOR" = "x86_64"])
1.30
1.31 dnl ------------------ Optional driver support -------------------
1.32 dnl Check for esound
.