From: Gary V. Vaughan Date: Thu, 18 Feb 1999 15:24:03 +0000 (+0000) Subject: * ltmain.in (version_type): Oops. Irix versioning implies that X-Git-Tag: release-1-2f~117 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4fba23e37b8d5721026886771de2bbfbdc118ba5;p=thirdparty%2Flibtool.git * ltmain.in (version_type): Oops. Irix versioning implies that major version numbers are 1 based (not zero based). Fixed. --- diff --git a/ChangeLog b/ChangeLog index 2f9dc85a6..71fce9114 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1999-02-18 Gary V. Vaughan + * ltmain.in (version_type): Oops. Irix versioning implies that + major version numbers are 1 based (not zero based). Fixed. + * ltmain.in (version_type): Implement irix versioning. * ltconfig.in (irix{5,6}*): Use new irix shared object versioning. * TODO: remove irix versioning from TODO list. diff --git a/ltmain.in b/ltmain.in index 6dc32023e..461660c17 100644 --- a/ltmain.in +++ b/ltmain.in @@ -1619,7 +1619,7 @@ compiler." none) ;; irix) - major=`expr $current - $age` + major=`expr $current - $age + 1` versuffix="$major.$revision" verstring="sgi$major.$revision"