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