Commit 3e9ac99f authored by Christian Heimes's avatar Christian Heimes

Backport of fixes from py3k branch

svn merge -r59131:HEAD ../../py3k/PCbuild9/ .
parent ffcd1e10
This diff is collapsed.
......@@ -131,6 +131,13 @@ def fix_makefile(makefile):
line = "CP=copy\n"
if line.startswith("MKDIR="):
line = "MKDIR=mkdir\n"
if line.startswith("CFLAG="):
line = line.strip()
for algo in ("RC5", "MDC2", "IDEA"):
noalgo = " -DOPENSSL_NO_%s" % algo
if noalgo not in line:
line = line + noalgo
line = line + '\n'
fout.write(line)
def run_configure(configure, do_script):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment