]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
RT3863 ECC: Add missing NULL check. Set a flag
[thirdparty/openssl.git] / Configure
CommitLineData
de17db91 1#! /usr/bin/env perl
f4d8f037 2# -*- mode: perl; -*-
de17db91 3
a4ed5532
RE
4##
5## Configure -- OpenSSL source tree configuration script
008bef52 6## If editing this file, run this command before committing
d10dac11 7## make -f Makefile.in TABLE
a4ed5532 8##
1641cb60 9
448cb8b5 10require 5.000;
1641cb60 11use strict;
f09e7ca9
RS
12use File::Basename;
13use File::Spec::Functions;
1641cb60 14
22a4f969 15# see INSTALL for instructions.
462ba4f6 16
7fccf05d 17my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
462ba4f6 18
434c5dd3 19# Options:
e5f3045f 20#
f09e7ca9
RS
21# --config add the given configuration file, which will be read after
22# any "Configurations*" files that are found in the same
23# directory as this script.
462ba4f6
UM
24# --openssldir install OpenSSL in OPENSSLDIR (Default: DIR/ssl if the
25# --prefix option is given; /usr/local/ssl otherwise)
26# --prefix prefix for the OpenSSL include, lib and bin directories
27# (Default: the OPENSSLDIR directory)
e5f3045f
BM
28#
29# --install_prefix Additional prefix for package builders (empty by
30# default). This needn't be set in advance, you can
31# just as well use "make INSTALL_PREFIX=/whatever install".
32#
cbfb39d1
AP
33# --cross-compile-prefix Add specified prefix to binutils components.
34#
98186eb4
VD
35# --api One of 0.9.8, 1.0.0 or 1.1.0. Do not compile support for
36# interfaces deprecated as of the specified OpenSSL version.
37#
5270e702
RL
38# no-hw-xxx do not compile support for specific crypto hardware.
39# Generic OpenSSL-style methods relating to this support
40# are always compiled but return NULL if the hardware
41# support isn't compiled.
42# no-hw do not compile support for any crypto hardware.
5f8d5c96
BM
43# [no-]threads [don't] try to create a library that is suitable for
44# multithreaded applications (default is "threads" if we
45# know how to do it)
fcc6a1c4 46# [no-]shared [don't] try to create shared libraries when supported.
a723979d 47# no-asm do not use assembler
bc2aadad
GT
48# no-dso do not compile in any native shared-library methods. This
49# will ensure that all methods just return NULL.
0423f812 50# no-egd do not compile support for the entropy-gathering daemon APIs
e452de9d
RL
51# [no-]zlib [don't] compile support for zlib compression.
52# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
53# library and will be loaded in run-time by the OpenSSL library.
7e159e01 54# sctp include SCTP support
22a4f969 55# 386 generate 80386 code
d0590fe6 56# no-sse2 disables IA-32 SSE2 code, above option implies no-sse2
79df9d62 57# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
fce0ba5f 58# -<xxx> +<xxx> compiler options are passed through
e41c8d6a
GT
59#
60# DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
61# provided to stack calls. Generates unique stack functions for
62# each possible stack type.
d02b48c6
RE
63# DES_PTR use pointer lookup vs arrays in the DES in crypto/des/des_locl.h
64# DES_RISC1 use different DES_ENCRYPT macro that helps reduce register
65# dependancies but needs to more registers, good for RISC CPU's
66# DES_RISC2 A different RISC variant.
67# DES_UNROLL unroll the inner DES loop, sometimes helps, somtimes hinders.
68# DES_INT use 'int' instead of 'long' for DES_LONG in crypto/des/des.h
69# This is used on the DEC Alpha where long is 8 bytes
70# and int is 4
71# BN_LLONG use the type 'long long' in crypto/bn/bn.h
58964a49
RE
72# MD2_CHAR use 'char' instead of 'int' for MD2_INT in crypto/md2/md2.h
73# MD2_LONG use 'long' instead of 'int' for MD2_INT in crypto/md2/md2.h
d02b48c6
RE
74# IDEA_SHORT use 'short' instead of 'int' for IDEA_INT in crypto/idea/idea.h
75# IDEA_LONG use 'long' instead of 'int' for IDEA_INT in crypto/idea/idea.h
76# RC2_SHORT use 'short' instead of 'int' for RC2_INT in crypto/rc2/rc2.h
77# RC2_LONG use 'long' instead of 'int' for RC2_INT in crypto/rc2/rc2.h
78# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
79# RC4_LONG use 'long' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
58964a49 80# RC4_INDEX define RC4_INDEX in crypto/rc4/rc4_locl.h. This turns on
d02b48c6 81# array lookups instead of pointer use.
2dae04d0
AP
82# RC4_CHUNK enables code that handles data aligned at long (natural CPU
83# word) boundary.
84# RC4_CHUNK_LL enables code that handles data aligned at long long boundary
85# (intended for 64-bit CPUs running 32-bit OS).
d02b48c6 86# BF_PTR use 'pointer arithmatic' for Blowfish (unsafe on Alpha).
995e79e3 87# BF_PTR2 intel specific version (generic version is more efficient).
d0590fe6
AP
88#
89# Following are set automatically by this script
90#
58964a49
RE
91# MD5_ASM use some extra md5 assember,
92# SHA1_ASM use some extra sha1 assember, must define L_ENDIAN for x86
93# RMD160_ASM use some extra ripemd160 assember,
d0590fe6
AP
94# SHA256_ASM sha256_block is implemented in assembler
95# SHA512_ASM sha512_block is implemented in assembler
96# AES_ASM ASE_[en|de]crypt is implemented in assembler
d02b48c6 97
363bd0b4 98# Minimum warning options... any contributions to OpenSSL should at least get
fce0ba5f 99# past these.
363bd0b4 100
c2e27310 101my $gcc_devteam_warn = "-Wall -pedantic -DPEDANTIC -Wno-long-long -Wsign-compare -Wmissing-prototypes -Wshadow -Wformat -Wtype-limits -Werror -DREF_CHECK -DDEBUG_UNUSED";
363bd0b4 102
190c8c60
BL
103# These are used in addition to $gcc_devteam_warn when the compiler is clang.
104# TODO(openssl-team): fix problems and investigate if (at least) the
480405e4 105# following warnings can also be enabled:
190c8c60 106# -Wswitch-enum, -Wunused-macros, -Wmissing-field-initializers,
df2ee0e2 107# -Wcast-align,
190c8c60
BL
108# -Wunreachable-code -Wunused-parameter -Wlanguage-extension-token
109# -Wextended-offsetof
df2ee0e2 110my $clang_devteam_warn = "-Wno-unused-parameter -Wno-missing-field-initializers -Wno-language-extension-token -Wno-extended-offsetof -Wconditional-uninitialized -Qunused-arguments -Wincompatible-pointer-types-discards-qualifiers -Wmissing-variable-declarations";
cb2bc054 111
2e31ef03
RS
112# Warn that "make depend" should be run?
113my $warn_make_depend = 0;
114
a1d3f3d1
RL
115# These are used in addition to $gcc_devteam_warn unless this is a mingw build.
116# This adds backtrace information to the memory leak info.
117my $memleak_devteam_backtrace = "-rdynamic -DCRYPTO_MDEBUG_BACKTRACE";
118
119
0c28f277
DSH
120my $strict_warnings = 0;
121
1641cb60 122my $x86_gcc_des="DES_PTR DES_RISC1 DES_UNROLL";
d02b48c6
RE
123
124# MD2_CHAR slags pentium pros
995e79e3 125my $x86_gcc_opts="RC4_INDEX MD2_INT";
d02b48c6 126
b7efa56a 127# As for $BSDthreads. Idea is to maintain "collective" set of flags,
fce0ba5f 128# which would cover all BSD flavors. -pthread applies to them all,
b7efa56a
AP
129# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
130# -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
131# which has to be accompanied by explicit -D_THREAD_SAFE and
132# sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
133# seems to be sufficient?
134my $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
d02b48c6 135
98186eb4
VD
136#
137# API compability name to version number mapping.
138#
139my $maxapi = "1.1.0"; # API for "no-deprecated" builds
140my $apitable = {
141 "1.1.0" => "0x10100000L",
142 "1.0.0" => "0x10000000L",
143 "0.9.8" => "0x00908000L",
144};
145
f09e7ca9 146# table of known configurations, read in from files
aaf878cc 147#
bd5192b1
RL
148# The content of each entry comes in the form of config hash table,
149# which has additional attributes for debug and non-debug flags to be
150# added to the common flags, for cflags and lflags:
aaf878cc
RL
151#
152# {
153# cc => $cc,
154# cflags => $cflags,
b1245529
RL
155# debug_cflags => $debug_cflags,
156# release_cflags => $release_cflags,
aaf878cc
RL
157# unistd => $unistd,
158# thread_cflag => $thread_cflag,
159# sys_id => $sys_id,
160# lflags => $lflags,
b1245529
RL
161# debug_lflags => $debug_lflags,
162# release_lflags => $release_lflags,
aaf878cc
RL
163# bn_ops => $bn_ops,
164# cpuid_obj => $cpuid_obj,
165# bn_obj => $bn_obj,
166# ec_obj => $ec_obj,
167# des_obj => $des_obj,
168# aes_obj => $aes_obj,
169# bf_obj => $bf_obj,
170# md5_obj => $md5_obj,
171# sha1_obj => $sha1_obj,
172# cast_obj => $cast_obj,
173# rc4_obj => $rc4_obj,
174# rmd160_obj => $rmd160_obj,
175# rc5_obj => $rc5_obj,
176# wp_obj => $wp_obj,
177# cmll_obj => $cmll_obj,
178# modes_obj => $modes_obj,
179# engines_obj => $engines_obj,
22c2e80f
AP
180# chacha_obj => $wp_obj,
181# poly1305_obj => $cmll_obj,
aaf878cc
RL
182# dso_scheme => $dso_scheme,
183# shared_target => $shared_target,
184# shared_cflag => $shared_cflag,
185# shared_ldflag => $shared_ldflag,
186# shared_extension => $shared_extension,
187# ranlib => $ranlib,
188# arflags => $arflags,
189# multilib => $multilib
190# }
191#
7d46b942
RL
192# The configuration hashes can refer to templates in two different manners:
193#
b1245529 194# - as part of the hash, one can have a key called 'inherit_from' that
7d46b942
RL
195# indicate what other configuration hashes to inherit data from.
196# These are resolved recursively.
197#
b1245529
RL
198# Inheritance works as a set of default values that can be overriden
199# by corresponding attribute values in the inheriting configuration.
200#
201# If several configurations are given in the 'inherit_from' array, the
202# values of same attribute are concatenated with space separation.
203# With this, it's possible to have several smaller templates for
204# different configuration aspects that can be combined into a complete
205# configuration.
206#
7d46b942
RL
207# Example:
208#
b1245529
RL
209# "foo" => {
210# template => 1,
211# haha => "haha",
212# hoho => "ho"
213# },
7d46b942 214# "bar" => {
b1245529
RL
215# template => 1,
216# hoho => "ho",
217# hehe => "hehe"
7d46b942 218# },
b1245529
RL
219# "laughter" => {
220# inherit_from => [ "foo", "bar" ],
7d46b942
RL
221# }
222#
223# The entry for "foo" will become as follows after processing:
224#
b1245529 225# "laughter" => {
7d46b942 226# haha => "haha",
b1245529
RL
227# hoho => "ho ho",
228# hehe => "hehe"
7d46b942
RL
229# }
230#
231# Note 1: any entry from the table can be used as a template.
232# Note 2: pure templates have the attribute 'template => 1' and cannot
b1245529 233# be used as targets.
7d46b942 234#
b1245529
RL
235# - instead of a string, one can have a code block of the form
236# 'sub { /* your code here */ }', where the arguments are the list of
237# inherited values for that key. In fact, the concatenation of strings
238# is really done by using 'sub { join(" ",@_) }' on the list of inherited
239# values.
7d46b942
RL
240#
241# Example:
242#
b1245529
RL
243# "foo" => {
244# template => 1,
245# haha => "ha ha",
246# hoho => "ho",
247# ignored => "This should not appear in the end result",
248# },
7d46b942 249# "bar" => {
b1245529
RL
250# template => 1,
251# haha => "ah",
252# hoho => "haho",
253# hehe => "hehe"
7d46b942 254# },
b1245529
RL
255# "laughter" => {
256# inherit_from => [ "foo", "bar" ],
257# hehe => sub { join(" ",(@_,"!!!")) },
258# ignored => "",
7d46b942
RL
259# }
260#
261# The entry for "foo" will become as follows after processing:
262#
b1245529
RL
263# "laughter" => {
264# haha => "ha ha ah",
265# hoho => "ho haho",
266# hehe => "hehe !!!",
267# ignored => ""
7d46b942
RL
268# }
269#
aaf878cc 270
bd5192b1 271our %table=(
7d46b942
RL
272
273 # All these templates are merely a translation of the corresponding
274 # variables further up.
275 #
276 # Note: as long as someone might use old style configuration strings,
277 # or we bother supporting that, those variables need to stay
278
7ead0c89 279 x86_asm => {
7d46b942
RL
280 template => 1,
281 cpuid_obj => "x86cpuid.o",
282 bn_obj => "bn-586.o co-586.o x86-mont.o x86-gf2m.o",
283 ec_obj => "ecp_nistz256.o ecp_nistz256-x86.o",
284 des_obj => "des-586.o crypt586.o",
285 aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o",
286 bf_obj => "bf-586.o",
287 md5_obj => "md5-586.o",
288 sha1_obj => "sha1-586.o sha256-586.o sha512-586.o",
7d46b942
RL
289 rc4_obj => "rc4-586.o",
290 rmd160_obj => "rmd-586.o",
291 rc5_obj => "rc5-586.o",
292 wp_obj => "wp_block.o wp-mmx.o",
293 cmll_obj => "cmll-x86.o",
294 modes_obj => "ghash-x86.o",
295 engines_obj => "e_padlock-x86.o"
296 },
297 x86_elf_asm => {
298 template => 1,
b1245529 299 inherit_from => [ "x86_asm" ],
7d46b942
RL
300 perlasm_scheme => "elf"
301 },
7ead0c89 302 x86_64_asm => {
7d46b942
RL
303 template => 1,
304 cpuid_obj => "x86_64cpuid.o",
7ead0c89 305 bn_obj => "x86_64-gcc.o x86_64-mont.o x86_64-mont5.o x86_64-gf2m.o rsaz_exp.o rsaz-x86_64.o rsaz-avx2.o",
7d46b942
RL
306 ec_obj => "ecp_nistz256.o ecp_nistz256-x86_64.o",
307 aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
308 md5_obj => "md5-x86_64.o",
309 sha1_obj => "sha1-x86_64.o sha256-x86_64.o sha512-x86_64.o sha1-mb-x86_64.o sha256-mb-x86_64.o",
310 rc4_obj => "rc4-x86_64.o rc4-md5-x86_64.o",
311 wp_obj => "wp-x86_64.o",
312 cmll_obj => "cmll-x86_64.o cmll_misc.o",
313 modes_obj => "ghash-x86_64.o aesni-gcm-x86_64.o",
314 engines_obj => "e_padlock-x86_64.o"
315 },
316 ia64_asm => {
317 template => 1,
318 cpuid_obj => "ia64cpuid.o",
319 bn_obj => "bn-ia64.o ia64-mont.o",
320 aes_obj => "aes_core.o aes_cbc.o aes-ia64.o",
321 md5_obj => "md5-ia64.o",
322 sha1_obj => "sha1-ia64.o sha256-ia64.o sha512-ia64.o",
323 rc4_obj => "rc4-ia64.o rc4_skey.o",
324 modes_obj => "ghash-ia64.o",
325 perlasm_scheme => "void"
326 },
327 sparcv9_asm => {
328 template => 1,
329 cpuid_obj => "sparcv9cap.o sparccpuid.o",
330 bn_obj => "bn-sparcv9.o sparcv9-mont.o sparcv9a-mont.o vis3-mont.o sparct4-mont.o sparcv9-gf2m.o",
c3b9bd11 331 ec_obj => "ecp_nistz256.o ecp_nistz256-sparcv9.o",
7d46b942
RL
332 des_obj => "des_enc-sparc.o fcrypt_b.o dest4-sparcv9.o",
333 aes_obj => "aes_core.o aes_cbc.o aes-sparcv9.o aest4-sparcv9.o",
334 md5_obj => "md5-sparcv9.o",
335 sha1_obj => "sha1-sparcv9.o sha256-sparcv9.o sha512-sparcv9.o",
336 cmll_obj => "camellia.o cmll_misc.o cmll_cbc.o cmllt4-sparcv9.o",
337 modes_obj => "ghash-sparcv9.o",
338 perlasm_scheme => "void"
339 },
340 sparcv8_asm => {
341 template => 1,
342 cpuid_obj => "",
343 bn_obj => "sparcv8.o",
344 des_obj => "des_enc-sparc.o fcrypt_b.o",
345 perlasm_scheme => "void"
346 },
347 alpha_asm => {
348 template => 1,
349 cpuid_obj => "alphacpuid.o",
350 bn_obj => "bn_asm.o alpha-mont.o",
351 sha1_obj => "sha1-alpha.o",
352 modes_obj => "ghash-alpha.o",
353 perlasm_scheme => "void"
354 },
355 mips32_asm => {
356 template => 1,
357 bn_obj => "bn-mips.o mips-mont.o",
358 aes_obj => "aes_cbc.o aes-mips.o",
359 sha1_obj => "sha1-mips.o sha256-mips.o",
360 },
361 mips64_asm => {
b1245529 362 inherit_from => [ "mips32_asm" ],
7d46b942 363 template => 1,
b1245529 364 sha1_obj => sub { join(" ", @_, "sha512-mips.o") }
7d46b942 365 },
7ead0c89 366 s390x_asm => {
7d46b942
RL
367 template => 1,
368 cpuid_obj => "s390xcap.o s390xcpuid.o",
7ead0c89 369 bn_obj => "bn-s390x.o s390x-mont.o s390x-gf2m.o",
7d46b942
RL
370 aes_obj => "aes-s390x.o aes-ctr.o aes-xts.o",
371 sha1_obj => "sha1-s390x.o sha256-s390x.o sha512-s390x.o",
372 rc4_obj => "rc4-s390x.o",
373 modes_obj => "ghash-s390x.o",
374 },
375 armv4_asm => {
376 template => 1,
377 cpuid_obj => "armcap.o armv4cpuid.o",
378 bn_obj => "bn_asm.o armv4-mont.o armv4-gf2m.o",
379 ec_obj => "ecp_nistz256.o ecp_nistz256-armv4.o",
380 aes_obj => "aes_cbc.o aes-armv4.o bsaes-armv7.o aesv8-armx.o",
381 sha1_obj => "sha1-armv4-large.o sha256-armv4.o sha512-armv4.o",
382 modes_obj => "ghash-armv4.o ghashv8-armx.o",
383 perlasm_scheme => "void"
384 },
385 aarch64_asm => {
386 template => 1,
387 cpuid_obj => "armcap.o arm64cpuid.o mem_clr.o",
cc98b998 388 ec_obj => "ecp_nistz256.o ecp_nistz256-armv8.o",
2c6343bf 389 bn_obj => "bn_asm.o armv8-mont.o",
33b188a8 390 aes_obj => "aes_core.o aes_cbc.o aesv8-armx.o vpaes-armv8.o",
7d46b942
RL
391 sha1_obj => "sha1-armv8.o sha256-armv8.o sha512-armv8.o",
392 modes_obj => "ghashv8-armx.o",
393 },
394 parisc11_asm => {
395 template => 1,
396 cpuid_obj => "pariscid.o",
397 bn_obj => "bn_asm.o parisc-mont.o",
398 aes_obj => "aes_core.o aes_cbc.o aes-parisc.o",
399 sha1_obj => "sha1-parisc.o sha256-parisc.o sha512-parisc.o",
400 rc4_obj => "rc4-parisc.o",
401 modes_obj => "ghash-parisc.o",
402 perlasm_scheme => "32"
403 },
5e1b2353
RL
404 parisc20_64_asm => {
405 template => 1,
7ead0c89
AP
406 inherit_from => [ "parisc11_asm" ],
407 bn_obj => sub { my $r=join(" ",@_); $r=~s/bn_asm/pa-risc2W/; $r; },
5e1b2353
RL
408 perlasm_scheme => "64",
409 },
7d46b942
RL
410 ppc64_asm => {
411 template => 1,
412 cpuid_obj => "ppccpuid.o ppccap.o",
413 bn_obj => "bn-ppc.o ppc-mont.o ppc64-mont.o",
414 aes_obj => "aes_core.o aes_cbc.o aes-ppc.o vpaes-ppc.o aesp8-ppc.o",
415 sha1_obj => "sha1-ppc.o sha256-ppc.o sha512-ppc.o sha256p8-ppc.o sha512p8-ppc.o",
416 modes_obj => "ghashp8-ppc.o",
417 },
418 ppc32_asm => {
b1245529 419 inherit_from => [ "ppc64_asm" ],
7d46b942
RL
420 template => 1
421 },
f09e7ca9 422);
3e83e686 423
bd5192b1 424# Forward declarations ###############################################
7ead0c89 425
bd5192b1
RL
426# read_config(filename)
427#
428# Reads a configuration file and populates %table with the contents
429# (which the configuration file places in %targets).
430sub read_config;
7d46b942 431
bd5192b1
RL
432# resolve_config(target)
433#
434# Resolves all the late evalutations, inheritances and so on for the
435# chosen target and any target it inherits from.
436sub resolve_config;
7d46b942 437
15c7adb0 438
f09e7ca9 439my ($vol, $dir, $dummy) = File::Spec->splitpath($0);
97a0cc52
RL
440my $pattern = File::Spec->catpath($vol, $dir, "Configurations/*.conf");
441foreach (sort glob($pattern) ) {
f09e7ca9
RS
442 &read_config($_);
443}
d02b48c6 444
33c3ecf7 445my @MK1MF_Builds=qw(VC-WIN64I VC-WIN64A
eba2b51d 446 debug-VC-WIN64I debug-VC-WIN64A
71b7858b 447 VC-NT VC-CE VC-WIN32 debug-VC-WIN32
fce0ba5f 448 BC-32
eef0c1f3
DSH
449 netware-clib netware-clib-bsdsock
450 netware-libc netware-libc-bsdsock);
efadf60f 451
e5f3045f 452my $prefix="";
6727565a 453my $libdir="";
462ba4f6 454my $openssldir="";
967d95f0 455my $exe_ext="";
122276a7 456my $install_prefix= "$ENV{'INSTALL_PREFIX'}";
cbfb39d1 457my $cross_compile_prefix="";
166c9cb0 458my $fipslibdir="/usr/local/ssl/fips-2.0/lib/";
1ab2f7f1 459my $nofipscanistercheck=0;
1ab2f7f1 460my $baseaddr="0xFB00000";
5f8d5c96
BM
461my $no_threads=0;
462my $threads=0;
c9a112f5
BM
463my $no_shared=0; # but "no-shared" is default
464my $zlib=1; # but "no-zlib" is default
47bbaa5b 465my $no_rfc3779=0;
1641cb60 466my $no_asm=0;
bc2aadad 467my $no_dso=0;
f5d7a031 468my @skip=();
42ba5d23 469my $Makefile="Makefile";
1641cb60 470my $des_locl="crypto/des/des_locl.h";
dee502be
RL
471my $des ="include/openssl/des.h";
472my $bn ="include/openssl/bn.h";
473my $md2 ="include/openssl/md2.h";
474my $rc4 ="include/openssl/rc4.h";
1641cb60 475my $rc4_locl="crypto/rc4/rc4_locl.h";
dee502be
RL
476my $idea ="include/openssl/idea.h";
477my $rc2 ="include/openssl/rc2.h";
1641cb60
BL
478my $bf ="crypto/bf/bf_locl.h";
479my $bn_asm ="bn_asm.o";
480my $des_enc="des_enc.o fcrypt_b.o";
874a3757 481my $aes_enc="aes_core.o aes_cbc.o";
1641cb60
BL
482my $bf_enc ="bf_enc.o";
483my $cast_enc="c_enc.o";
28754624 484my $rc4_enc="rc4_enc.o rc4_skey.o";
1641cb60 485my $rc5_enc="rc5_enc.o";
6a8517f2 486my $cmll_enc="camellia.o cmll_misc.o cmll_cbc.o";
22c2e80f 487my $chacha_enc="chacha_enc.o";
2613c1fa 488my $processor="";
0396479d 489my $default_ranlib;
99aab161 490my $perl;
1ab2f7f1 491my $fips=0;
99aab161 492
6b01bed2
VD
493# Known TLS and DTLS protocols
494my @tls = qw(ssl3 tls1 tls1_1 tls1_2);
495my @dtls = qw(dtls1 dtls1_2);
496
8b527be2
RL
497# Explicitelly known options that are possible to disable. They can
498# be regexps, and will be used like this: /^no-${option}$/
499# For developers: keep it sorted alphabetically
500
501my @disablables = (
502 "aes",
503 "asm",
504 "bf",
505 "camellia",
506 "capieng",
507 "cast",
48f14845 508 "chacha",
8b527be2
RL
509 "cmac",
510 "cms",
511 "comp",
3e45d393 512 "crypto-mdebug",
8b527be2
RL
513 "ct",
514 "deprecated",
515 "des",
516 "dgram",
517 "dh",
518 "dsa",
519 "dso",
a5ecdc6a 520 "dtls",
8b527be2
RL
521 "dynamic[-_]engine",
522 "ec",
523 "ec2m",
6b01bed2
VD
524 "ecdh",
525 "ecdsa",
8b527be2
RL
526 "ec_nistp_64_gcc_128",
527 "engine",
528 "err", # Really???
8b527be2
RL
529 "gost",
530 "heartbeats",
531 "hmac",
532 "hw(-.+)?",
533 "idea",
534 "jpake",
535 "locking", # Really???
536 "md2",
537 "md4",
538 "md5",
539 "mdc2",
540 "md[-_]ghost94",
541 "nextprotoneg",
542 "ocb",
543 "ocsp",
48f14845 544 "poly1305",
8b527be2
RL
545 "posix-io",
546 "psk",
547 "rc2",
548 "rc4",
549 "rc5",
550 "rdrand",
551 "rfc3779",
552 "rijndael", # Old AES name
553 "rmd160",
554 "rsa",
555 "scrypt",
556 "sct",
557 "sctp",
558 "seed",
559 "sha",
560 "shared",
561 "sock",
562 "srp",
563 "srtp",
564 "sse2",
565 "ssl",
8b527be2
RL
566 "ssl-trace",
567 "static-engine",
568 "stdio",
569 "store",
570 "threads",
571 "tls",
8b527be2
RL
572 "unit-test",
573 "whirlpool",
574 "zlib",
575 "zlib-dynamic",
576 );
6b01bed2
VD
577foreach my $proto ((@tls, @dtls))
578 {
579 push(@disablables, $proto);
580 push(@disablables, "$proto-method");
581 }
8b527be2 582
c9a112f5
BM
583# All of the following is disabled by default (RC5 was enabled before 0.9.8):
584
7a762197 585my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
7d8bb912 586 "ec_nistp_64_gcc_128" => "default",
0423f812 587 "egd" => "default",
7d8bb912
BM
588 "jpake" => "experimental",
589 "md2" => "default",
590 "rc5" => "default",
c2e27310 591 "sctp" => "default",
7d8bb912 592 "shared" => "default",
93ab9e42 593 "ssl-trace" => "default",
ae3b4f23 594 "store" => "experimental",
e0fc7961 595 "unit-test" => "default",
7d8bb912 596 "zlib" => "default",
c2e27310
VD
597 "zlib-dynamic" => "default",
598 "crypto-mdebug" => "default",
7d8bb912 599 );
7a762197 600my @experimental = ();
c9a112f5 601
c569e206
RL
602# Note: => pair form used for aesthetics, not to truly make a hash table
603my @disable_cascades = (
604 # "what" => [ "cascade", ... ]
605 sub { $processor eq "386" }
606 => [ "sse2" ],
607 "ssl" => [ "ssl3" ],
608 "ssl3-method" => [ "ssl3" ],
609 "zlib" => [ "zlib-dynamic" ],
610 "rijndael" => [ "aes" ],
611 "des" => [ "mdc2" ],
612 "ec" => [ "ecdsa", "ecdh", "gost" ],
613 "dsa" => [ "gost" ],
614 "dh" => [ "gost" ],
615
616 "dgram" => [ "dtls" ],
617 "dtls" => [ @dtls ],
618
619 # SSL 3.0, (D)TLS 1.0 and TLS 1.1 require MD5 and SHA
620 "md5" => [ "ssl", "tls1", "tls1_1", "dtls1" ],
621 "sha" => [ "ssl", "tls1", "tls1_1", "dtls1" ],
622
623 # Additionally, SSL 3.0 requires either RSA or DSA+DH
624 sub { $disabled{rsa}
625 && ($disabled{dsa} || $disabled{dh}); }
626 => [ "ssl" ],
627
628 # (D)TLS 1.0 and TLS 1.1 also require either RSA or DSA+DH
629 # or ECDSA + ECDH. (D)TLS 1.2 has this requirement as well.
630 # (XXX: We don't support PSK-only builds).
631 sub { $disabled{rsa}
632 && ($disabled{dsa} || $disabled{dh})
633 && ($disabled{ecdsa} || $disabled{ecdh}); }
634 => [ "tls1", "tls1_1", "tls1_2",
635 "dtls1", "dtls1_2" ],
636
637 "tls" => [ @tls ],
638
639 # SRP and HEARTBEATS require TLSEXT
640 "tlsext" => [ "srp", "heartbeats" ],
641 );
642
643# Avoid protocol support holes. Also disable all versions below N, if version
644# N is disabled while N+1 is enabled.
645#
646my @list = (reverse @tls);
647while ((my $first, my $second) = (shift @list, shift @list)) {
648 last unless @list;
649 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
650 => [ @list ] );
651 unshift @list, $second;
652}
653my @list = (reverse @dtls);
654while ((my $first, my $second) = (shift @list, shift @list)) {
655 last unless @list;
656 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
657 => [ @list ] );
658 unshift @list, $second;
659}
660
661# Construct the string of what $depflags should look like with the defaults
662# from %disabled above. (we need this to see if we should advise the user
663# to run "make depend"):
664my $default_depflags = " ".join(" ",
665 map { my $x = $_; $x =~ tr{[a-z]-}{[A-Z]_}; "-DOPENSSL_NO_$x"; }
666 grep { $disabled{$_} !~ /\(no-depflags\)$/ }
667 sort keys %disabled);
7a762197
BM
668
669# Explicit "no-..." options will be collected in %disabled along with the defaults.
670# To remove something from %disabled, use "enable-foo" (unless it's experimental).
671# For symmetry, "disable-foo" is a synonym for "no-foo".
672
673# For features called "experimental" here, a more explicit "experimental-foo" is needed to enable.
674# We will collect such requests in @experimental.
675# To avoid accidental use of experimental features, applications will have to use -DOPENSSL_EXPERIMENTAL_FOO.
ab185b60
BM
676
677
d0590fe6 678my $no_sse2=0;
b6e4dac2 679
462ba4f6 680&usage if ($#ARGV < 0);
d02b48c6 681
fe05264e
RL
682my $flags="";
683my $depflags="";
684my $openssl_experimental_defines="";
685my $openssl_algorithm_defines="";
686my $openssl_thread_defines="";
cf1b7d96 687my $openssl_sys_defines="";
fe05264e
RL
688my $openssl_other_defines="";
689my $libs="";
690my $target="";
691my $options="";
98186eb4 692my $api;
451dc18f 693my $make_depend=0;
f9b3bff6 694my %withargs=();
9e43c6b5 695my $build_prefix = "release_";
c59cb511
RL
696
697my @argvcopy=@ARGV;
c59cb511 698
fe05264e
RL
699if (grep /^reconf(igure)?$/, @argvcopy) {
700 if (open IN, "<$Makefile") {
701 while (<IN>) {
702 chomp;
703 if (/^CONFIGURE_ARGS=\s*(.*)\s*/) {
704 my $line = $1;
705 if ($line =~ /^\s*\(/) {
706 # New form perl expression saved in Makefile, eval it
707 @argvcopy = eval $line;
708 } else {
709 # Older form, we split the string and hope for the best
710 @argvcopy = split /\s+/, $line;
711 }
712 die "Incorrect data to reconfigure, please do a normal configuration\n"
713 if (grep(/^reconf/,@argvcopy));
714 } elsif (/^CROSS_COMPILE=\s*(.*)/) {
715 $ENV{CROSS_COMPILE}=$1;
716 } elsif (/^CC=\s*(?:\$\(CROSS_COMPILE\))?(.*?)$/) {
717 $ENV{CC}=$1;
718 }
719 }
720 print "Reconfiguring with: ", join(" ",@argvcopy), "\n";
721 print " CROSS_COMPILE = ",$ENV{CROSS_COMPILE},"\n"
722 if $ENV{CROSS_COMPILE};
723 print " CC = ",$ENV{CC},"\n" if $ENV{CC};
724 close IN;
725 } else {
726 die "Insufficient data to reconfigure, please do a normal configuration\n";
727 }
728}
729
730
731my %unsupported_options = ();
732foreach (@argvcopy)
16b6081e 733 {
fe05264e 734 s /^-no-/no-/; # some people just can't read the instructions
c9a112f5 735
fe05264e
RL
736 # rewrite some options in "enable-..." form
737 s /^-?-?shared$/enable-shared/;
738 s /^sctp$/enable-sctp/;
739 s /^threads$/enable-threads/;
740 s /^zlib$/enable-zlib/;
741 s /^zlib-dynamic$/enable-zlib-dynamic/;
c9a112f5 742
fe05264e
RL
743 if (/^(no|disable|enable|experimental)-(.+)$/)
744 {
745 my $word = $2;
746 if (!grep { $word =~ /^${_}$/ } @disablables)
8b527be2 747 {
fe05264e
RL
748 $unsupported_options{$_} = 1;
749 next;
8b527be2 750 }
fe05264e
RL
751 }
752 if (/^no-(.+)$/ || /^disable-(.+)$/)
753 {
754 if (!($disabled{$1} eq "experimental"))
d02b48c6 755 {
fe05264e 756 foreach my $proto ((@tls, @dtls))
e172d60d 757 {
fe05264e 758 if ($1 eq "$proto-method")
3881d810 759 {
fe05264e
RL
760 $disabled{"$proto"} = "option($proto-method)";
761 last;
3881d810 762 }
fe05264e
RL
763 }
764 if ($1 eq "dtls")
765 {
766 foreach my $proto (@dtls)
6b01bed2 767 {
fe05264e 768 $disabled{$proto} = "option(dtls)";
6b01bed2 769 }
fe05264e
RL
770 }
771 elsif ($1 eq "ssl")
772 {
773 # Last one of its kind
774 $disabled{"ssl3"} = "option(ssl)";
775 }
776 elsif ($1 eq "tls")
777 {
778 # XXX: Tests will fail if all SSL/TLS
779 # protocols are disabled.
780 foreach my $proto (@tls)
7a762197 781 {
fe05264e 782 $disabled{$proto} = "option(tls)";
7a762197 783 }
fce0ba5f 784 }
fe05264e 785 else
b6e4dac2 786 {
fe05264e 787 $disabled{$1} = "option";
b6e4dac2 788 }
fe05264e
RL
789 }
790 }
791 elsif (/^enable-(.+)$/ || /^experimental-(.+)$/)
792 {
793 my $algo = $1;
794 if ($disabled{$algo} eq "experimental")
795 {
796 die "You are requesting an experimental feature; please say 'experimental-$algo' if you are sure\n"
797 unless (/^experimental-/);
798 push @experimental, $algo;
799 }
800 delete $disabled{$algo};
c9a112f5 801
fe05264e
RL
802 $threads = 1 if ($algo eq "threads");
803 }
804 elsif (/^--strict-warnings$/)
805 {
806 $strict_warnings = 1;
807 }
808 elsif (/^--debug$/)
809 {
810 $build_prefix = "debug_";
811 }
812 elsif (/^--release$/)
813 {
814 $build_prefix = "release_";
815 }
816 elsif (/^386$/)
817 { $processor=386; }
818 elsif (/^fips$/)
819 {
820 $fips=1;
821 }
822 elsif (/^rsaref$/)
823 {
824 # No RSAref support any more since it's not needed.
825 # The check for the option is there so scripts aren't
826 # broken
827 }
828 elsif (/^nofipscanistercheck$/)
829 {
830 $fips = 1;
831 $nofipscanistercheck = 1;
832 }
833 elsif (/^[-+]/)
834 {
835 if (/^--prefix=(.*)$/)
836 {
837 $prefix=$1;
c9a112f5 838 }
fe05264e 839 elsif (/^--api=(.*)$/)
0c28f277 840 {
fe05264e 841 $api=$1;
0c28f277 842 }
fe05264e 843 elsif (/^--libdir=(.*)$/)
9e43c6b5 844 {
fe05264e 845 $libdir=$1;
9e43c6b5 846 }
fe05264e 847 elsif (/^--openssldir=(.*)$/)
9e43c6b5 848 {
fe05264e 849 $openssldir=$1;
9e43c6b5 850 }
fe05264e 851 elsif (/^--install.prefix=(.*)$/)
d02b48c6 852 {
fe05264e 853 $install_prefix=$1;
d02b48c6 854 }
fe05264e 855 elsif (/^--with-zlib-lib=(.*)$/)
9fdb2cc5 856 {
fe05264e 857 $withargs{"zlib-lib"}=$1;
7d8bb912 858 }
fe05264e 859 elsif (/^--with-zlib-include=(.*)$/)
3eb0ed6d 860 {
fe05264e 861 $withargs{"zlib-include"}="-I$1";
462ba4f6 862 }
fe05264e 863 elsif (/^--with-fipslibdir=(.*)$/)
1ab2f7f1 864 {
fe05264e 865 $fipslibdir="$1/";
1ab2f7f1 866 }
fe05264e 867 elsif (/^--with-baseaddr=(.*)$/)
462ba4f6 868 {
fe05264e 869 $baseaddr="$1";
3eb0ed6d 870 }
fe05264e 871 elsif (/^--cross-compile-prefix=(.*)$/)
e5f3045f 872 {
fe05264e 873 $cross_compile_prefix=$1;
e5f3045f 874 }
fe05264e 875 elsif (/^--config=(.*)$/)
d02b48c6 876 {
fe05264e 877 read_config $1;
c59cb511 878 }
fe05264e 879 elsif (/^-[lL](.*)$/ or /^-Wl,/)
c9a112f5 880 {
fe05264e 881 $libs.=$_." ";
d02b48c6 882 }
fe05264e
RL
883 else # common if (/^[-+]/), just pass down...
884 {
885 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
886 $flags.=$_." ";
887 }
888 }
889 elsif ($_ =~ /^([^:]+):(.+)$/)
890 {
891 eval "\$table{\$1} = \"$2\""; # allow $xxx constructs in the string
892 $target=$1;
893 }
894 else
895 {
896 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
897 $target=$_;
898 }
899 unless ($_ eq $target || /^no-/ || /^disable-/)
900 {
901 # "no-..." follows later after implied disactivations
902 # have been derived. (Don't take this too seroiusly,
903 # we really only write OPTIONS to the Makefile out of
904 # nostalgia.)
905
906 if ($options eq "")
907 { $options = $_; }
908 else
909 { $options .= " ".$_; }
fbabb752 910 }
489eb740 911
98186eb4
VD
912 if (defined($api) && !exists $apitable->{$api}) {
913 die "***** Unsupported api compatibility level: $api\n",
914 }
915
489eb740
RL
916 if (keys %unsupported_options)
917 {
918 die "***** Unsupported options: ",
919 join(", ", keys %unsupported_options), "\n";
920 }
fbabb752 921 }
b6e4dac2 922
c569e206 923if ($fips)
a7a14a23 924 {
c569e206 925 delete $disabled{"shared"} if ($disabled{"shared"} =~ /^default/);
6b01bed2 926 }
c9a112f5 927
c569e206
RL
928my @tocheckfor = (keys %disabled);
929while (@tocheckfor) {
930 my %new_tocheckfor = ();
931 my @cascade_copy = (@disable_cascades);
932 while (@cascade_copy) {
933 my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
934 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
935 map {
936 $new_tocheckfor{$_} => 1; $disabled{$_} = "forced";
937 } grep { !defined($disabled{$_}) } @$descendents;
ef236ec3 938 }
c569e206
RL
939 }
940 @tocheckfor = (keys %new_tocheckfor);
941}
edc032b5 942
436a376b
BM
943if ($target eq "TABLE") {
944 foreach $target (sort keys %table) {
aaf878cc 945 print_table_entry($target, "TABLE");
436a376b 946 }
436a376b
BM
947 exit 0;
948}
949
10a926c1
UM
950if ($target eq "LIST") {
951 foreach (sort keys %table) {
952 print;
953 print "\n";
954 }
955 exit 0;
956}
957
aaf878cc
RL
958if ($target eq "HASH") {
959 print "%table = (\n";
960 foreach (sort keys %table) {
961 print_table_entry($_, "HASH");
962 }
963 exit 0;
964}
965
49e04548
RL
966if ($target =~ m/^CygWin32(-.*)$/) {
967 $target = "Cygwin".$1;
968}
969
c59cb511
RL
970print "Configuring for $target\n";
971
9e43c6b5 972# Support for legacy targets having a name starting with 'debug-'
aaf878cc 973my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
aaf878cc 974if ($d) {
9e43c6b5 975 $build_prefix = "debug_";
aaf878cc
RL
976
977 # If we do not find debug-foo in the table, the target is set to foo,
b1245529 978 # but only if the foo target has a noon-empty debug_cflags or debug_lflags
aaf878cc 979 # attribute.
8e8b883f 980 if (!$table{$target}) {
aaf878cc
RL
981 $target = $t;
982 }
983}
bd5192b1 984my %target = resolve_config($target);
aaf878cc 985
bd5192b1 986&usage if (!%target || $target{template});
462ba4f6 987
c9a112f5
BM
988foreach (sort (keys %disabled))
989 {
990 $options .= " no-$_";
991
992 printf " no-%-12s %-10s", $_, "[$disabled{$_}]";
993
994 if (/^dso$/)
995 { $no_dso = 1; }
996 elsif (/^threads$/)
997 { $no_threads = 1; }
998 elsif (/^shared$/)
999 { $no_shared = 1; }
1000 elsif (/^zlib$/)
1001 { $zlib = 0; }
fbf002bb
DSH
1002 elsif (/^static-engine$/)
1003 { }
c9a112f5
BM
1004 elsif (/^zlib-dynamic$/)
1005 { }
c9a112f5
BM
1006 elsif (/^sse2$/)
1007 { $no_sse2 = 1; }
1008 else
1009 {
1010 my ($ALGO, $algo);
30fafdeb 1011 ($ALGO = $algo = $_) =~ tr/[\-a-z]/[_A-Z]/;
c9a112f5
BM
1012
1013 if (/^asm$/ || /^err$/ || /^hw$/ || /^hw-/)
1014 {
1015 $openssl_other_defines .= "#define OPENSSL_NO_$ALGO\n";
1016 print " OPENSSL_NO_$ALGO";
fce0ba5f 1017
5df70a9e
AP
1018 if (/^err$/) { $flags .= "-DOPENSSL_NO_ERR "; }
1019 elsif (/^asm$/) { $no_asm = 1; }
c9a112f5
BM
1020 }
1021 else
1022 {
2a4af947
AP
1023 ($ALGO,$algo) = ("RMD160","rmd160") if ($algo eq "ripemd");
1024
c9a112f5
BM
1025 $openssl_algorithm_defines .= "#define OPENSSL_NO_$ALGO\n";
1026 print " OPENSSL_NO_$ALGO";
1027
e36827f6
MC
1028 push @skip, $algo;
1029 # fix-up crypto/directory name(s)
1030 $skip[$#skip]="whrlpool" if $algo eq "whirlpool";
1031 $skip[$#skip]="ripemd" if $algo eq "rmd160";
2a4af947 1032
e36827f6 1033 print " (skip dir)";
ab185b60 1034
e36827f6 1035 $depflags .= " -DOPENSSL_NO_$ALGO";
c9a112f5
BM
1036 }
1037 }
1038
1039 print "\n";
1040 }
1041
7a762197 1042my $exp_cflags = "";
ccc5784e 1043
7a762197
BM
1044foreach (sort @experimental)
1045 {
1046 my $ALGO;
1047 ($ALGO = $_) =~ tr/[a-z]/[A-Z]/;
1048
1049 # opensslconf.h will set OPENSSL_NO_... unless OPENSSL_EXPERIMENTAL_... is defined
1050 $openssl_experimental_defines .= "#define OPENSSL_NO_$ALGO\n";
1051 $exp_cflags .= " -DOPENSSL_EXPERIMENTAL_$ALGO";
1052 }
c9a112f5 1053
4d8743f4 1054my $IsMK1MF=scalar grep /^$target$/,@MK1MF_Builds;
a1e464f9 1055
9be54812 1056$exe_ext=".exe" if ($target eq "Cygwin" || $target eq "DJGPP" || $target =~ /^mingw/);
eef0c1f3 1057$exe_ext=".nlm" if ($target =~ /netware/);
d0590fe6 1058$exe_ext=".pm" if ($target =~ /vos/);
5496cd3e 1059$openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq "");
e5f3045f 1060$prefix=$openssldir if $prefix eq "";
462ba4f6 1061
28a80034
RL
1062$default_ranlib= &which("ranlib") or $default_ranlib="true";
1063$perl=$ENV{'PERL'} or $perl=&which("perl5") or $perl=&which("perl")
1064 or $perl="perl";
dafd8333 1065my $make = $ENV{'MAKE'} || "make";
28a80034 1066
34775923 1067$cross_compile_prefix=$ENV{'CROSS_COMPILE'} if $cross_compile_prefix eq "";
f99f41cf 1068
462ba4f6 1069chop $openssldir if $openssldir =~ /\/$/;
bc645199 1070chop $prefix if $prefix =~ /.\/$/;
462ba4f6 1071
e5f3045f 1072$openssldir=$prefix . "/ssl" if $openssldir eq "";
451dc18f 1073$openssldir=$prefix . "/" . $openssldir if $openssldir !~ /(^\/|^[a-zA-Z]:[\\\/])/;
d02b48c6 1074
efadf60f 1075
4d8743f4 1076print "IsMK1MF=$IsMK1MF\n";
efadf60f 1077
7f625320 1078# Allow environment CC to override compiler...
bd5192b1 1079my $cc = $ENV{CC} || $target{cc};
aaf878cc 1080
b1245529 1081# For cflags and lflags, add the debug_ or release_ attributes
aaf878cc
RL
1082# Do it in such a way that no spurious space is appended (hence the grep).
1083my $cflags = join(" ",
bd5192b1
RL
1084 grep { $_ } ($target{cflags},
1085 $target{$build_prefix."cflags"}));
aaf878cc 1086my $lflags = join(" ",
bd5192b1
RL
1087 grep { $_ } ($target{lflags},
1088 $target{$build_prefix."lflags"}));
1089
1090my $unistd = $target{unistd};
1091my $thread_cflag = $target{thread_cflag};
1092my $sys_id = $target{sys_id};
1093my $bn_ops = $target{bn_ops};
1094my $cpuid_obj = $target{cpuid_obj};
1095my $bn_obj = $target{bn_obj};
1096my $ec_obj = $target{ec_obj};
1097my $des_obj = $target{des_obj};
1098my $aes_obj = $target{aes_obj};
1099my $bf_obj = $target{bf_obj};
1100my $md5_obj = $target{md5_obj};
1101my $sha1_obj = $target{sha1_obj};
1102my $cast_obj = $target{cast_obj};
1103my $rc4_obj = $target{rc4_obj};
1104my $rmd160_obj = $target{rmd160_obj};
1105my $rc5_obj = $target{rc5_obj};
1106my $wp_obj = $target{wp_obj};
1107my $cmll_obj = $target{cmll_obj};
1108my $modes_obj = $target{modes_obj};
1109my $engines_obj = $target{engines_obj};
1110my $chacha_obj = $target{chacha_obj};
1111my $poly1305_obj = $target{poly1305_obj};
1112my $perlasm_scheme = $target{perlasm_scheme};
1113my $dso_scheme = $target{dso_scheme};
1114my $shared_target = $target{shared_target};
1115my $shared_cflag = $target{shared_cflag};
1116my $shared_ldflag = $target{shared_ldflag};
1117my $shared_extension = $target{shared_extension};
1118my $ranlib = $ENV{'RANLIB'} || $target{ranlib};
970097ae 1119my $ar = $ENV{'AR'} || "ar";
bd5192b1
RL
1120my $arflags = $target{arflags};
1121my $multilib = $target{multilib};
d0d046ec 1122
b730b03f
AP
1123# if $prefix/lib$multilib is not an existing directory, then
1124# assume that it's not searched by linker automatically, in
1125# which case adding $multilib suffix causes more grief than
1126# we're ready to tolerate, so don't...
1127$multilib="" if !-d "$prefix/lib$multilib";
1128
6a9d28f9
AP
1129$libdir="lib$multilib" if $libdir eq "";
1130
7a762197
BM
1131$cflags = "$cflags$exp_cflags";
1132
d6c76457
AP
1133# '%' in $lflags is used to split flags to "pre-" and post-flags
1134my ($prelflags,$postlflags)=split('%',$lflags);
1135if (defined($postlflags)) { $lflags=$postlflags; }
1136else { $lflags=$prelflags; undef $prelflags; }
1137
cbecd29a
AP
1138if ($target =~ /^mingw/ && `$cc --target-help 2>&1` !~ m/\-mno\-cygwin/m)
1139 {
1140 $cflags =~ s/\-mno\-cygwin\s*//;
1141 $shared_ldflag =~ s/\-mno\-cygwin\s*//;
1142 }
1143
63d8834c
AP
1144if ($target =~ /linux.*\-mips/ && !$no_asm && $flags !~ /\-m(ips|arch=)/) {
1145 # minimally required architecture flags for assembly modules
1146 $cflags="-mips2 $cflags" if ($target =~ /mips32/);
1147 $cflags="-mips3 $cflags" if ($target =~ /mips64/);
1148}
1149
2964ba8c 1150my $no_shared_warn=0;
14bcdb08 1151my $no_user_cflags=0;
2964ba8c 1152
14bcdb08
AP
1153if ($flags ne "") { $cflags="$flags$cflags"; }
1154else { $no_user_cflags=1; }
5f8d5c96 1155
bc2aadad
GT
1156# The DSO code currently always implements all functions so that no
1157# applications will have to worry about that from a compilation point
1158# of view. However, the "method"s may return zero unless that platform
1159# has support compiled in for them. Currently each method is enabled
1160# by a define "DSO_<name>" ... we translate the "dso_scheme" config
1161# string entry into using the following logic;
eca57e92 1162my $dso_cflags;
bc2aadad
GT
1163if (!$no_dso && $dso_scheme ne "")
1164 {
9ec0126e 1165 $dso_scheme =~ tr/[a-z]/[A-Z]/;
bc2aadad
GT
1166 if ($dso_scheme eq "DLFCN")
1167 {
eca57e92 1168 $dso_cflags = "-DDSO_DLFCN -DHAVE_DLFCN_H";
bc2aadad
GT
1169 }
1170 elsif ($dso_scheme eq "DLFCN_NO_H")
1171 {
eca57e92 1172 $dso_cflags = "-DDSO_DLFCN";
bc2aadad
GT
1173 }
1174 else
1175 {
eca57e92 1176 $dso_cflags = "-DDSO_$dso_scheme";
bc2aadad 1177 }
eca57e92 1178 $cflags = "$dso_cflags $cflags";
bc2aadad 1179 }
9ec0126e 1180
5f8d5c96 1181my $thread_cflags;
fb044c59 1182my $thread_defines;
5f8d5c96
BM
1183if ($thread_cflag ne "(unknown)" && !$no_threads)
1184 {
1185 # If we know how to do it, support threads by default.
1186 $threads = 1;
1187 }
14bcdb08 1188if ($thread_cflag eq "(unknown)" && $threads)
5f8d5c96 1189 {
14bcdb08
AP
1190 # If the user asked for "threads", [s]he is also expected to
1191 # provide any system-dependent compiler options that are
1192 # necessary.
1193 if ($no_user_cflags)
1194 {
1195 print "You asked for multi-threading support, but didn't\n";
1196 print "provide any system-specific compiler options\n";
1197 exit(1);
1198 }
cf1b7d96
RL
1199 $thread_cflags="-DOPENSSL_THREADS $cflags" ;
1200 $thread_defines .= "#define OPENSSL_THREADS\n";
5f8d5c96
BM
1201 }
1202else
1203 {
cf1b7d96
RL
1204 $thread_cflags="-DOPENSSL_THREADS $thread_cflag $cflags";
1205 $thread_defines .= "#define OPENSSL_THREADS\n";
a7b991bd
BM
1206# my $def;
1207# foreach $def (split ' ',$thread_cflag)
1208# {
1209# if ($def =~ s/^-D// && $def !~ /^_/)
1210# {
1211# $thread_defines .= "#define $def\n";
1212# }
1213# }
fce0ba5f 1214 }
5f8d5c96 1215
95649972 1216$lflags="$libs$lflags" if ($libs ne "");
d02b48c6 1217
dfeab068
RE
1218if ($no_asm)
1219 {
6019cdd3 1220 $cpuid_obj=$bn_obj=$ec_obj=
ac71d81e 1221 $des_obj=$aes_obj=$bf_obj=$cast_obj=$rc4_obj=$rc5_obj=$cmll_obj=
22c2e80f
AP
1222 $modes_obj=$sha1_obj=$md5_obj=$rmd160_obj=$wp_obj=$engines_obj=
1223 $chacha_obj=$poly1305_obj="";
9fdb2cc5
DSH
1224 $cflags=~s/\-D[BL]_ENDIAN// if ($fips);
1225 $thread_cflags=~s/\-D[BL]_ENDIAN// if ($fips);
dfeab068 1226 }
03bc500a
DSH
1227elsif (defined($disabled{ec2m}))
1228 {
1229 $bn_obj =~ s/\w+-gf2m.o//;
1230 }
dfeab068 1231
6f7ac8e1
AP
1232if (!$no_shared)
1233 {
1234 $cast_obj=""; # CAST assembler is not PIC
1235 }
1236
5f8d5c96
BM
1237if ($threads)
1238 {
14bcdb08 1239 $cflags=$thread_cflags;
e452de9d
RL
1240 $openssl_thread_defines .= $thread_defines;
1241 }
1242
1243if ($zlib)
1244 {
1245 $cflags = "-DZLIB $cflags";
c9a112f5
BM
1246 if (defined($disabled{"zlib-dynamic"}))
1247 {
cc7399e7
DSH
1248 if (defined($withargs{"zlib-lib"}))
1249 {
1250 $lflags = "$lflags -L" . $withargs{"zlib-lib"} . " -lz";
1251 }
1252 else
1253 {
1254 $lflags = "$lflags -lz";
1255 }
c9a112f5
BM
1256 }
1257 else
1258 {
1259 $cflags = "-DZLIB_SHARED $cflags";
1260 }
5f8d5c96
BM
1261 }
1262
98186eb4
VD
1263# With "deprecated" disable all deprecated features.
1264if (defined($disabled{"deprecated"})) {
1265 $api = $maxapi;
1266}
07c4c14c 1267
d10dac11 1268# You will find shlib_mark1 and shlib_mark2 explained in Makefile.in
a22fb399 1269my $shared_mark = "";
6f7ac8e1
AP
1270if ($shared_target eq "")
1271 {
9fdb2cc5 1272 $no_shared_warn = 1 if !$no_shared && !$fips;
6f7ac8e1
AP
1273 $no_shared = 1;
1274 }
1275if (!$no_shared)
b436a982 1276 {
a22fb399
RL
1277 if ($shared_cflag ne "")
1278 {
28e276f1 1279 $cflags = "$shared_cflag -DOPENSSL_PIC $cflags";
a22fb399 1280 }
d2dcf4f4 1281 }
b436a982 1282
fbf002bb 1283if (!$IsMK1MF)
ecd45314 1284 {
4c1a6e00 1285 # add {no-}static-engine to options to allow mkdef.pl to work without extra arguments
fbf002bb
DSH
1286 if ($no_shared)
1287 {
1288 $openssl_other_defines.="#define OPENSSL_NO_DYNAMIC_ENGINE\n";
4c1a6e00 1289 $options.=" static-engine";
fbf002bb
DSH
1290 }
1291 else
1292 {
1293 $openssl_other_defines.="#define OPENSSL_NO_STATIC_ENGINE\n";
4c1a6e00 1294 $options.=" no-static-engine";
fbf002bb 1295 }
6cb68620 1296 }
ecd45314 1297
beef7145 1298$cpuid_obj.=" uplink.o uplink-x86.o" if ($cflags =~ /\-DOPENSSL_USE_APPLINK/);
1187ee7d 1299
c313e32a
AP
1300#
1301# Platform fix-ups
1302#
1303if ($target =~ /\-icc$/) # Intel C compiler
1a979201 1304 {
1187ee7d
AP
1305 my $iccver=0;
1306 if (open(FD,"$cc -V 2>&1 |"))
1307 {
1308 while(<FD>) { $iccver=$1 if (/Version ([0-9]+)\./); }
1309 close(FD);
1310 }
1a979201
AP
1311 if ($iccver>=8)
1312 {
cf5ecc3e 1313 $cflags=~s/\-KPIC/-fPIC/;
1a979201
AP
1314 # Eliminate unnecessary dependency from libirc.a. This is
1315 # essential for shared library support, as otherwise
1316 # apps/openssl can end up in endless loop upon startup...
1317 $cflags.=" -Dmemcpy=__builtin_memcpy -Dmemset=__builtin_memset";
1318 }
1187ee7d
AP
1319 if ($iccver>=9)
1320 {
cf5ecc3e
AP
1321 $lflags.=" -i-static";
1322 $lflags=~s/\-no_cpprt/-no-cpprt/;
1187ee7d
AP
1323 }
1324 if ($iccver>=10)
1325 {
cf5ecc3e
AP
1326 $lflags=~s/\-i\-static/-static-intel/;
1327 }
1328 if ($iccver>=11)
1329 {
1330 $cflags.=" -no-intel-extensions"; # disable Cilk
1331 $lflags=~s/\-no\-cpprt/-no-cxxlib/;
1187ee7d 1332 }
1a979201
AP
1333 }
1334
c313e32a
AP
1335# Unlike other OSes (like Solaris, Linux, Tru64, IRIX) BSD run-time
1336# linkers (tested OpenBSD, NetBSD and FreeBSD) "demand" RPATH set on
1337# .so objects. Apparently application RPATH is not global and does
1338# not apply to .so linked with other .so. Problem manifests itself
1339# when libssl.so fails to load libcrypto.so. One can argue that we
1340# should engrave this into Makefile.shared rules or into BSD-* config
1341# lines above. Meanwhile let's try to be cautious and pass -rpath to
1342# linker only when --prefix is not /usr.
1343if ($target =~ /^BSD\-/)
1344 {
c64879d3 1345 $shared_ldflag.=" -Wl,-rpath,\$\$(LIBRPATH)" if ($prefix !~ m|^/usr[/]*$|);
c313e32a
AP
1346 }
1347
cf1b7d96
RL
1348if ($sys_id ne "")
1349 {
68b00c23
RS
1350 #$cflags="-DOPENSSL_SYS_$sys_id $cflags";
1351 $openssl_sys_defines="#define OPENSSL_SYS_$sys_id\n";
cf1b7d96
RL
1352 }
1353
0396479d
BM
1354if ($ranlib eq "")
1355 {
1356 $ranlib = $default_ranlib;
1357 }
1358
1750ebcb
DSH
1359#my ($bn1)=split(/\s+/,$bn_obj);
1360#$bn1 = "" unless defined $bn1;
1361#$bn1=$bn_asm unless ($bn1 =~ /\.o$/);
1362#$bn_obj="$bn1";
1363
c9a112f5 1364$cpuid_obj="" if ($processor eq "386");
f8c469de 1365
1750ebcb 1366$bn_obj = $bn_asm unless $bn_obj ne "";
d05a4745
BM
1367# bn-586 is the only one implementing bn_*_part_words
1368$cflags.=" -DOPENSSL_BN_ASM_PART_WORDS" if ($bn_obj =~ /bn-586/);
4287ade5 1369$cflags.=" -DOPENSSL_IA32_SSE2" if (!$no_sse2 && $bn_obj =~ /86/);
dfeab068 1370
d05a4745 1371$cflags.=" -DOPENSSL_BN_ASM_MONT" if ($bn_obj =~ /-mont/);
361512da 1372$cflags.=" -DOPENSSL_BN_ASM_MONT5" if ($bn_obj =~ /-mont5/);
925596f8 1373$cflags.=" -DOPENSSL_BN_ASM_GF2m" if ($bn_obj =~ /-gf2m/);
5ac7bde7 1374
1ab2f7f1
DSH
1375if ($fips)
1376 {
1377 $openssl_other_defines.="#define OPENSSL_FIPS\n";
1ab2f7f1
DSH
1378 }
1379
b2dba9bf 1380$cpuid_obj="mem_clr.o" unless ($cpuid_obj =~ /\.o$/);
58964a49
RE
1381$des_obj=$des_enc unless ($des_obj =~ /\.o$/);
1382$bf_obj=$bf_enc unless ($bf_obj =~ /\.o$/);
1383$cast_obj=$cast_enc unless ($cast_obj =~ /\.o$/);
1384$rc4_obj=$rc4_enc unless ($rc4_obj =~ /\.o$/);
1385$rc5_obj=$rc5_enc unless ($rc5_obj =~ /\.o$/);
1386if ($sha1_obj =~ /\.o$/)
1387 {
1388# $sha1_obj=$sha1_enc;
d0590fe6
AP
1389 $cflags.=" -DSHA1_ASM" if ($sha1_obj =~ /sx86/ || $sha1_obj =~ /sha1/);
1390 $cflags.=" -DSHA256_ASM" if ($sha1_obj =~ /sha256/);
1391 $cflags.=" -DSHA512_ASM" if ($sha1_obj =~ /sha512/);
69216cc5 1392 if ($sha1_obj =~ /sse2/)
d0590fe6
AP
1393 { if ($no_sse2)
1394 { $sha1_obj =~ s/\S*sse2\S+//; }
1395 elsif ($cflags !~ /OPENSSL_IA32_SSE2/)
1396 { $cflags.=" -DOPENSSL_IA32_SSE2"; }
1397 }
58964a49
RE
1398 }
1399if ($md5_obj =~ /\.o$/)
1400 {
1401# $md5_obj=$md5_enc;
1402 $cflags.=" -DMD5_ASM";
1403 }
1404if ($rmd160_obj =~ /\.o$/)
1405 {
1406# $rmd160_obj=$rmd160_enc;
1407 $cflags.=" -DRMD160_ASM";
1408 }
d0590fe6
AP
1409if ($aes_obj =~ /\.o$/)
1410 {
e8d93e34 1411 $cflags.=" -DAES_ASM" if ($aes_obj =~ m/\baes\-/);;
77aae965 1412 # aes-ctr.o is not a real file, only indication that assembler
874a3757 1413 # module implements AES_ctr32_encrypt...
77aae965 1414 $cflags.=" -DAES_CTR_ASM" if ($aes_obj =~ s/\s*aes\-ctr\.o//);
478b50cf 1415 # aes-xts.o indicates presence of AES_xts_[en|de]crypt...
77aae965 1416 $cflags.=" -DAES_XTS_ASM" if ($aes_obj =~ s/\s*aes\-xts\.o//);
1db4a63b 1417 $aes_obj =~ s/\s*(vpaes|aesni)\-x86\.o//g if ($no_sse2);
8ca28da0 1418 $cflags.=" -DVPAES_ASM" if ($aes_obj =~ m/vpaes/);
993adc05 1419 $cflags.=" -DBSAES_ASM" if ($aes_obj =~ m/bsaes/);
d0590fe6 1420 }
7de4b5b0
AP
1421else {
1422 $aes_obj=$aes_enc;
1423 }
4c5e19b6 1424$wp_obj="" if ($wp_obj =~ /mmx/ && $processor eq "386");
ce0ed3b7 1425if ($wp_obj =~ /\.o$/ && !$disabled{"whirlpool"})
ed26604a 1426 {
4c5e19b6
AP
1427 $cflags.=" -DWHIRLPOOL_ASM";
1428 }
1429else {
1430 $wp_obj="wp_block.o";
ed26604a 1431 }
6a8517f2 1432$cmll_obj=$cmll_enc unless ($cmll_obj =~ /.o$/);
82741e9c 1433if ($modes_obj =~ /ghash\-/)
8a1c92ce
AP
1434 {
1435 $cflags.=" -DGHASH_ASM";
1436 }
84714790
AP
1437if ($ec_obj =~ /ecp_nistz256/)
1438 {
1439 $cflags.=" -DECP_NISTZ256_ASM";
1440 }
22c2e80f
AP
1441$chacha_obj=$chacha_enc unless ($chacha_obj =~ /\.o$/);
1442if ($poly1305_obj =~ /\.o$/)
1443 {
1444 $cflags.=" -DPOLY1305_ASM";
1445 }
d02b48c6 1446
1ed0c662
RL
1447# "Stringify" the C flags string. This permits it to be made part of a string
1448# and works as well on command lines.
1449$cflags =~ s/([\\\"])/\\\1/g;
1450
0973910f 1451my $version = "unknown";
fc6a6a10 1452my $version_num = "unknown";
0973910f
UM
1453my $major = "unknown";
1454my $minor = "unknown";
b436a982
RL
1455my $shlib_version_number = "unknown";
1456my $shlib_version_history = "unknown";
1457my $shlib_major = "unknown";
1458my $shlib_minor = "unknown";
0973910f 1459
dee502be 1460open(IN,'<include/openssl/opensslv.h') || die "unable to read opensslv.h:$!\n";
0973910f
UM
1461while (<IN>)
1462 {
1463 $version=$1 if /OPENSSL.VERSION.TEXT.*OpenSSL (\S+) /;
98186eb4 1464 $version_num=$1 if /OPENSSL.VERSION.NUMBER.*(0x\S+)/;
b436a982
RL
1465 $shlib_version_number=$1 if /SHLIB_VERSION_NUMBER *"([^"]+)"/;
1466 $shlib_version_history=$1 if /SHLIB_VERSION_HISTORY *"([^"]*)"/;
0973910f
UM
1467 }
1468close(IN);
b436a982 1469if ($shlib_version_history ne "") { $shlib_version_history .= ":"; }
0973910f 1470
1fac96e4 1471if ($version =~ /(^[0-9]*)\.([0-9\.]*)/)
0973910f
UM
1472 {
1473 $major=$1;
1474 $minor=$2;
1475 }
1476
b436a982
RL
1477if ($shlib_version_number =~ /(^[0-9]*)\.([0-9\.]*)/)
1478 {
1479 $shlib_major=$1;
1480 $shlib_minor=$2;
1481 }
1482
98186eb4
VD
1483if (defined($api)) {
1484 my $apiflag = sprintf("-DOPENSSL_API_COMPAT=%s", $apitable->{$api});
1485 $default_depflags .= " $apiflag";
1486 $cflags .= " $apiflag";
1487}
1488
58dd1ce9
EK
1489my $ecc = $cc;
1490$ecc = "clang" if `$cc --version 2>&1` =~ /clang/;
1491
0c28f277
DSH
1492if ($strict_warnings)
1493 {
1494 my $wopt;
f386742c 1495 die "ERROR --strict-warnings requires gcc or clang" unless ($ecc =~ /gcc(-\d(\.\d)*)?$/ or $ecc =~ /clang$/);
0c28f277
DSH
1496 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1497 {
6703c4ea 1498 $cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/)
0c28f277 1499 }
190c8c60
BL
1500 if ($ecc eq "clang")
1501 {
1502 foreach $wopt (split /\s+/, $clang_devteam_warn)
1503 {
6703c4ea 1504 $cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/)
190c8c60
BL
1505 }
1506 }
a1d3f3d1
RL
1507 if ($target !~ /^mingw/)
1508 {
1509 foreach $wopt (split /\s+/, $memleak_devteam_backtrace)
1510 {
1511 $cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/)
1512 }
28cbe2ab
BL
1513 if ($target =~ /^BSD-/)
1514 {
1515 $lflags .= " -lexecinfo";
1516 }
1517 }
0c28f277
DSH
1518 }
1519
d10dac11 1520open(IN,"<Makefile.in") || die "unable to read Makefile.in$!\n";
c2aa4f20
RL
1521unlink("$Makefile.new") || die "unable to remove old $Makefile.new:$!\n" if -e "$Makefile.new";
1522open(OUT,">$Makefile.new") || die "unable to create $Makefile.new:$!\n";
d10dac11 1523print OUT "### Generated automatically from Makefile.in by Configure.\n\n";
f5d7a031 1524my $sdirs=0;
edd4d402 1525
d02b48c6
RE
1526while (<IN>)
1527 {
67475a7e 1528 chomp;
f5d7a031 1529 $sdirs = 1 if /^SDIRS=/;
f5d7a031
UM
1530 if ($sdirs) {
1531 my $dir;
1532 foreach $dir (@skip) {
ed551cdd
DSH
1533 s/(\s)$dir /$1/;
1534 s/\s$dir$//;
f5d7a031
UM
1535 }
1536 }
f6f0420d 1537 $sdirs = 0 unless /\\$/;
7e23e857 1538 s/fips // if (/^DIRS=/ && !$fips);
a63bf2c5 1539 s/engines // if (/^DIRS=/ && $disabled{"engine"});
0973910f
UM
1540 s/^VERSION=.*/VERSION=$version/;
1541 s/^MAJOR=.*/MAJOR=$major/;
1542 s/^MINOR=.*/MINOR=$minor/;
b436a982
RL
1543 s/^SHLIB_VERSION_NUMBER=.*/SHLIB_VERSION_NUMBER=$shlib_version_number/;
1544 s/^SHLIB_VERSION_HISTORY=.*/SHLIB_VERSION_HISTORY=$shlib_version_history/;
1545 s/^SHLIB_MAJOR=.*/SHLIB_MAJOR=$shlib_major/;
1546 s/^SHLIB_MINOR=.*/SHLIB_MINOR=$shlib_minor/;
a22fb399 1547 s/^SHLIB_EXT=.*/SHLIB_EXT=$shared_extension/;
e5f3045f 1548 s/^INSTALLTOP=.*$/INSTALLTOP=$prefix/;
c23632d3 1549 s/^MULTILIB=.*$/MULTILIB=$multilib/;
462ba4f6 1550 s/^OPENSSLDIR=.*$/OPENSSLDIR=$openssldir/;
6727565a 1551 s/^LIBDIR=.*$/LIBDIR=$libdir/;
e5f3045f 1552 s/^INSTALL_PREFIX=.*$/INSTALL_PREFIX=$install_prefix/;
dfeab068 1553 s/^PLATFORM=.*$/PLATFORM=$target/;
31ff97b2 1554 s/^OPTIONS=.*$/OPTIONS=$options/;
fe05264e 1555 my $argvstring = "(".join(", ", map { quotify("perl", $_) } @argvcopy).")";
c59cb511 1556 s/^CONFIGURE_ARGS=.*$/CONFIGURE_ARGS=$argvstring/;
cbfb39d1
AP
1557 if ($cross_compile_prefix)
1558 {
8aab301b
DSH
1559 s/^CC=.*$/CROSS_COMPILE= $cross_compile_prefix\nCC= \$\(CROSS_COMPILE\)$cc/;
1560 s/^AR=\s*/AR= \$\(CROSS_COMPILE\)/;
1561 s/^NM=\s*/NM= \$\(CROSS_COMPILE\)/;
1562 s/^RANLIB=\s*/RANLIB= \$\(CROSS_COMPILE\)/;
1563 s/^MAKEDEPPROG=.*$/MAKEDEPPROG= \$\(CROSS_COMPILE\)$cc/ if $cc eq "gcc";
cbfb39d1
AP
1564 }
1565 else {
1566 s/^CC=.*$/CC= $cc/;
8844a69c 1567 s/^AR=\s*ar/AR= $ar/;
cbfb39d1 1568 s/^RANLIB=.*/RANLIB= $ranlib/;
58dd1ce9 1569 s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $ecc eq "gcc" || $ecc eq "clang";
cbfb39d1 1570 }
d02b48c6 1571 s/^CFLAG=.*$/CFLAG= $cflags/;
7a762197 1572 s/^DEPFLAG=.*$/DEPFLAG=$depflags/;
d6c76457 1573 s/^PEX_LIBS=.*$/PEX_LIBS= $prelflags/;
d02b48c6 1574 s/^EX_LIBS=.*$/EX_LIBS= $lflags/;
967d95f0 1575 s/^EXE_EXT=.*$/EXE_EXT= $exe_ext/;
14e21f86 1576 s/^CPUID_OBJ=.*$/CPUID_OBJ= $cpuid_obj/;
06287285 1577 s/^BN_ASM=.*$/BN_ASM= $bn_obj/;
6019cdd3 1578 s/^EC_ASM=.*$/EC_ASM= $ec_obj/;
d02b48c6 1579 s/^DES_ENC=.*$/DES_ENC= $des_obj/;
0ddd3ea2 1580 s/^AES_ENC=.*$/AES_ENC= $aes_obj/;
d02b48c6 1581 s/^BF_ENC=.*$/BF_ENC= $bf_obj/;
58964a49
RE
1582 s/^CAST_ENC=.*$/CAST_ENC= $cast_obj/;
1583 s/^RC4_ENC=.*$/RC4_ENC= $rc4_obj/;
1584 s/^RC5_ENC=.*$/RC5_ENC= $rc5_obj/;
1585 s/^MD5_ASM_OBJ=.*$/MD5_ASM_OBJ= $md5_obj/;
1586 s/^SHA1_ASM_OBJ=.*$/SHA1_ASM_OBJ= $sha1_obj/;
1587 s/^RMD160_ASM_OBJ=.*$/RMD160_ASM_OBJ= $rmd160_obj/;
ed26604a 1588 s/^WP_ASM_OBJ=.*$/WP_ASM_OBJ= $wp_obj/;
6a8517f2 1589 s/^CMLL_ENC=.*$/CMLL_ENC= $cmll_obj/;
8a1c92ce 1590 s/^MODES_ASM_OBJ.=*$/MODES_ASM_OBJ= $modes_obj/;
22c2e80f
AP
1591 s/^CHACHA_ENC=.*$/CHACHA_ENC= $chacha_obj/;
1592 s/^POLY1305_ASM_OBJ=.*$/POLY1305_ASM_OBJ= $poly1305_obj/;
ed28aef8 1593 s/^ENGINES_ASM_OBJ.=*$/ENGINES_ASM_OBJ= $engines_obj/;
fa8e921f 1594 s/^PERLASM_SCHEME=.*$/PERLASM_SCHEME= $perlasm_scheme/;
2613c1fa 1595 s/^PROCESSOR=.*/PROCESSOR= $processor/;
179add2b 1596 s/^ARFLAGS=.*/ARFLAGS= $arflags/;
99aab161 1597 s/^PERL=.*/PERL= $perl/;
ad2695b1
DSH
1598 s/^LIBZLIB=.*/LIBZLIB=$withargs{"zlib-lib"}/;
1599 s/^ZLIB_INCLUDE=.*/ZLIB_INCLUDE=$withargs{"zlib-include"}/;
1ab2f7f1 1600 s/^FIPSLIBDIR=.*/FIPSLIBDIR=$fipslibdir/;
d47d0d2b
DSH
1601 s/^FIPSCANLIB=.*/FIPSCANLIB=libcrypto/ if $fips;
1602 s/^SHARED_FIPS=.*/SHARED_FIPS=/;
1603 s/^SHLIBDIRS=.*/SHLIBDIRS= crypto ssl/;
1ab2f7f1 1604 s/^BASEADDR=.*/BASEADDR=$baseaddr/;
b436a982 1605 s/^SHLIB_TARGET=.*/SHLIB_TARGET=$shared_target/;
a22fb399
RL
1606 s/^SHLIB_MARK=.*/SHLIB_MARK=$shared_mark/;
1607 s/^SHARED_LIBS=.*/SHARED_LIBS=\$(SHARED_CRYPTO) \$(SHARED_SSL)/ if (!$no_shared);
0fd44e2d
RL
1608 if ($shared_extension ne "" && $shared_extension =~ /^\.s([ol])\.[^\.]*$/)
1609 {
1610 my $sotmp = $1;
07c08ed4
RL
1611 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.s$sotmp/;
1612 }
1613 elsif ($shared_extension ne "" && $shared_extension =~ /^\.[^\.]*\.dylib$/)
1614 {
1615 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.dylib/;
0fd44e2d
RL
1616 }
1617 elsif ($shared_extension ne "" && $shared_extension =~ /^\.s([ol])\.[^\.]*\.[^\.]*$/)
1618 {
1619 my $sotmp = $1;
1620 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.s$sotmp.\$(SHLIB_MAJOR) .s$sotmp/;
1621 }
07c08ed4
RL
1622 elsif ($shared_extension ne "" && $shared_extension =~ /^\.[^\.]*\.[^\.]*\.dylib$/)
1623 {
1624 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.\$(SHLIB_MAJOR).dylib .dylib/;
1625 }
a5595fde 1626 s/^SHARED_LDFLAGS=.*/SHARED_LDFLAGS=$shared_ldflag/;
d02b48c6
RE
1627 print OUT $_."\n";
1628 }
1629close(IN);
1630close(OUT);
d10dac11 1631rename($Makefile,"$Makefile.orig") || die "unable to rename $Makefile\n" if -e $Makefile;
c2aa4f20 1632rename("$Makefile.new",$Makefile) || die "unable to rename $Makefile.new\n";
f2d4be3b 1633
58964a49
RE
1634print "CC =$cc\n";
1635print "CFLAG =$cflags\n";
1636print "EX_LIBS =$lflags\n";
b7efa56a 1637print "CPUID_OBJ =$cpuid_obj\n";
06287285 1638print "BN_ASM =$bn_obj\n";
6019cdd3 1639print "EC_ASM =$ec_obj\n";
58964a49 1640print "DES_ENC =$des_obj\n";
0ddd3ea2 1641print "AES_ENC =$aes_obj\n";
58964a49
RE
1642print "BF_ENC =$bf_obj\n";
1643print "CAST_ENC =$cast_obj\n";
1644print "RC4_ENC =$rc4_obj\n";
1645print "RC5_ENC =$rc5_obj\n";
1646print "MD5_OBJ_ASM =$md5_obj\n";
1647print "SHA1_OBJ_ASM =$sha1_obj\n";
1648print "RMD160_OBJ_ASM=$rmd160_obj\n";
8a1c92ce
AP
1649print "CMLL_ENC =$cmll_obj\n";
1650print "MODES_OBJ =$modes_obj\n";
ed28aef8 1651print "ENGINES_OBJ =$engines_obj\n";
22c2e80f
AP
1652print "CHACHA_ENC =$chacha_obj\n";
1653print "POLY1305_OBJ =$poly1305_obj\n";
2613c1fa 1654print "PROCESSOR =$processor\n";
99aab161 1655print "RANLIB =$ranlib\n";
179add2b 1656print "ARFLAGS =$arflags\n";
99aab161 1657print "PERL =$perl\n";
d02b48c6 1658
1641cb60
BL
1659my $des_ptr=0;
1660my $des_risc1=0;
1661my $des_risc2=0;
1662my $des_unroll=0;
1663my $bn_ll=0;
1664my $def_int=2;
1665my $rc4_int=$def_int;
1666my $md2_int=$def_int;
1667my $idea_int=$def_int;
1668my $rc2_int=$def_int;
1669my $rc4_idx=0;
2dae04d0 1670my $rc4_chunk=0;
1641cb60
BL
1671my $bf_ptr=0;
1672my @type=("char","short","int","long");
1673my ($b64l,$b64,$b32,$b16,$b8)=(0,0,1,0,0);
62dc5aad 1674my $export_var_as_fn=0;
1641cb60
BL
1675
1676my $des_int;
d02b48c6
RE
1677
1678foreach (sort split(/\s+/,$bn_ops))
1679 {
1680 $des_ptr=1 if /DES_PTR/;
1681 $des_risc1=1 if /DES_RISC1/;
1682 $des_risc2=1 if /DES_RISC2/;
1683 $des_unroll=1 if /DES_UNROLL/;
1684 $des_int=1 if /DES_INT/;
1685 $bn_ll=1 if /BN_LLONG/;
1686 $rc4_int=0 if /RC4_CHAR/;
1687 $rc4_int=3 if /RC4_LONG/;
1688 $rc4_idx=1 if /RC4_INDEX/;
2dae04d0
AP
1689 $rc4_chunk=1 if /RC4_CHUNK/;
1690 $rc4_chunk=2 if /RC4_CHUNK_LL/;
d02b48c6
RE
1691 $md2_int=0 if /MD2_CHAR/;
1692 $md2_int=3 if /MD2_LONG/;
1693 $idea_int=1 if /IDEA_SHORT/;
1694 $idea_int=3 if /IDEA_LONG/;
1695 $rc2_int=1 if /RC2_SHORT/;
1696 $rc2_int=3 if /RC2_LONG/;
1697 $bf_ptr=1 if $_ eq "BF_PTR";
1698 $bf_ptr=2 if $_ eq "BF_PTR2";
d02b48c6 1699 ($b64l,$b64,$b32,$b16,$b8)=(0,1,0,0,0) if /SIXTY_FOUR_BIT/;
58964a49 1700 ($b64l,$b64,$b32,$b16,$b8)=(1,0,0,0,0) if /SIXTY_FOUR_BIT_LONG/;
d02b48c6
RE
1701 ($b64l,$b64,$b32,$b16,$b8)=(0,0,1,0,0) if /THIRTY_TWO_BIT/;
1702 ($b64l,$b64,$b32,$b16,$b8)=(0,0,0,1,0) if /SIXTEEN_BIT/;
1703 ($b64l,$b64,$b32,$b16,$b8)=(0,0,0,0,1) if /EIGHT_BIT/;
62dc5aad 1704 $export_var_as_fn=1 if /EXPORT_VAR_AS_FN/;
d02b48c6
RE
1705 }
1706
8e10f2b3 1707open(IN,'<crypto/opensslconf.h.in') || die "unable to read crypto/opensslconf.h.in:$!\n";
dee502be
RL
1708unlink("include/openssl/opensslconf.h.new") || die "unable to remove old include/openssl/opensslconf.h.new:$!\n" if -e "include/openssl/opensslconf.h.new";
1709open(OUT,'>include/openssl/opensslconf.h.new') || die "unable to create include/openssl/opensslconf.h.new:$!\n";
26dc267f 1710print OUT "/* opensslconf.h */\n";
fb044c59 1711print OUT "/* WARNING: Generated automatically from opensslconf.h.in by Configure. */\n\n";
26dc267f 1712
17e80c6b
RS
1713print OUT "#ifdef __cplusplus\n";
1714print OUT "extern \"C\" {\n";
1715print OUT "#endif\n";
26dc267f 1716print OUT "/* OpenSSL was configured with the following options: */\n";
98186eb4
VD
1717
1718my $openssl_api_defines = "";
1719if (defined($api)) {
1720 $openssl_api_defines = sprintf "#define OPENSSL_MIN_API %s\n", $apitable->{$api};
1721}
5031a89d 1722my $openssl_algorithm_defines_trans = $openssl_algorithm_defines;
7a762197 1723$openssl_experimental_defines =~ s/^\s*#\s*define\s+OPENSSL_NO_(.*)/#ifndef OPENSSL_EXPERIMENTAL_$1\n# ifndef OPENSSL_NO_$1\n# define OPENSSL_NO_$1\n# endif\n#endif/mg;
5031a89d 1724$openssl_algorithm_defines_trans =~ s/^\s*#\s*define\s+OPENSSL_(.*)/# if defined(OPENSSL_$1) \&\& !defined($1)\n# define $1\n# endif/mg;
cf1b7d96 1725$openssl_algorithm_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
fb77c6fb 1726$openssl_algorithm_defines = " /* no ciphers excluded */\n" if $openssl_algorithm_defines eq "";
cf1b7d96
RL
1727$openssl_thread_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
1728$openssl_sys_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
1729$openssl_other_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
98186eb4 1730
cf1b7d96 1731print OUT $openssl_sys_defines;
75e98d05 1732print OUT "#ifndef OPENSSL_DOING_MAKEDEPEND\n\n";
7a762197 1733print OUT $openssl_experimental_defines;
98186eb4 1734print OUT $openssl_api_defines;
7a762197 1735print OUT "\n";
cf1b7d96 1736print OUT $openssl_algorithm_defines;
7a762197 1737print OUT "\n#endif /* OPENSSL_DOING_MAKEDEPEND */\n\n";
cf1b7d96
RL
1738print OUT $openssl_thread_defines;
1739print OUT $openssl_other_defines,"\n";
26dc267f 1740
5031a89d
RL
1741print OUT "/* The OPENSSL_NO_* macros are also defined as NO_* if the application\n";
1742print OUT " asks for it. This is a transient feature that is provided for those\n";
1743print OUT " who haven't had the time to do the appropriate changes in their\n";
1744print OUT " applications. */\n";
1745print OUT "#ifdef OPENSSL_ALGORITHM_DEFINES\n";
1746print OUT $openssl_algorithm_defines_trans;
1747print OUT "#endif\n\n";
1748
b2dba9bf 1749print OUT "#define OPENSSL_CPUID_OBJ\n\n" if ($cpuid_obj ne "mem_clr.o");
ebaec63e 1750
d02b48c6
RE
1751while (<IN>)
1752 {
cd46aa4a 1753 if (/^#define\s+OPENSSLDIR/)
f9afd9f8
GT
1754 {
1755 my $foo = $openssldir;
1756 $foo =~ s/\\/\\\\/g;
1757 print OUT "#define OPENSSLDIR \"$foo\"\n";
1758 }
90819805 1759 elsif (/^#define\s+ENGINESDIR/)
f9afd9f8 1760 {
6a9d28f9 1761 my $foo = "$prefix/$libdir/engines";
f9afd9f8
GT
1762 $foo =~ s/\\/\\\\/g;
1763 print OUT "#define ENGINESDIR \"$foo\"\n";
1764 }
62dc5aad
RL
1765 elsif (/^#((define)|(undef))\s+OPENSSL_EXPORT_VAR_AS_FUNCTION/)
1766 { printf OUT "#undef OPENSSL_EXPORT_VAR_AS_FUNCTION\n"
1767 if $export_var_as_fn;
1768 printf OUT "#%s OPENSSL_EXPORT_VAR_AS_FUNCTION\n",
1769 ($export_var_as_fn)?"define":"undef"; }
e766a681
BM
1770 elsif (/^#define\s+OPENSSL_UNISTD/)
1771 {
1772 $unistd = "<unistd.h>" if $unistd eq "";
1773 print OUT "#define OPENSSL_UNISTD $unistd\n";
1774 }
462ba4f6 1775 elsif (/^#((define)|(undef))\s+SIXTY_FOUR_BIT_LONG/)
d02b48c6
RE
1776 { printf OUT "#%s SIXTY_FOUR_BIT_LONG\n",($b64l)?"define":"undef"; }
1777 elsif (/^#((define)|(undef))\s+SIXTY_FOUR_BIT/)
1778 { printf OUT "#%s SIXTY_FOUR_BIT\n",($b64)?"define":"undef"; }
1779 elsif (/^#((define)|(undef))\s+THIRTY_TWO_BIT/)
1780 { printf OUT "#%s THIRTY_TWO_BIT\n",($b32)?"define":"undef"; }
1781 elsif (/^#((define)|(undef))\s+SIXTEEN_BIT/)
1782 { printf OUT "#%s SIXTEEN_BIT\n",($b16)?"define":"undef"; }
1783 elsif (/^#((define)|(undef))\s+EIGHT_BIT/)
1784 { printf OUT "#%s EIGHT_BIT\n",($b8)?"define":"undef"; }
1785 elsif (/^#((define)|(undef))\s+BN_LLONG\s*$/)
1786 { printf OUT "#%s BN_LLONG\n",($bn_ll)?"define":"undef"; }
bdb1d0c2
VD
1787 elsif (/^\#define\s+OSSL_DES_LONG\s+.*/)
1788 { printf OUT "#define OSSL_DES_LONG unsigned %s\n",
d02b48c6 1789 ($des_int)?'int':'long'; }
8e10f2b3 1790 elsif (/^\#(define|undef)\s+DES_PTR/)
d02b48c6
RE
1791 { printf OUT "#%s DES_PTR\n",($des_ptr)?'define':'undef'; }
1792 elsif (/^\#(define|undef)\s+DES_RISC1/)
1793 { printf OUT "#%s DES_RISC1\n",($des_risc1)?'define':'undef'; }
1794 elsif (/^\#(define|undef)\s+DES_RISC2/)
1795 { printf OUT "#%s DES_RISC2\n",($des_risc2)?'define':'undef'; }
1796 elsif (/^\#(define|undef)\s+DES_UNROLL/)
1797 { printf OUT "#%s DES_UNROLL\n",($des_unroll)?'define':'undef'; }
8e10f2b3 1798 elsif (/^#define\s+RC4_INT\s/)
d02b48c6 1799 { printf OUT "#define RC4_INT unsigned %s\n",$type[$rc4_int]; }
2dae04d0
AP
1800 elsif (/^#undef\s+RC4_CHUNK/)
1801 {
1802 printf OUT "#undef RC4_CHUNK\n" if $rc4_chunk==0;
1803 printf OUT "#define RC4_CHUNK unsigned long\n" if $rc4_chunk==1;
1804 printf OUT "#define RC4_CHUNK unsigned long long\n" if $rc4_chunk==2;
1805 }
8e10f2b3 1806 elsif (/^#((define)|(undef))\s+RC4_INDEX/)
d02b48c6 1807 { printf OUT "#%s RC4_INDEX\n",($rc4_idx)?"define":"undef"; }
8e7f966b 1808 elsif (/^#(define|undef)\s+I386_ONLY/)
c9a112f5 1809 { printf OUT "#%s I386_ONLY\n", ($processor eq "386")?
8e7f966b 1810 "define":"undef"; }
8e10f2b3 1811 elsif (/^#define\s+MD2_INT\s/)
d02b48c6 1812 { printf OUT "#define MD2_INT unsigned %s\n",$type[$md2_int]; }
8e10f2b3 1813 elsif (/^#define\s+IDEA_INT\s/)
d02b48c6 1814 {printf OUT "#define IDEA_INT unsigned %s\n",$type[$idea_int];}
8e10f2b3 1815 elsif (/^#define\s+RC2_INT\s/)
d02b48c6 1816 {printf OUT "#define RC2_INT unsigned %s\n",$type[$rc2_int];}
8e10f2b3 1817 elsif (/^#(define|undef)\s+BF_PTR/)
d02b48c6
RE
1818 {
1819 printf OUT "#undef BF_PTR\n" if $bf_ptr == 0;
1820 printf OUT "#define BF_PTR\n" if $bf_ptr == 1;
1821 printf OUT "#define BF_PTR2\n" if $bf_ptr == 2;
8e10f2b3 1822 }
d02b48c6
RE
1823 else
1824 { print OUT $_; }
1825 }
5dfc369f 1826close(IN);
17e80c6b
RS
1827print OUT "#ifdef __cplusplus\n";
1828print OUT "}\n";
1829print OUT "#endif\n";
5dfc369f 1830close(OUT);
dee502be
RL
1831rename("include/openssl/opensslconf.h","include/openssl/opensslconf.h.bak") || die "unable to rename include/openssl/opensslconf.h\n" if -e "include/openssl/opensslconf.h";
1832rename("include/openssl/opensslconf.h.new","include/openssl/opensslconf.h") || die "unable to rename include/openssl/opensslconf.h.new\n";
9becf666 1833
e766a681 1834
9becf666
DSH
1835# Fix the date
1836
d02b48c6
RE
1837print "SIXTY_FOUR_BIT_LONG mode\n" if $b64l;
1838print "SIXTY_FOUR_BIT mode\n" if $b64;
1839print "THIRTY_TWO_BIT mode\n" if $b32;
1840print "SIXTEEN_BIT mode\n" if $b16;
1841print "EIGHT_BIT mode\n" if $b8;
1842print "DES_PTR used\n" if $des_ptr;
1843print "DES_RISC1 used\n" if $des_risc1;
1844print "DES_RISC2 used\n" if $des_risc2;
1845print "DES_UNROLL used\n" if $des_unroll;
1846print "DES_INT used\n" if $des_int;
1847print "BN_LLONG mode\n" if $bn_ll;
1848print "RC4 uses u$type[$rc4_int]\n" if $rc4_int != $def_int;
1849print "RC4_INDEX mode\n" if $rc4_idx;
2dae04d0
AP
1850print "RC4_CHUNK is undefined\n" if $rc4_chunk==0;
1851print "RC4_CHUNK is unsigned long\n" if $rc4_chunk==1;
1852print "RC4_CHUNK is unsigned long long\n" if $rc4_chunk==2;
d02b48c6
RE
1853print "MD2 uses u$type[$md2_int]\n" if $md2_int != $def_int;
1854print "IDEA uses u$type[$idea_int]\n" if $idea_int != $def_int;
1855print "RC2 uses u$type[$rc2_int]\n" if $rc2_int != $def_int;
fce0ba5f
FLM
1856print "BF_PTR used\n" if $bf_ptr == 1;
1857print "BF_PTR2 used\n" if $bf_ptr == 2;
cba5068d 1858
d10dac11
RS
1859# Copy all Makefile.in to Makefile (except top-level)
1860use File::Find;
1861use IO::File;
1862find(sub {
1863 return if ($_ ne "Makefile.in" || $File::Find::dir eq ".");
1864 my $in = IO::File->new($_, "r") or
1865 die sprintf "Error reading Makefile.in in %s: !$\n",
1866 $File::Find::dir;
1867 my $out = IO::File->new("Makefile", "w") or
1868 die sprintf "Error writing Makefile in %s: !$\n",
1869 $File::Find::dir;
1870 print $out "# Generated from $_, do not edit\n";
1871 while (my $line = <$in>) { print $out $line }
1872 $in->close() or
1873 die sprintf "Error reading Makefile.in in %s: !$\n",
1874 $File::Find::dir;
1875 $out->close() or
ef30a684 1876 die sprintf "Error writing Makefile in %s: !$\n",
d10dac11
RS
1877 $File::Find::dir;
1878 }, ".");
1879
fd9ad230
RL
1880{
1881 my $perlguess = $perl =~ m@^/@ ? $perl : '/usr/local/bin/perl';
1882
1883 &dofile("tools/c_rehash",$perlguess,
1884 '^#!/' => '#!%s',
1885 '^my \$dir;$' => 'my $dir = "' . $openssldir . '";',
1886 '^my \$prefix;$' => 'my $prefix = "' . $prefix . '";');
1887 &dofile("apps/CA.pl",$perl,
1888 '^#!/' => '#!%s');
1889}
4d8743f4 1890if($IsMK1MF) {
664b9985 1891 open (OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
76ffb43d 1892 printf OUT <<"EOF";
57119943
BM
1893#ifndef MK1MF_BUILD
1894 /* auto-generated by Configure for crypto/cversion.c:
1895 * for Unix builds, crypto/Makefile.ssl generates functional definitions;
1896 * Windows builds (and other mk1mf builds) compile cversion.c with
1897 * -DMK1MF_BUILD and use definitions added to this file by util/mk1mf.pl. */
1898 #error "Windows builds (PLATFORM=$target) use mk1mf.pl-created Makefiles"
1899#endif
9e935d7e 1900EOF
8e10f2b3 1901 close(OUT);
a1e464f9 1902} else {
dafd8333 1903 my $make_command = "$make PERL=\'$perl\'";
451dc18f 1904 my $make_targets = "";
ab185b60 1905 $make_targets .= " depend" if $depflags ne $default_depflags && $make_depend;
cde8ad1a 1906 (system $make_command.$make_targets) == 0 or die "make $make_targets failed"
451dc18f 1907 if $make_targets ne "";
78c990c1 1908 if ($depflags ne $default_depflags && !$make_depend) {
2e31ef03
RS
1909 $warn_make_depend++;
1910 }
8e10f2b3
UM
1911}
1912
fc6a6a10 1913# create the ms/version32.rc file if needed
eef0c1f3 1914if ($IsMK1MF && ($target !~ /^netware/)) {
fc6a6a10 1915 my ($v1, $v2, $v3, $v4);
85d7bdf0 1916 if ($version_num =~ /^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{1})L$/i) {
fc6a6a10
DSH
1917 $v1=hex $1;
1918 $v2=hex $2;
1919 $v3=hex $3;
1920 $v4=hex $4;
1921 }
1922 open (OUT,">ms/version32.rc") || die "Can't open ms/version32.rc";
76ffb43d 1923 print OUT <<"EOF";
fc6a6a10
DSH
1924#include <winver.h>
1925
1926LANGUAGE 0x09,0x01
1927
19281 VERSIONINFO
1929 FILEVERSION $v1,$v2,$v3,$v4
1930 PRODUCTVERSION $v1,$v2,$v3,$v4
1931 FILEFLAGSMASK 0x3fL
1932#ifdef _DEBUG
1933 FILEFLAGS 0x01L
1934#else
1935 FILEFLAGS 0x00L
1936#endif
1937 FILEOS VOS__WINDOWS32
1938 FILETYPE VFT_DLL
1939 FILESUBTYPE 0x0L
1940BEGIN
1941 BLOCK "StringFileInfo"
1942 BEGIN
1943 BLOCK "040904b0"
1944 BEGIN
fce0ba5f 1945 // Required:
fc6a6a10
DSH
1946 VALUE "CompanyName", "The OpenSSL Project, http://www.openssl.org/\\0"
1947 VALUE "FileDescription", "OpenSSL Shared Library\\0"
1948 VALUE "FileVersion", "$version\\0"
1949#if defined(CRYPTO)
1950 VALUE "InternalName", "libeay32\\0"
1951 VALUE "OriginalFilename", "libeay32.dll\\0"
1952#elif defined(SSL)
1953 VALUE "InternalName", "ssleay32\\0"
1954 VALUE "OriginalFilename", "ssleay32.dll\\0"
a479d72d 1955#endif
fc6a6a10
DSH
1956 VALUE "ProductName", "The OpenSSL Toolkit\\0"
1957 VALUE "ProductVersion", "$version\\0"
1958 // Optional:
1959 //VALUE "Comments", "\\0"
51cbee35 1960 VALUE "LegalCopyright", "Copyright © 1998-2015 The OpenSSL Project. Copyright © 1995-1998 Eric A. Young, Tim J. Hudson. All rights reserved.\\0"
fc6a6a10
DSH
1961 //VALUE "LegalTrademarks", "\\0"
1962 //VALUE "PrivateBuild", "\\0"
1963 //VALUE "SpecialBuild", "\\0"
1964 END
1965 END
1966 BLOCK "VarFileInfo"
1967 BEGIN
1968 VALUE "Translation", 0x409, 0x4b0
1969 END
1970END
1971EOF
1972 close(OUT);
1973 }
fce0ba5f 1974
76ffb43d 1975print <<"EOF";
63d3f44a 1976
89ec98e0 1977Configured for $target.
63d3f44a 1978EOF
5f8d5c96 1979
76ffb43d 1980print <<"EOF" if (!$no_threads && !$threads);
5f8d5c96
BM
1981
1982The library could not be configured for supporting multi-threaded
1983applications as the compiler options required on this system are not known.
ff1b7e09 1984See file INSTALL for details if you need multi-threading.
ec577822
BM
1985EOF
1986
76ffb43d 1987print <<"EOF" if ($no_shared_warn);
2964ba8c 1988
2e31ef03
RS
1989You gave the option 'shared', which is not supported on this platform, so
1990we will pretend you gave the option 'no-shared'. If you know how to implement
1991shared libraries, please let us know (but please first make sure you have
1992tried with a current version of OpenSSL).
1993EOF
1994
76ffb43d 1995print <<"EOF" if ($warn_make_depend);
2e31ef03
RS
1996
1997*** Because of configuration changes, you MUST do the following before
1998*** building:
1999
2000 make depend
2964ba8c
RL
2001EOF
2002
d02b48c6
RE
2003exit(0);
2004
bd5192b1
RL
2005######################################################################
2006#
2007# Helpers and utility functions
2008#
2009
2010# Configuration file reading #########################################
2011
2012# Helper function to implement conditional inheritance depending on the
2013# value of $no_asm. Used in inherit_from values as follows:
2014#
2015# inherit_from => [ "template", asm("asm_tmpl") ]
2016#
2017sub asm {
2018 my @x = @_;
2019 sub {
2020 $no_asm ? () : @x;
2021 }
2022}
2023
2024# configuration reader, evaluates the input file as a perl script and expects
2025# it to fill %targets with target configurations. Those are then added to
2026# %table.
2027sub read_config {
2028 my $fname = shift;
2029 open(CONFFILE, "< $fname")
2030 or die "Can't open configuration file '$fname'!\n";
2031 my $x = $/;
2032 undef $/;
2033 my $content = <CONFFILE>;
2034 $/ = $x;
2035 close(CONFFILE);
2036 my %targets = ();
2037 {
2038 local %table = %::table; # Protect %table from tampering
2039
2040 eval $content;
2041 warn $@ if $@;
2042 }
2043
2044 # For each target, check that it's configured with a hash table.
2045 foreach (keys %targets) {
2046 if (ref($targets{$_}) ne "HASH") {
2047 if (ref($targets{$_}) eq "") {
2048 warn "Deprecated target configuration for $_, ignoring...\n";
2049 } else {
2050 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2051 }
2052 delete $targets{$_};
2053 }
2054 }
2055
2056 %table = (%table, %targets);
2057
2058}
2059
2060# configuration resolver. Will only resolve all the lazy evalutation
2061# codeblocks for the chozen target and all those it inherits from,
2062# recursively
2063sub resolve_config {
2064 my $target = shift;
2065 my @breadcrumbs = @_;
2066
2067 if (grep { $_ eq $target } @breadcrumbs) {
2068 die "inherit_from loop! target backtrace:\n "
2069 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
2070 }
2071
2072 if (!defined($table{$target})) {
2073 warn "Warning! target $target doesn't exist!\n";
2074 return ();
2075 }
2076 # Recurse through all inheritances. They will be resolved on the
2077 # fly, so when this operation is done, they will all just be a
2078 # bunch of attributes with string values.
2079 # What we get here, though, are keys with references to lists of
2080 # the combined values of them all. We will deal with lists after
2081 # this stage is done.
2082 my %combined_inheritance = ();
2083 if ($table{$target}->{inherit_from}) {
2084 my @inherit_from =
2085 map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2086 foreach (@inherit_from) {
2087 my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2088
2089 # 'template' is a marker that's considered private to
2090 # the config that had it.
2091 delete $inherited_config{template};
2092
2093 map {
2094 if (!$combined_inheritance{$_}) {
2095 $combined_inheritance{$_} = [];
2096 }
2097 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2098 } keys %inherited_config;
2099 }
2100 }
2101
2102 # We won't need inherit_from in this target any more, since we've
2103 # resolved all the inheritances that lead to this
2104 delete $table{$target}->{inherit_from};
2105
2106 # Now is the time to deal with those lists. Here's the place to
2107 # decide what shall be done with those lists, all based on the
2108 # values of the target we're currently dealing with.
2109 # - If a value is a coderef, it will be executed with the list of
2110 # inherited values as arguments.
2111 # - If the corresponding key doesn't have a value at all or is the
2112 # emoty string, the inherited value list will be run through the
2113 # default combiner (below), and the result becomes this target's
2114 # value.
2115 # - Otherwise, this target's value is assumed to be a string that
2116 # will simply override the inherited list of values.
2117 my $default_combiner = sub { join(' ',@_) };
2118
2119 my %all_keys =
2120 map { $_ => 1 } (keys %combined_inheritance,
2121 keys %{$table{$target}});
2122 foreach (sort keys %all_keys) {
2123
2124 # Current target doesn't have a value for the current key?
2125 # Assign it the default combiner, the rest of this loop body
2126 # will handle it just like any other coderef.
2127 if (!exists $table{$target}->{$_}) {
2128 $table{$target}->{$_} = $default_combiner;
2129 }
2130
2131 my $valuetype = ref($table{$target}->{$_});
2132 if ($valuetype eq "CODE") {
2133 # CODE reference, execute it with the inherited values as
2134 # arguments.
2135 $table{$target}->{$_} =
2136 $table{$target}->{$_}->(@{$combined_inheritance{$_}});
2137 } elsif ($valuetype eq "") {
2138 # Scalar, just leave it as is.
2139 } else {
2140 # Some other type of reference that we don't handle.
2141 # Better to abort at this point.
2142 die "cannot handle reference type $valuetype,"
2143 ," found in target $target -> $_\n";
2144 }
2145 }
2146
2147 # Finally done, return the result.
2148 return %{$table{$target}};
2149}
2150
462ba4f6 2151sub usage
d02b48c6 2152 {
462ba4f6 2153 print STDERR $usage;
10a926c1 2154 print STDERR "\npick os/compiler from:\n";
1641cb60 2155 my $j=0;
6457ad15 2156 my $i;
10a926c1 2157 my $k=0;
6457ad15 2158 foreach $i (sort keys %table)
d02b48c6 2159 {
bd5192b1 2160 next if $table{$i}->{template};
462ba4f6 2161 next if $i =~ /^debug/;
10a926c1
UM
2162 $k += length($i) + 1;
2163 if ($k > 78)
2164 {
2165 print STDERR "\n";
2166 $k=length($i);
2167 }
2168 print STDERR $i . " ";
462ba4f6
UM
2169 }
2170 foreach $i (sort keys %table)
2171 {
bd5192b1 2172 next if $table{$i}->{template};
462ba4f6 2173 next if $i !~ /^debug/;
10a926c1
UM
2174 $k += length($i) + 1;
2175 if ($k > 78)
2176 {
2177 print STDERR "\n";
2178 $k=length($i);
2179 }
2180 print STDERR $i . " ";
d02b48c6 2181 }
10a926c1 2182 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 2183 exit(1);
d02b48c6
RE
2184 }
2185
99aab161
UM
2186sub which
2187 {
2188 my($name)=@_;
2189 my $path;
2190 foreach $path (split /:/, $ENV{PATH})
2191 {
28a80034 2192 if (-f "$path/$name$exe_ext" and -x _)
99aab161 2193 {
28a80034
RL
2194 return "$path/$name$exe_ext" unless ($name eq "perl" and
2195 system("$path/$name$exe_ext -e " . '\'exit($]<5.0);\''));
99aab161
UM
2196 }
2197 }
2198 }
2199
462ba4f6
UM
2200sub dofile
2201 {
2202 my $f; my $p; my %m; my @a; my $k; my $ff;
2203 ($f,$p,%m)=@_;
2204
31ff97b2 2205 open(IN,"<$f.in") || open(IN,"<$f") || die "unable to open $f:$!\n";
462ba4f6
UM
2206 @a=<IN>;
2207 close(IN);
2208 foreach $k (keys %m)
2209 {
2210 grep(/$k/ && ($_=sprintf($m{$k}."\n",$p)),@a);
2211 }
863fe2ec 2212 open(OUT,">$f.new") || die "unable to open $f.new:$!\n";
462ba4f6
UM
2213 print OUT @a;
2214 close(OUT);
863fe2ec
BM
2215 rename($f,"$f.bak") || die "unable to rename $f\n" if -e $f;
2216 rename("$f.new",$f) || die "unable to rename $f.new\n";
462ba4f6 2217 }
436a376b
BM
2218
2219sub print_table_entry
2220 {
2221 my $target = shift;
bd5192b1 2222 my %target = resolve_config($target);
aaf878cc 2223 my $type = shift;
436a376b 2224
7d46b942 2225 # Don't print the templates
bd5192b1 2226 return if $target{template};
7d46b942 2227
aaf878cc 2228 if ($type eq "TABLE") {
76ffb43d 2229 print <<"EOF"
436a376b
BM
2230
2231*** $target
bd5192b1
RL
2232\$cc = $target{cc}
2233\$cflags = $target{cflags}
2234\$debug_cflags = $target{debug_cflags}
2235\$release_cflags = $target{release_cflags}
2236\$unistd = $target{unistd}
2237\$thread_cflag = $target{thread_cflag}
2238\$sys_id = $target{sys_id}
2239\$lflags = $target{lflags}
2240\$debug_lflags = $target{debug_lflags}
2241\$release_lflags = $target{release_lflags}
2242\$bn_ops = $target{bn_ops}
2243\$cpuid_obj = $target{cpuid_obj}
2244\$bn_obj = $target{bn_obj}
2245\$ec_obj = $target{ec_obj}
2246\$des_obj = $target{des_obj}
2247\$aes_obj = $target{aes_obj}
2248\$bf_obj = $target{bf_obj}
2249\$md5_obj = $target{md5_obj}
2250\$sha1_obj = $target{sha1_obj}
2251\$cast_obj = $target{cast_obj}
2252\$rc4_obj = $target{rc4_obj}
2253\$rmd160_obj = $target{rmd160_obj}
2254\$rc5_obj = $target{rc5_obj}
2255\$wp_obj = $target{wp_obj}
2256\$cmll_obj = $target{cmll_obj}
2257\$modes_obj = $target{modes_obj}
2258\$engines_obj = $target{engines_obj}
2259\$chacha_obj = $target{chacha_obj}
2260\$poly1305_obj = $target{poly1305_obj}
2261\$perlasm_scheme = $target{perlasm_scheme}
2262\$dso_scheme = $target{dso_scheme}
2263\$shared_target= $target{shared_target}
2264\$shared_cflag = $target{shared_cflag}
2265\$shared_ldflag = $target{shared_ldflag}
2266\$shared_extension = $target{shared_extension}
2267\$ranlib = $target{ranlib}
2268\$arflags = $target{arflags}
2269\$multilib = $target{multilib}
436a376b 2270EOF
aaf878cc
RL
2271 } elsif ($type eq "HASH") {
2272 my @sequence = (
2273 "cc",
2274 "cflags",
b1245529
RL
2275 "debug_cflags",
2276 "release_cflags",
aaf878cc
RL
2277 "unistd",
2278 "thread_cflag",
2279 "sys_id",
2280 "lflags",
b1245529
RL
2281 "debug_lflags",
2282 "release_lflags",
aaf878cc
RL
2283 "bn_ops",
2284 "cpuid_obj",
2285 "bn_obj",
2286 "ec_obj",
2287 "des_obj",
2288 "aes_obj",
2289 "bf_obj",
2290 "md5_obj",
2291 "sha1_obj",
2292 "cast_obj",
2293 "rc4_obj",
2294 "rmd160_obj",
2295 "rc5_obj",
2296 "wp_obj",
2297 "cmll_obj",
2298 "modes_obj",
2299 "engines_obj",
22c2e80f
AP
2300 "chacha_obj",
2301 "poly1305_obj",
aaf878cc
RL
2302 "perlasm_scheme",
2303 "dso_scheme",
2304 "shared_target",
2305 "shared_cflag",
2306 "shared_ldflag",
2307 "shared_extension",
2308 "ranlib",
2309 "arflags",
2310 "multilib",
2311 );
2312 my $largest =
2313 length((sort { length($a) <=> length($b) } @sequence)[-1]);
2314 print " '$target' => {\n";
2315 foreach (@sequence) {
bd5192b1
RL
2316 if ($target{$_}) {
2317 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
aaf878cc
RL
2318 }
2319 }
2320 print " },\n";
2321 }
436a376b 2322 }
fe05264e
RL
2323
2324sub quotify {
2325 my %processors = (
2326 perl => sub { my $x = shift;
2327 $x =~ s/([\\\$\@"])/\\$1/g;
2328 return '"'.$x.'"'; },
2329 );
2330 my $for = shift;
2331 my $processor =
2332 defined($processors{$for}) ? $processors{$for} : sub { shift; };
2333
2334 map { $processor->($_); } @_;
2335}