summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorG. Branden Robinson <g.branden.robinson@gmail.com>2023-07-29 10:10:00 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2023-08-19 12:54:26 -0700
commit188991fe7e41bbf2f384d0875ab2e25c936b0b41 (patch)
tree01889669598bd9808cf0df4b22bf078e2739e1f9
parent70f44d76fd8fad96f33ba5c80a394d68b77dda03 (diff)
configure script reports stray, confusing "yes"
Closes issue #194 Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 045dbb87..17a8ebce 100644
--- a/configure.ac
+++ b/configure.ac
@@ -98,7 +98,6 @@ m4_pattern_forbid([^XTRANS_CONNECTION_FLAGS$])
XTRANS_CONNECTION_FLAGS
# Check for dlopen
-AC_MSG_CHECKING([if run-time linking is supported])
AC_SEARCH_LIBS(dlopen,[dl svld])
if test "x$ac_cv_search_dlopen" = xno; then
AC_SEARCH_LIBS(shl_load,[dld])
@@ -111,6 +110,7 @@ else
AC_DEFINE(HAVE_DLOPEN,1,[Use dlopen to load shared libraries])
AC_CHECK_HEADERS([dlfcn.h])
fi
+AC_MSG_CHECKING([if run-time linking is supported])
if test "x$ac_cv_header_dlfcn_h" = xyes -o "x$ac_cv_header_dl_h" = xyes; then
HAVE_LOADABLE_MODULES=yes
else