From: Alexandre Oliva Date: Thu, 29 Apr 1999 10:17:14 +0000 (+0000) Subject: * mdemo/configure.in: Move AC_LIBLTDL_CONVENIENCE before X-Git-Tag: release-1-3~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e1b8a67341382d7b80887e7a822a86253a84140d;p=thirdparty%2Flibtool.git * mdemo/configure.in: Move AC_LIBLTDL_CONVENIENCE before AM_PROG_LIBTOOL, as suggested by autoconf. --- diff --git a/ChangeLog b/ChangeLog index 5df52b272..c04b0958e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-04-29 Alexandre Oliva + * 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. diff --git a/mdemo/configure.in b/mdemo/configure.in index cc46255e0..c01bdf264 100644 --- a/mdemo/configure.in +++ b/mdemo/configure.in @@ -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