]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* config/ltmain.m4sh (func_mode_link): Allow five digits in
authorRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 4 Feb 2005 16:13:13 +0000 (16:13 +0000)
committerRalf Wildenhues <Ralf.Wildenhues@gmx.de>
Fri, 4 Feb 2005 16:13:13 +0000 (16:13 +0000)
version-info.

ChangeLog
config/ltmain.m4sh

index 207757ad5c7f68cfba96e9b67e4e476328c8eb37..2ce2b07d9bc186b9ff9d211d10ec351031c90ac7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2005-02-04  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
+       * config/ltmain.m4sh (func_mode_link): Allow five digits in
+       version-info. 
+
        * NEWS: s/Linux/GNU &/.
 
 2005-02-03  Reid Spencer  <reid@x10sys.com>,
index a7bfb0e6e0e3bae54418c472ae836d8977f16a41..2bd793e43b5372a5d8c4d7849bb6612430e1091f 100644 (file)
@@ -4,7 +4,7 @@ m4_divert_push([SCRIPT])# @configure_input@
 # ltmain.sh (GNU @PACKAGE@@TIMESTAMP@) @VERSION@
 # Written by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
 
-# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc.
+# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005 Free Software Foundation, Inc.
 # This is free software; see the source for copying conditions.  There is NO
 # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
@@ -4267,7 +4267,7 @@ func_mode_link ()
 
        # Check that each of the things are valid numbers.
        case $current in
-       0 | [[1-9]] | [[1-9]][[0-9]] | [[1-9]][[0-9]][[0-9]]) ;;
+       0|[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]][[0-9]]) ;;
        *)
          func_error "CURRENT \`$current' is not a nonnegative integer"
          func_fatal_error "\`$vinfo' is not valid version information"
@@ -4275,7 +4275,7 @@ func_mode_link ()
        esac
 
        case $revision in
-       0 | [[1-9]] | [[1-9]][[0-9]] | [[1-9]][[0-9]][[0-9]]) ;;
+       0|[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]][[0-9]]) ;;
        *)
          func_error "REVISION \`$revision' is not a nonnegative integer"
          func_fatal_error "\`$vinfo' is not valid version information"
@@ -4283,7 +4283,7 @@ func_mode_link ()
        esac
 
        case $age in
-       0 | [[1-9]] | [[1-9]][[0-9]] | [[1-9]][[0-9]][[0-9]]) ;;
+       0|[[1-9]]|[[1-9]][[0-9]]|[[1-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]]|[[1-9]][[0-9]][[0-9]][[0-9]][[0-9]]) ;;
        *)
          func_error "AGE \`$age' is not a nonnegative integer"
          func_fatal_error "\`$vinfo' is not valid version information"