From: Gary V. Vaughan Date: Fri, 29 Jun 2001 01:43:19 +0000 (+0000) Subject: From Bruno Haible X-Git-Tag: release-1-4-1~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dee913be5b92bfcd000ea8146b412d6a2bad8531;p=thirdparty%2Flibtool.git From Bruno Haible * NEWS: Updated. * libtool.m4 (_LT_AC_LTCONFIG_HACK): Make sure ac_objext is set to `lo' when testing for compiler output to *.lo filenames. --- diff --git a/ChangeLog b/ChangeLog index 81a07f656..4f333b246 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ -2001-06-28 Gary V. Vaughan +2001-06-29 Gary V. Vaughan + + From Bruno Haible + * NEWS: Updated. + * libtool.m4 (_LT_AC_LTCONFIG_HACK): Make sure ac_objext is + set to `lo' when testing for compiler output to *.lo filenames. +2001-06-28 Gary V. Vaughan + From Alexander Bluhm * libltdl/ltdl.c (lt_dlopen): Fix bad memory initialisation assumptions. diff --git a/NEWS b/NEWS index 4ca29a982..c85bf2aec 100644 --- a/NEWS +++ b/NEWS @@ -3,6 +3,8 @@ NEWS - list of user-visible changes between releases of GNU Libtool New in 1.4.1: 2001-??-??; CVS version 1.4.0a, Libtool team: * Don't leave here-doc files behind. * Improved support for OpenBSD. +* Libtool will build with autoconf-2.50. +* Plug memory management bugs in libltdl. New in 1.4: 2001-04-25; CVS version 1.3e, Libtool team: * Support for aix5*. diff --git a/libtool.m4 b/libtool.m4 index d6702737b..119510e4c 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -1063,6 +1063,8 @@ if test x"$compiler_c_o" = x"yes"; then lt_cv_compiler_o_lo=no save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -c -o conftest.lo" + save_objext="$ac_objext" + ac_objext=lo AC_TRY_COMPILE([], [int some_variable = 0;], [dnl # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings @@ -1072,6 +1074,7 @@ if test x"$compiler_c_o" = x"yes"; then lt_cv_compiler_o_lo=yes fi ]) + ac_objext="$save_objext" CFLAGS="$save_CFLAGS" ]) compiler_o_lo=$lt_cv_compiler_o_lo