- 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)
This commit is contained in:
Jamie Wilkinson 2002-07-05 00:28:04 +00:00
parent 8ccc351f99
commit b1e6dd79d7

View file

@ -292,8 +292,8 @@ AC_CHECK_FUNCS(dlopen)
DL_LIBS="" DL_LIBS=""
if test "x$ac_cv_func_dlopen" != "xyes"; then if test "x$ac_cv_func_dlopen" != "xyes"; then
AC_CHECK_LIB(dl, AC_CHECK_LIB(dl,
dlopen, dlopen,
AC_DEFINE(HAVE_DLOPEN, 1, [Define if you have the dlopen function.]) DL_LIBS="-ldl" AC_DEFINE(HAVE_DLOPEN, 1, [Define if you have the dlopen function.]) DL_LIBS="-ldl"
) )
fi fi
AC_SUBST(DL_LIBS) AC_SUBST(DL_LIBS)
@ -311,11 +311,11 @@ case "${host}" in
AC_MSG_RESULT(yes) AC_MSG_RESULT(yes)
AC_MSG_CHECKING(if asm is disabled) AC_MSG_CHECKING(if asm is disabled)
AC_ARG_ENABLE(asm, AC_ARG_ENABLE(asm,
[ --disable-asm disable assembler optimisation ], [ --disable-asm disable assembler optimisation ],
AC_MSG_RESULT(yes), AC_MSG_RESULT(asm disabled),
AC_DEFINE(USE_ASM, 1, [Define this if you want to use assembler optimised code]) AC_DEFINE(USE_ASM, 1, [Define this if you want to use assembler optimised code])
ASM_ARCH=yes ASM_ARCH=yes
AC_MSG_RESULT(no) AC_MSG_RESULT(asm enabled)
) )
;; ;;
*) *)