From: Thomas Tanner Date: Sat, 3 Apr 1999 00:37:27 +0000 (+0000) Subject: * NEWS: updated X-Git-Tag: release-1-3~80 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f407a5d4e8fd2f7baf4d2c4ebf990470d4d5e98e;p=thirdparty%2Flibtool.git * NEWS: updated * libtool.m4: check for main in libm instead of cos * ltmain.in: cosmetic fixes --- diff --git a/ChangeLog b/ChangeLog index 6d184b96d..e80b9a069 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +1999-04-03 Thomas Tanner + + * NEWS: updated + * libtool.m4: check for main in libm instead of cos + * ltmain.in: cosmetic fixes + 1999-04-02 Alexandre Oliva * ltmain.in (convenience): fixed race condition when more than one diff --git a/NEWS b/NEWS index 0ca214b9d..4f5e91a61 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,16 @@ NEWS - list of user-visible changes between releases of GNU Libtool -New in 1.3: 1999-03-??; CVS version 1.2g, Libtool team: +New in 1.3: 1999-04-??; CVS version 1.2g, Libtool team: +* AM_PROG_LIBTOOL is smaller and faster +* Shared libraries on AmigaOS up to version 4 are now disabled + since they don't meet libtool's requirements for shared libraries +* -L supports now relative directories +* Libltdl has a new license: LGPL with a special exception +* Libltdl can be used as stand-alone package * dlopen support for BeOS * Improved support for BeOS and Cygwin * Documentation updates +* New tests * Bugfixes New in 1.2f: 1999-03-15; CVS version 1.2e, Libtool team: diff --git a/libtool.m4 b/libtool.m4 index eed89b4ae..2e20e203d 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -359,10 +359,10 @@ case "$host" in ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") + AC_CHECK_LIB(m, main, LIBM="$LIBM -lm") ;; *) - AC_CHECK_LIB(m, cos, LIBM="-lm") + AC_CHECK_LIB(m, main, LIBM="-lm") ;; esac ]) diff --git a/ltconfig.in b/ltconfig.in index 20aee936a..6824d134a 100755 --- a/ltconfig.in +++ b/ltconfig.in @@ -1154,7 +1154,7 @@ else if test "$with_gcc" = yes; then collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && \ - strings "$collect2name" | grep resolve_lib_name >/dev/null + strings "$collect2name" | grep resolve_lib_name >/dev/null then # We have reworked collect2 hardcode_direct=yes diff --git a/ltmain.in b/ltmain.in index c7456893e..79ba038d2 100644 --- a/ltmain.in +++ b/ltmain.in @@ -1294,24 +1294,24 @@ compiler." # Skip directories that are in the system default run-time # search path, unless they have been requested with -R. case " $sys_lib_dlsearch_path " in - *" $absdir "*) ;; + *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; - esac + esac case " $sys_lib_dlsearch_path " in - *" $libdir "*) ;; + *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; - esac + esac lib_linked=yes case "$hardcode_action" in