[svn-r22984] Removed references to windows files for legacy builds with Visual Studio that were removed.

Tested on jam.
This commit is contained in:
Larry Knox 2012-10-27 22:39:07 -05:00
parent 88885a82ae
commit 57d23e5062

View File

@ -187,10 +187,6 @@ die "unable to read file: $RELEASE\n" unless -r $file;
my $CONFIGURE = $file; my $CONFIGURE = $file;
$CONFIGURE =~ s/[^\/]*$/..\/configure.ac/; $CONFIGURE =~ s/[^\/]*$/..\/configure.ac/;
die "unable to read file: $CONFIGURE\n" unless -r $file; die "unable to read file: $CONFIGURE\n" unless -r $file;
# windows/src/H5pubconf.h
my $H5PUBCONF = $file;
$H5PUBCONF =~ s/[^\/]*$/..\/windows\/src\/H5pubconf.h/;
die "unable to read file: $H5PUBCONF\n" unless -r $file;
# vms/src/h5pubconf.h # vms/src/h5pubconf.h
my $H5VMSPUBCONF = $file; my $H5VMSPUBCONF = $file;
$H5VMSPUBCONF =~ s/[^\/]*$/..\/vms\/src\/h5pubconf.h/; $H5VMSPUBCONF =~ s/[^\/]*$/..\/vms\/src\/h5pubconf.h/;
@ -242,7 +238,6 @@ if ($set) {
$README = ""; $README = "";
$RELEASE = ""; $RELEASE = "";
$CONFIGURE = ""; $CONFIGURE = "";
$H5PUBCONF = "";
$H5VMSPUBCONF = ""; $H5VMSPUBCONF = "";
$LT_VERS = ""; $LT_VERS = "";
@newver = @curver; @newver = @curver;
@ -392,9 +387,6 @@ sub gen_h5pubconf {
close FILE; close FILE;
} }
# Update the Windows-maintained H5pubconf.h file
gen_h5pubconf("HDF5", $H5PUBCONF, @newver) if $H5PUBCONF;
# Update the VMS-maintained h5pubconf.h file # Update the VMS-maintained h5pubconf.h file
gen_h5pubconf("HDF5", $H5VMSPUBCONF, @newver) if $H5VMSPUBCONF; gen_h5pubconf("HDF5", $H5VMSPUBCONF, @newver) if $H5VMSPUBCONF;