Define HAVE_ASM_X86 when x86 assembler optimizations are
used. This #define will be useful for inline assembly.
This commit is contained in:
parent
0e70fbe403
commit
382808514a
|
@ -316,7 +316,10 @@ if test "x$enable_assembler" = xyes; then
|
||||||
esac
|
esac
|
||||||
fi
|
fi
|
||||||
case $enable_assembler in
|
case $enable_assembler in
|
||||||
x86|no) ;;
|
x86|no)
|
||||||
|
AC_DEFINE([HAVE_ASM_X86], 1,
|
||||||
|
[Define to 1 if using x86 assembler optimizations.])
|
||||||
|
;;
|
||||||
*)
|
*)
|
||||||
AC_MSG_RESULT([])
|
AC_MSG_RESULT([])
|
||||||
AC_MSG_ERROR([--enable-assembler accepts only \`yes', \`no', or \`x86'.])
|
AC_MSG_ERROR([--enable-assembler accepts only \`yes', \`no', or \`x86'.])
|
||||||
|
|
Loading…
Reference in New Issue