diff options
author | Brent Eagles <brent@zeroc.com> | 2007-03-07 01:39:22 +0000 |
---|---|---|
committer | Brent Eagles <brent@zeroc.com> | 2007-03-07 01:39:22 +0000 |
commit | 7c53b2f69cb9b2969b937355de15d4243386bbe1 (patch) | |
tree | 73842eef63fac50d299f5805b4839ea30418e712 /cpp/install | |
parent | Bug 1980 (diff) | |
download | ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.tar.bz2 ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.tar.xz ice-7c53b2f69cb9b2969b937355de15d4243386bbe1.zip |
fixing bug 1971
Diffstat (limited to 'cpp/install')
-rwxr-xr-x | cpp/install/common/components.py | 2 | ||||
-rwxr-xr-x | cpp/install/vc60/doc/README.txt | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/cpp/install/common/components.py b/cpp/install/common/components.py index d9962bc688a..58a595f761c 100755 --- a/cpp/install/common/components.py +++ b/cpp/install/common/components.py @@ -60,6 +60,7 @@ def fixVersion(file, argsHash): return version = argsHash['version'] + libversion = argsHash['dllversion'] origfile = file + ".orig" os.rename(file, origfile) @@ -67,6 +68,7 @@ def fixVersion(file, argsHash): newFile = open(file, "w") line = oldFile.read(); line = re.sub("@ver@", version, line) + line = re.sub("@libver@", libversion, line) newFile.write(line) newFile.close() oldFile.close() diff --git a/cpp/install/vc60/doc/README.txt b/cpp/install/vc60/doc/README.txt index 49b6eee1f7a..5dd5c6b128f 100755 --- a/cpp/install/vc60/doc/README.txt +++ b/cpp/install/vc60/doc/README.txt @@ -313,12 +313,12 @@ Apache1 and Apache2: bzip2.dll
icecpp.exe
- ice32b.dll
- iceutil32b.dll
+ ice@libver@.dll
+ iceutil@libver@.dll
msvcp60.dll
msvcrt.dll
php_ice.dll
- slice32b.dll
+ slice@libver@.dll
stlport_vc646.dll
NOTE: If you modify the System PATH, you will need to restart your
|