]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/configure.in: the sed expression for finding the shared
authorThomas Tanner <tanner@gmx.de>
Tue, 23 Mar 1999 16:25:30 +0000 (16:25 +0000)
committerGary V. Vaughan <gary@gnu.org>
Tue, 23 Mar 1999 16:25:30 +0000 (16:25 +0000)
library extension used to think the . in [.] for the cygwin
shared_library_names_spec was the start of the extension!!  We now
remove anything in square brackets (assuming that the square
brackets delimit a sed or expr expression which is not part of the
extension) before looking for the extension.

ChangeLog
libltdl/configure.in

index 0f740f99f3cd57533080acfd3d157f6b30ef5a27..d62a6c4b2c33f3b5f8772fc4f7100d9ac9bc961c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,15 @@
        * ltmain.in: don't allow relative run-paths, fixed a typo in a warning,
          ignore -dlopen self for libraries and objects
 
+1999-03-23  Gary V. Vaughan  <gvaughan@oranda.demon.co.uk>
+
+       * libltdl/configure.in: the sed expression for finding the shared
+       library extension used to think the . in [.] for the cygwin
+       shared_library_names_spec was the start of the extension!!  We now
+       remove anything in square brackets (assuming that the square
+       brackets delimit a sed or expr expression which is not part of the
+       extension) before looking for the extension.
+
 1999-03-21  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
        * tests/build-relink.test: if we relink and have hardcode_direct, 
index 0d3b45351efa498427932fc2134031c4eecd6081..2a0bb859c39eaec9fbc67ff8a2393c8fad0254b3 100644 (file)
@@ -42,7 +42,7 @@ AC_CACHE_CHECK([which extension is used for shared libraries],
   done
   rm -f conftest
 changequote(, )
-  echo "$last" | sed 's/^[^.]*//;s/\$.*$//;s/\.$//' > conftest
+  echo "$last" | sed 's/\[.*\]//;s/^[^.]*//;s/\$.*$//;s/\.$//' > conftest
 changequote([, ])
 )
 libltdl_cv_shlibext=`cat conftest`