summaryrefslogtreecommitdiff
path: root/oowintool
diff options
context:
space:
mode:
authorTor Lillqvist <tlillqvist@novell.com>2010-10-28 14:58:15 +0300
committerTor Lillqvist <tml@hemulen.(none)>2010-10-28 15:15:15 +0300
commit153fc2b046f01c16bc9d3f28b2cc3e60ecb3b6b2 (patch)
treef1b5e64a1f6e471f9b0da0b743867805c3495a5f /oowintool
parentf87611e9a2cbe535a83bc50a89d304e5aa39d528 (diff)
Slight cleanup of the Windows stuff
Use correct terminology for the Microsoft compilers, ".NET" was a part of their name only in the 2003 version. Drop support for the 2003 and 2005 versions. The Platform SDK has been called the Windows SDK for quite a while. Etc.
Diffstat (limited to 'oowintool')
-rwxr-xr-xoowintool55
1 files changed, 2 insertions, 53 deletions
diff --git a/oowintool b/oowintool
index c9e08107af96..89762d675b24 100755
--- a/oowintool
+++ b/oowintool
@@ -120,55 +120,6 @@ sub print_psdk_home()
print cygpath ($value, 'w', $output_format);
}
-my %msvc_net_2003 = (
- 'ver' => '7.1',
- 'key' => 'Microsoft/VisualStudio/7.1/Setup/VC/ProductDir',
- 'instmsi_path' => '../Common7/Tools/Deployment/MsiRedist',
- 'dll_path' => '../Visual Studio .NET Professional 2003 - English',
- 'dll_suffix' => '71'
-);
-my %msvs_net_2003 = (
- 'ver' => '7.1',
- 'key' => 'Microsoft/VisualStudio/7.1/Setup/VS/ProductDir',
- 'instmsi_path' => 'Common7/Tools/Deployment/MsiRedist',
- 'dll_path' => 'Visual Studio .NET Professional 2003 - English',
- 'dll_suffix' => '71'
-);
-my %msvs_net_2003_ea = (
- 'ver' => '7.1',
- 'key' => 'Microsoft/VisualStudio/7.1/Setup/VS/ProductDir',
- 'instmsi_path' => 'Common7/Tools/Deployment/MsiRedist',
- 'dll_path' => 'Visual Studio .NET Enterprise Architect 2003 - English', # testme ...
- 'dll_suffix' => '71'
-);
-my %msvs_express_2005 = (
- 'ver' => '8.0',
- 'key' => 'Microsoft/VCExpress/8.0/Setup/VS/ProductDir',
- 'instmsi_path' => '../SDK/v2.0/BootStrapper/Packages/InstMSI',
- 'dll_path' => '../SDK/v2.0/Bin',
- 'dll_suffix' => '80'
-);
-my %msvc_express_2005 = (
- 'ver' => '8.0',
- 'key' => 'Microsoft/VCExpress/8.0/Setup/VC/ProductDir',
- 'instmsi_path' => '../SDK/v2.0/BootStrapper/Packages/InstMSI',
- 'dll_path' => '../SDK/v2.0/Bin',
- 'dll_suffix' => '80'
-);
-my %msvs_2005 = (
- 'ver' => '8.0',
- 'key' => 'Microsoft/VisualStudio/8.0/Setup/VS/ProductDir',
- 'instmsi_path' => 'SDK/v2.0/BootStrapper/Packages/InstMSI',
- 'dll_path' => 'Visual Studio .NET Professional 2005 - English',
- 'dll_suffix' => '80'
-);
-my %msvc_2005 = (
- 'ver' => '8.0',
- 'key' => 'Microsoft/VisualStudio/8.0/Setup/VC/ProductDir',
- 'instmsi_path' => '../SDK/v2.0/BootStrapper/Packages/InstMSI',
- 'dll_path' => '../SDK/v2.0/Bin',
- 'dll_suffix' => '80'
-);
my %msvs_2008 = (
'ver' => '9.0',
'key' => 'Microsoft/VisualStudio/9.0/Setup/VS/ProductDir',
@@ -197,7 +148,6 @@ my %msvc_express_2008 = (
'dll_path' => 'redist/x86/Microsoft.VC90.CRT',
'dll_suffix' => '90'
);
-
my %msvs_2010 = (
'ver' => '10.0',
'key' => 'Microsoft/VisualStudio/10.0/Setup/VS/ProductDir',
@@ -205,7 +155,6 @@ my %msvs_2010 = (
'dll_path' => 'VC/redist/x86/Microsoft.VC100.CRT',
'dll_suffix' => '100'
);
-
my %msvc_2010 = (
'ver' => '10.0',
'key' => 'Microsoft/VisualStudio/10.0/Setup/VC/ProductDir',
@@ -216,7 +165,7 @@ my %msvc_2010 = (
sub find_msvs()
{
- my @ms_versions = ( \%msvs_2008, \%msvs_express_2008, \%msvs_2005, \%msvs_express_2005,\%msvs_net_2003_ea, \%msvs_net_2003, \%msvs_2010 );
+ my @ms_versions = ( \%msvs_2008, \%msvs_express_2008, \%msvs_2010 );
for $ver (@ms_versions)
{
@@ -231,7 +180,7 @@ sub find_msvs()
sub find_msvc()
{
- my @ms_versions = ( \%msvc_2008, \%msvc_express_2008, \%msvc_2005, \%msvc_express_2005, \%msvc_net_2003, \%msvc_2010 );
+ my @ms_versions = ( \%msvc_2008, \%msvc_express_2008, \%msvc_2010 );
for $ver (@ms_versions)
{