FS-5250: --resolve fix mac build

This commit is contained in:
Michael Jerris 2013-04-10 12:44:19 -04:00
parent ed4c177177
commit d7c34c7e1f
1 changed files with 6 additions and 2 deletions

View File

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