diff options
author | Christian Heimes <christian@cheimes.de> | 2013-06-14 13:40:28 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-06-14 13:40:28 (GMT) |
commit | c81549f476af48143aee24964ec07b849af109f9 (patch) | |
tree | 954c895770da3f8ae1712a30e7df303ed40f6e77 | |
parent | 31b1c8bbde529ce6c1e47259d5adf2425ca7c06f (diff) | |
download | cpython-c81549f476af48143aee24964ec07b849af109f9.zip cpython-c81549f476af48143aee24964ec07b849af109f9.tar.gz cpython-c81549f476af48143aee24964ec07b849af109f9.tar.bz2 |
Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 on Windows
-rw-r--r-- | Misc/NEWS | 5 | ||||
-rw-r--r-- | PCbuild/readme.txt | 7 |
2 files changed, 10 insertions, 2 deletions
@@ -126,6 +126,11 @@ Tools/Demos - Issue #15239: Make mkstringprep.py work again on Python 3. +Build +----- + +- Issue #15172: Document NASM 2.10+ as requirement for building OpenSSL 1.0.1 + on Windows. What's New in Python 3.3.2? =========================== diff --git a/PCbuild/readme.txt b/PCbuild/readme.txt index 2efe249..89fca3e 100644 --- a/PCbuild/readme.txt +++ b/PCbuild/readme.txt @@ -152,9 +152,12 @@ _ssl You can (theoretically) use any version of OpenSSL you like - the build process will automatically select the latest version. - You must install the NASM assembler from + You must install the NASM assembler 2.10 or newer from http://nasm.sf.net - for x86 builds. Put nasmw.exe anywhere in your PATH. + for x86 builds. Put nasmw.exe anywhere in your PATH. More recent + versions of OpenSSL may need a later version of NASM. If OpenSSL's self + tests don't pass, you should first try to update NASM and do a full + rebuild of OpenSSL. Note: recent releases of nasm only have nasm.exe. Just rename it to nasmw.exe. |