diff options
author | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2008-08-14 01:33:44 +0000 |
---|---|---|
committer | Hirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp> | 2008-08-14 01:33:44 +0000 |
commit | eea8eda317ded5c519e663237c9850482c2cb06e (patch) | |
tree | cdcfdd96fbcbd67df27a40bf0383d9f4c390c37e /PC/VC6/build_ssl.py | |
parent | 581a1495a1af39f7268343108533eb83b2b34b6b (diff) | |
download | cpython-git-eea8eda317ded5c519e663237c9850482c2cb06e.tar.gz |
Issue #2065: VC6 related fix.
- PC/VC6/_bsddb.dsp:
removed '/nodefaultlib:"msvcrt"' to fix linker error.
- PC/VC6/_msi.dsp, PC/VC6/pcbuild.dsw:
added new module support.
- PC/VC6/_sqlite3.dsp:
/D "MODULE_NAME=\"sqlite3\""
caused extra leading space like
#define MODULE_NAME " sqlite3"
so uses
/D MODULE_NAME=\"sqlite3\"
instead.
- PC/VC6/python.dsp:
changed stack size to 2MB to avoid stack overflow on
some tests.
Diffstat (limited to 'PC/VC6/build_ssl.py')
-rw-r--r-- | PC/VC6/build_ssl.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/PC/VC6/build_ssl.py b/PC/VC6/build_ssl.py index 74f03831de..737b39766a 100644 --- a/PC/VC6/build_ssl.py +++ b/PC/VC6/build_ssl.py @@ -8,7 +8,7 @@ # directory. It is likely you will already find the zlib library and # any other external packages there. # * Install ActivePerl and ensure it is somewhere on your path. -# * Run this script from the PCBuild directory. +# * Run this script from the PC/VC6 directory. # # it should configure and build SSL, then build the ssl Python extension # without intervention. |