summaryrefslogtreecommitdiffstats
path: root/bin/make_vers
diff options
context:
space:
mode:
authorAllen Byrne <byrn@hdfgroup.org>2018-08-16 20:06:29 (GMT)
committerAllen Byrne <byrn@hdfgroup.org>2018-08-16 20:06:29 (GMT)
commit12adeedf6b817d99d00051d0549448f52a65c6a4 (patch)
tree969ec6ca3a4c5612c8459bf730be561b04a85f7a /bin/make_vers
parent8e92fd2b3608649b6b4b14bd31220bda88771cd7 (diff)
downloadhdf5-12adeedf6b817d99d00051d0549448f52a65c6a4.zip
hdf5-12adeedf6b817d99d00051d0549448f52a65c6a4.tar.gz
hdf5-12adeedf6b817d99d00051d0549448f52a65c6a4.tar.bz2
HDFFV-10552 fix version script (missed when 1.11 created)
Diffstat (limited to 'bin/make_vers')
-rwxr-xr-xbin/make_vers6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/make_vers b/bin/make_vers
index 7e7fba1..4de2dbd 100755
--- a/bin/make_vers
+++ b/bin/make_vers
@@ -7,8 +7,8 @@ require 5.003;
# 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, etc)
-$max_idx = 5;
+# 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;
@@ -478,7 +478,7 @@ for $file (@ARGV) {
}
}
close SOURCE;
-
+
# Create header files
print "Generating '", $prefix, "H5version.h'\n";
create_public($prefix);