FS-5250: --resolve fix mac build
This commit is contained in:
parent
270c47a0a5
commit
4fc4f7495e
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue