Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62a8ee1 commit 0eb2102Copy full SHA for 0eb2102
1 file changed
PCbuild9/build_ssl.py
@@ -131,6 +131,11 @@ def fix_makefile(makefile):
131
line = "CP=copy\n"
132
if line.startswith("MKDIR="):
133
line = "MKDIR=mkdir\n"
134
+ if line.startswith("CFLAG="):
135
+ for algo in ("RC5", "MDC2", "IDEA"):
136
+ noalgo = " -DOPENSSL_NO_%s" % algo
137
+ if noalgo not in line:
138
+ line = line + noalgo
139
fout.write(line)
140
141
def run_configure(configure, do_script):
0 commit comments