Search
lxdream.org :: lxdream/configure.in :: diff
lxdream 0.9.1
released Jun 29
Download Now
filename configure.in
changeset 675:b97020f9af1c
prev671:a530ea88eebd
next681:1755a126b109
author nkeynes
date Thu May 29 10:50:25 2008 +0000 (15 years ago)
permissions -rw-r--r--
last change Remove pvr2mmio.h include from pvr2.h (it's supposed to be moore or less private)
Move redraw function from driver into pvr2_redraw_display()
file annotate diff log raw
1.1 --- a/configure.in Thu May 15 10:22:39 2008 +0000
1.2 +++ b/configure.in Thu May 29 10:50:25 2008 +0000
1.3 @@ -9,6 +9,7 @@
1.4 AC_PROG_CC
1.5 AM_PROG_CC_STDC
1.6 AM_PROG_AS
1.7 +AC_CHECK_SIZEOF([void *])
1.8 AC_HEADER_STDC
1.9 AC_CANONICAL_BUILD
1.10 AC_CANONICAL_HOST
1.11 @@ -131,12 +132,9 @@
1.12
1.13 dnl Check for a supported cpu target for translation purposes
1.14 case $host_cpu in
1.15 - i386|i486|i586|i686)
1.16 + i386|i486|i586|i686|x86_64)
1.17 SH4_TRANSLATOR="x86"
1.18 AC_DEFINE_UNQUOTED(SH4_TRANSLATOR,[TARGET_X86], [SH4 Translator to use (if any)] );;
1.19 - x86_64)
1.20 - SH4_TRANSLATOR="x86_64"
1.21 - AC_DEFINE_UNQUOTED(SH4_TRANSLATOR,[TARGET_X86_64], [SH4 Translator to use (if any)] );;
1.22 *)
1.23 echo "Warning: No translator available for $host. Building emulation core only";;
1.24 esac
.