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) ) ;; *)