FS-5250: --resolve fix mac build

This commit is contained in:
Michael Jerris 2013-04-10 12:44:19 -04:00 committed by Travis Cross
parent 270c47a0a5
commit 4fc4f7495e
1 changed files with 6 additions and 2 deletions

View File

@ -225,8 +225,12 @@ case $host_cpu in
i*86 ) i*86 )
AC_DEFINE(CPU_CISC, 1, AC_DEFINE(CPU_CISC, 1,
[Define if building for a CISC machine (e.g. Intel).]) [Define if building for a CISC machine (e.g. Intel).])
# Do not enable use of asm for MACOSX
if test "x$new_AM_CFLAGS" != "x-DMACOSX"; then
AC_DEFINE(HAVE_X86, 1, AC_DEFINE(HAVE_X86, 1,
[Define to use X86 inlined assembly code]);; [Define to use X86 inlined assembly code])
fi
;;
* ) * )
# CPU_RISC is only supported for big endian machines. # CPU_RISC is only supported for big endian machines.
if test "$ac_cv_c_bigendian" = "yes"; then if test "$ac_cv_c_bigendian" = "yes"; then