]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* mdemo/configure.in: Move AC_LIBLTDL_CONVENIENCE before
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Thu, 29 Apr 1999 10:17:14 +0000 (10:17 +0000)
committerAlexandre Oliva <aoliva@redhat.com>
Thu, 29 Apr 1999 10:17:14 +0000 (10:17 +0000)
AM_PROG_LIBTOOL, as suggested by autoconf.

ChangeLog
mdemo/configure.in

index 5df52b272f3f4468c602179291df92bb5376924e..c04b0958e13ead378bd7e7fb1f3516eaaefa9312 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 1999-04-29  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
+       * mdemo/configure.in: Move AC_LIBLTDL_CONVENIENCE before
+       AM_PROG_LIBTOOL, as suggested by autoconf.
+
        * doc/libtool.texi (Distributing libltdl): Document that -static
        may cause the same problems on libltdl as -all-static.
        * TODO: We might want to fix this in the future.
index cc46255e0e4f6a55a0ac0678ad67d98dc76b2a0c..c01bdf2645928676644fe01ec56e6beebc9f2535 100644 (file)
@@ -6,9 +6,6 @@ AM_INIT_AUTOMAKE(mdemo,0.1)
 AC_PROG_CC
 AC_C_CONST
 AC_EXEEXT
-AC_LIBTOOL_DLOPEN
-AM_PROG_LIBTOOL
-AC_SUBST(LIBTOOL_DEPS)
 
 dnl AC_LIBLTDL_CONVENIENCE(['${top_builddir}/../libltdl'])
 dnl Since the package is flat, we need not use the line above,
@@ -17,6 +14,10 @@ dnl on demand even with broken makes
 AC_LIBLTDL_CONVENIENCE(../libltdl)
 AC_SUBST(LIBLTDL)
 
+AC_LIBTOOL_DLOPEN
+AM_PROG_LIBTOOL
+AC_SUBST(LIBTOOL_DEPS)
+
 if ${CONFIG_SHELL} ./libtool --features | grep "enable static" >/dev/null; then
   STATIC=-static
 else