diff options
author | Brent Eagles <brent@zeroc.com> | 2006-06-05 16:03:09 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2006-06-05 16:03:09 +0000 |
commit | 64cc25d19077e937dac847c82b3ea62c5746a51e (patch) | |
tree | 80a8c6bc2594bef177acbdff14f342ee4b4283a9 /cpp/install/common/makewindist.py | |
parent | Added IceSSL::DistinguishedName (diff) | |
download | ice-64cc25d19077e937dac847c82b3ea62c5746a51e.tar.bz2 ice-64cc25d19077e937dac847c82b3ea62c5746a51e.tar.xz ice-64cc25d19077e937dac847c82b3ea62c5746a51e.zip |
- Changes to align dynamic filtering with the current Glacier2Filters wiki
proposal.
- Some 3.1.0 prep work for the VC 6.0 windows installers.
Diffstat (limited to 'cpp/install/common/makewindist.py')
-rwxr-xr-x | cpp/install/common/makewindist.py | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/cpp/install/common/makewindist.py b/cpp/install/common/makewindist.py index d601579d0d9..e5e1c952b69 100755 --- a/cpp/install/common/makewindist.py +++ b/cpp/install/common/makewindist.py @@ -73,7 +73,7 @@ def usage(): def environmentCheck(target): """Warning: uses global environment.""" - required = ["SOURCES", "BUILD_DIR", "DB_HOME", "PCRE_HOME", "BZIP2_HOME", "EXPAT_HOME", "OPENSSL_HOME"] + required = ["SOURCES", "BUILD_DIR", "DB_HOME", "BZIP2_HOME", "EXPAT_HOME", "OPENSSL_HOME"] if target == "vc60": required.append("STLPORT_HOME") elif target == "vc71": @@ -186,7 +186,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): os.path.join(stageDir, "bzip2", "dev", "lib"), os.path.join(stageDir, "expat", "dev", "lib"), os.path.join(stageDir, "openssl", "dev", "lib"), - os.path.join(stageDir, "pcre", "dev", "lib") ] if installVersion == "vc60": lib.append(os.path.join(stageDir, "stlport", "dev", "lib")) @@ -197,7 +196,6 @@ def buildIceDists(stageDir, sourcesDir, sourcesVersion, installVersion): os.path.join(stageDir, "bzip2", "dev", "include"), os.path.join(stageDir, "expat", "dev", "include"), os.path.join(stageDir, "openssl", "dev", "include"), - os.path.join(stageDir, "pcre", "dev", "include") ] if installVersion == "vc60": include.append(os.path.join(stageDir, "stlport", "dev", "include", "stlport")) @@ -307,9 +305,6 @@ def convertLicensesToRTF(toolDir, installTarget): # # The license file isn't quite right for this. # - pcre = (os.path.join(os.environ["PCRE_HOME"]), "AUTHORS", "Perl Compatible Regular Expressions (PCRE)", - "PCRE_LICENSE.rtf") - section_header = "License agreement for %s:\n" line_string = "-------------------------------------------------------------------------------------------" rtfhdr = file(os.path.join(toolDir, "docs", "rtf.hdr")).readlines() @@ -430,7 +425,6 @@ def buildMergeModules(startDir, stageDir, sourcesVersion, installVersion): ("ExpatRuntime", "EXPAT_RUNTIME"), ("OpenSSLDevKit", "OPENSSL_DEV_KIT"), ("OpenSSLRuntime", "OPENSSL_RUNTIME"), - ("PCREDevKit", "PCRE_DEV_KIT"), ("JGoodies", "JGOODIES_RUNTIME"), ("BerkeleyDBJava", "BERKELEYDB_JAVA") ] |