summaryrefslogtreecommitdiff
path: root/cpp/install/common/makewindist.py
diff options
context:
space:
mode:
authorMichi Henning <michi@zeroc.com>2006-12-23 00:58:50 +0000
committerMichi Henning <michi@zeroc.com>2006-12-23 00:58:50 +0000
commit1e065c5aa287ac46145337ee94ed0338f9f149be (patch)
tree910443c1254e45a2763faab96b419cc6b52eec1f /cpp/install/common/makewindist.py
parentUpdated CHANGES file. (diff)
downloadice-1e065c5aa287ac46145337ee94ed0338f9f149be.tar.bz2
ice-1e065c5aa287ac46145337ee94ed0338f9f149be.tar.xz
ice-1e065c5aa287ac46145337ee94ed0338f9f149be.zip
Removed support for .NET 1.1 and Visual Studio 2003.
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-xcpp/install/common/makewindist.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py
index 6769934b48e..20facf57a7f 100755
--- a/cpp/install/common/makewindist.py
+++ b/cpp/install/common/makewindist.py
@@ -242,7 +242,7 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), False)
runprog("nmake /f Makefile.mak")
- if installVersion in ["vc80", "vc71"]:
+ if installVersion in ["vc80"]:
#
# Ice for C#
#
@@ -250,8 +250,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
print "Building in " + os.getcwd() + "..."
setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), False)
setDebug(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True)
- if installVersion == "vc71":
- setMakefileOption(os.path.join(os.getcwd(), "config", "Make.rules.mak"), "DOTNET_1", True)
runprog("nmake /f Makefile.mak")
@@ -261,8 +259,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
os.chdir(os.path.join(sourcesDir, "debug", "IceVB-" + sourcesVersion))
print "Building in " + os.getcwd() + "..."
setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), False)
- if installVersion == "vc71":
- setMakefileOption(os.path.join(os.getcwd(), "config", "Make.rules.mak"), "DOTNET_1", True)
f = fileinput.input(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True)
for l in f:
i = l.find("icecs")
@@ -282,8 +278,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
print "Building in " + os.getcwd() + "..."
setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True)
setDebug(os.path.join(os.getcwd(), "config", "Make.rules.mak"), False)
- if installVersion == "vc71":
- setMakefileOption(os.path.join(os.getcwd(), "config", "Make.rules.mak"), "DOTNET_1", True)
runprog("nmake /f Makefile.mak")
#
@@ -292,8 +286,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion):
os.chdir(os.path.join(sourcesDir, "release", "IceVB-" + sourcesVersion))
print "Building in " + os.getcwd() + "..."
setOptimize(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True)
- if installVersion == "vc71":
- setMakefileOption(os.path.join(os.getcwd(), "config", "Make.rules.mak"), "DOTNET_1", True)
f = fileinput.input(os.path.join(os.getcwd(), "config", "Make.rules.mak"), True)
for l in f:
i = l.find("icecs")