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

Implemented request from Marc-Andre Lemburg

For license reasons Python must not ship with IDEA, RC5 and MDC2. The latter are disabled by default but IDEA is enabled by default.
parent 96e1afcd
......@@ -131,6 +131,11 @@ def fix_makefile(makefile):
line = "CP=copy\n"
if line.startswith("MKDIR="):
line = "MKDIR=mkdir\n"
if line.startswith("CFLAG="):
for algo in ("RC5", "MDC2", "IDEA"):
noalgo = " -DOPENSSL_NO_%s" % algo
if noalgo not in line:
line = line + noalgo
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