diff options
author | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-07-28 21:46:41 (GMT) |
---|---|---|
committer | Bill Wendling <wendling@ncsa.uiuc.edu> | 2003-07-28 21:46:41 (GMT) |
commit | 5fea487a8807bc75b4ee01da7fe0486ad5249367 (patch) | |
tree | 1ea08ce6bbf4317828260df08bdcbcd82225bf5e /bin | |
parent | 0603e2db00e773702906387620e5644c23360703 (diff) | |
download | hdf5-5fea487a8807bc75b4ee01da7fe0486ad5249367.zip hdf5-5fea487a8807bc75b4ee01da7fe0486ad5249367.tar.gz hdf5-5fea487a8807bc75b4ee01da7fe0486ad5249367.tar.bz2 |
[svn-r7270] Purpose:
Update
Description:
Removed the re-autoconf of the fortran and c++ configures since they
don't exist anymore.
Misc. update:
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/h5vers | 12 |
1 files changed, 0 insertions, 12 deletions
@@ -172,14 +172,6 @@ die "unable to read file: $RELEASE\n" unless -r $file; my $CONFIGURE = $file; $CONFIGURE =~ s/[^\/]*$/..\/configure.in/; die "unable to read file: $CONFIGURE\n" unless -r $file; -# fortran/configure.in -my $FORTRAN_CONFIGURE = $file; -$FORTRAN_CONFIGURE =~ s/[^\/]*$/..\/fortran\/configure.in/; -die "unable to read file: $FORTRAN_CONFIGURE\n" unless -r $file; -# c++/configure.in -my $CXX_CONFIGURE = $file; -$CXX_CONFIGURE =~ s/[^\/]*$/..\/c++\/configure.in/; -die "unable to read file: $CXX_CONFIGURE\n" unless -r $file; # Get the current version number. open FILE, $file or die "unable to open $file: $!\n"; @@ -227,8 +219,6 @@ if ($set) { $README = ""; $RELEASE = ""; $CONFIGURE = ""; - $FORTRAN_CONFIGURE = ""; - $CXX_CONFIGURE = ""; @newver = @curver; } @@ -310,8 +300,6 @@ sub gen_configure { # Update the configure.in files and regenerate them gen_configure("HDF5", $CONFIGURE) if $CONFIGURE; -gen_configure("HDF5 Fortran", $FORTRAN_CONFIGURE) if $FORTRAN_CONFIGURE; -gen_configure("HDF5 C++", $CXX_CONFIGURE) if $CXX_CONFIGURE; # Print the new version number if ($verbose) { |