1
0
Fork 0
mirror of https://git.tukaani.org/xz.git synced 2024-04-04 12:36:23 +02:00

Define HAVE_ASM_X86 when x86 assembler optimizations are

used. This #define will be useful for inline assembly.
This commit is contained in:
Lasse Collin 2008-01-09 20:05:57 +02:00
parent 0e70fbe403
commit 382808514a

View file

@ -316,7 +316,10 @@ if test "x$enable_assembler" = xyes; then
esac
fi
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_ERROR([--enable-assembler accepts only \`yes', \`no', or \`x86'.])