]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libltdl/configure.in: the sed expression for finding the shared
authorGary V. Vaughan <gary@gnu.org>
Tue, 23 Mar 1999 12:55:43 +0000 (12:55 +0000)
committerGary V. Vaughan <gary@gnu.org>
Tue, 23 Mar 1999 12:55:43 +0000 (12:55 +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.

* TODO (cygwin):  food for thought re: mutually dependant dlls.

ChangeLog
libltdl/configure.in

index cc934bfa163cf567c395fd3065414c01855fc782..dbb54be9bb1108394e5d6fa18b0f00a6dd847ccb 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,13 @@
 1999-03-23  Gary V. Vaughan  <gvaughan@oranda.demon.co.uk>
 
-       * TODO (cygwin):  food for though re: mutually dependant dlls.
+       * 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.
+
+       * TODO (cygwin):  food for thought re: mutually dependant dlls.
 
 1999-03-21  Alexandre Oliva  <oliva@dcc.unicamp.br>
 
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`