mirror of
https://git.code.sf.net/p/quake/quake2forge
synced 2024-12-12 13:42:21 +00:00
- 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:
parent
8ccc351f99
commit
b1e6dd79d7
1 changed files with 7 additions and 7 deletions
14
configure.in
14
configure.in
|
@ -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)
|
||||||
)
|
)
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
Loading…
Reference in a new issue