From: Gary V. Vaughan Date: Fri, 15 Sep 2000 02:43:45 +0000 (+0000) Subject: * ltmain.in (version_type): Use "-iface" as the windows X-Git-Tag: multi-language-merge-point~135 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=7bc0669fe58f85a1cddd9c8378248e17369bcccf;p=thirdparty%2Flibtool.git * ltmain.in (version_type): Use "-iface" as the windows versioning scheme, where iface is the number of the oldest interface supported. --- diff --git a/ChangeLog b/ChangeLog index d57159e40..e5cf109e9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-09-15 Gary V. Vaughan + + * ltmain.in (version_type): Use "-iface" as the windows + versioning scheme, where iface is the number of the oldest + interface supported. + 2000-09-14 Gary V. Vaughan From Paul Sokolovsky diff --git a/ltmain.in b/ltmain.in index 8ad54b049..8972758b8 100644 --- a/ltmain.in +++ b/ltmain.in @@ -2481,10 +2481,10 @@ EOF ;; windows) - # Like Linux, but with '-' rather than '.', since we only - # want one extension on Windows 95. + # Use '-' rather than '.', since we only want one + # extension on DOS 8.3 filesystems. major=`expr $current - $age` - versuffix="-$major-$age-$revision" + versuffix="-$major" ;; *)