From b1e6dd79d7dba098955b5f7e62a3b0d067e36ec6 Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Fri, 5 Jul 2002 00:28:04 +0000 Subject: [PATCH] - Made the configure message from the assembler test a little more clearer - The floating point exception when using the assembler refreshers no longer occurs, which seems to be a by-product of the recent auto* changes. If you can make quake2 FPE again, I'd like to know. (Closes: #22) --- configure.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index 3511d96..1433c13 100644 --- a/configure.in +++ b/configure.in @@ -292,8 +292,8 @@ AC_CHECK_FUNCS(dlopen) DL_LIBS="" if test "x$ac_cv_func_dlopen" != "xyes"; then AC_CHECK_LIB(dl, - dlopen, - AC_DEFINE(HAVE_DLOPEN, 1, [Define if you have the dlopen function.]) DL_LIBS="-ldl" + dlopen, + AC_DEFINE(HAVE_DLOPEN, 1, [Define if you have the dlopen function.]) DL_LIBS="-ldl" ) fi AC_SUBST(DL_LIBS) @@ -311,11 +311,11 @@ case "${host}" in AC_MSG_RESULT(yes) AC_MSG_CHECKING(if asm is disabled) AC_ARG_ENABLE(asm, - [ --disable-asm disable assembler optimisation ], - AC_MSG_RESULT(yes), - AC_DEFINE(USE_ASM, 1, [Define this if you want to use assembler optimised code]) - ASM_ARCH=yes - AC_MSG_RESULT(no) + [ --disable-asm disable assembler optimisation ], + AC_MSG_RESULT(asm disabled), + AC_DEFINE(USE_ASM, 1, [Define this if you want to use assembler optimised code]) + ASM_ARCH=yes + AC_MSG_RESULT(asm enabled) ) ;; *)