]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/m4/ltdl.m4 (LT_WITH_LTDL): Don't nest AC_MSG_CHECKING/
authorGary V. Vaughan <gary@gnu.org>
Fri, 14 Oct 2005 15:43:08 +0000 (15:43 +0000)
committerGary V. Vaughan <gary@gnu.org>
Fri, 14 Oct 2005 15:43:08 +0000 (15:43 +0000)
AC_MSG_RESULT pairs.

ChangeLog
libltdl/m4/ltdl.m4

index 6d911b23428e1977ce5f1838c4175cfd72ad89b0..d59a2594a9a531a7eaa5aedd7e09ebeb09a08260 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-10-14  Gary V. Vaughan  <gary@gnu.org>
+
+       * libltdl/m4/ltdl.m4 (LT_WITH_LTDL): Don't nest AC_MSG_CHECKING/
+       AC_MSG_RESULT pairs.
+
 2005-10-14  Gary V. Vaughan  <gary@gnu.org>
 
        * tests/subproject.at: Move 'touch config.h.in' invocation.
index 9d98aec3667af7b542fffb704e69754157edb272..7c2a0b8843f5b78deac5220e691b8178b452561e 100644 (file)
@@ -158,7 +158,6 @@ AC_ARG_WITH([included_ltdl],
 if test "x$with_included_ltdl" != xyes; then
   # We are not being forced to use the included libltdl sources, so
   # decide whether there is a useful installed version we can use.
-  AC_MSG_CHECKING([for lt_dlinterface_register in ltdl.h])
   lt_dlinterface_register_found=no
   AC_CHECK_HEADER([ltdl.h],
       [AC_CHECK_LIB([ltdl], [lt_dlinterface_register],
@@ -168,6 +167,7 @@ if test "x$with_included_ltdl" != xyes; then
       [],
       [AC_INCLUDES_DEFAULT]
   )
+  AC_MSG_CHECKING([for lt_dlinterface_register in ltdl.h])
   test "x$with_included_ltdl" = xno && lt_dlinterface_register_found=yes
   AC_MSG_RESULT([$lt_dlinterface_register_found])
 fi