diff options
Diffstat (limited to 'bin/make_vers')
-rwxr-xr-x | bin/make_vers | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/bin/make_vers b/bin/make_vers index c6d2c04..4de2dbd 100755 --- a/bin/make_vers +++ b/bin/make_vers @@ -1,6 +1,5 @@ -#!/usr/bin/env perl +#!/usr/bin/perl -w require 5.003; -use warnings; # Global settings # (The max_idx parameter is the only thing that needs to be changed when adding @@ -8,8 +7,8 @@ use warnings; # is added (like support for 1.4, etc), the min_sup_idx parameter will # need to be decremented. - QAK) -# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, 6 = 1.12, 7 = 1.14, etc) -$max_idx = 7; +# Max. library "index" (0 = v1.0, 1 = 1.2, 2 = 1.4, 3 = 1.6, 4 = 1.8, 5 = 1.10, 6 = 1.12, etc) +$max_idx = 6; # Min. supported previous library version "index" (0 = v1.0, 1 = 1.2, etc) $min_sup_idx = 3; |