From: Dan Nicholson Date: Wed, 11 Feb 2009 18:42:34 +0000 (-0800) Subject: autoconf: Restore commented ASM_FLAGS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=61e925f354fabc90bb3b2ed49ad82eaf939533e2;p=mesa.git autoconf: Restore commented ASM_FLAGS This is not the proper approach to disabling assembly. If there are bugs, they should be fixed or the assembly can default to off. Signed-off-by: Dan Nicholson --- diff --git a/configure.ac b/configure.ac index fa9c3b082a4..a124f426033 100644 --- a/configure.ac +++ b/configure.ac @@ -314,7 +314,7 @@ if test "x$enable_asm" = xyes; then case "$asm_arch" in x86) - dnl ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM" + ASM_FLAGS="-DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM" ASM_SOURCES='$(X86_SOURCES)' ASM_API='$(X86_API)' AC_MSG_RESULT([yes, x86])