diff options
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/h5vers | 7 | ||||
-rwxr-xr-x | bin/trace | 3 |
2 files changed, 8 insertions, 2 deletions
@@ -4,6 +4,7 @@ exit #! perl require 5.003; +use strict; ### Copyright © 1998 NCSA. # Robb Matzke <matzke@llnl.gov> @@ -124,8 +125,9 @@ unless ($file) { ($file=$_,last) if -f $_; } } +die "unable to find source files\n" unless defined $file; die "unable to read file: $file\n" unless -r $file; -$README = $file; +my $README = $file; $README =~ s/[^\/]*$/..\/README/; die "unable to read file: $README\n" unless -r $file; @@ -136,6 +138,7 @@ close FILE; my (@curver) = getvers $contents; # Determine the new version number. +my @newver; #new version if ($set) { if ($set =~ /(\d+)\.(\d+)\.(\d+)/) { @newver = ($1, $2, $3); @@ -187,7 +190,7 @@ if ($newver[0]!=$curver[0] || # Update the README file if ($README) { open FILE, $README or die "$README: $!\n"; - @contents = <FILE>; + my @contents = <FILE>; close FILE; $contents[0] = sprintf("This is hdf5-%d.%d.%d currently under development\n", @newver); @@ -53,9 +53,12 @@ $Source = ""; "void*" => "x", "FILE*" => "x", "H5A_operator_t" => "x", + "H5D_operator_t" => "x", "H5E_auto_t" => "x", "H5E_walk_t" => "x", "H5G_iterate_t" => "x", + "H5MM_allocate_t" => "x", + "H5MM_free_t" => "x", "H5T_cdata_t**" => "x", "H5T_conv_t" => "x", "H5T_overflow_t" => "x", |