Fixes for latest FPU emulation source.

(We add the FPU_* into config.h so that the IDE can pick it up automatically)
This commit is contained in:
nigel 2003-03-24 11:41:32 +00:00
parent 7c4972328e
commit 32a526474c

View File

@ -855,6 +855,7 @@ for fpe in $FPE_CORE_TEST_ORDER; do
IEEE*)
FPE_CORE="IEEE fpu core"
DEFINES="$DEFINES -DFPU_IEEE"
AC_DEFINE(FPU_IEEE, 1, [Floating Point Core emulation method is IEEE.])
FPUSRCS="../uae_cpu/fpu/fpu_ieee.cpp"
dnl Math functions not mandated by C99 standard
AC_CHECK_FUNCS(isnanl isinfl)
@ -880,6 +881,7 @@ for fpe in $FPE_CORE_TEST_ORDER; do
uae)
FPE_CORE="uae fpu core"
DEFINES="$DEFINES -DFPU_UAE"
AC_DEFINE(FPU_UAE, 1, [Floating Point Core emulation is standard UAE.])
FPUSRCS="../uae_cpu/fpu/fpu_uae.cpp"
break
;;