]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
test/context_internal_test.c: don't initialize as a separate test
[thirdparty/openssl.git] / Configure
CommitLineData
de17db91 1#! /usr/bin/env perl
f4d8f037 2# -*- mode: perl; -*-
48e5119a 3# Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
ac3d0e13 4#
402dd558 5# Licensed under the Apache License 2.0 (the "License"). You may not use
ac3d0e13
RS
6# this file except in compliance with the License. You can obtain a copy
7# in the file LICENSE in the source distribution or at
8# https://www.openssl.org/source/license.html
de17db91 9
a4ed5532 10## Configure -- OpenSSL source tree configuration script
1641cb60 11
d83112b7 12use 5.10.0;
1641cb60 13use strict;
141d7325 14use Config;
cb6afcd6
RL
15use FindBin;
16use lib "$FindBin::Bin/util/perl";
f09e7ca9 17use File::Basename;
7f73eafe 18use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs splitdir/;
dca99383 19use File::Path qw/mkpath/;
8d2214c0 20use OpenSSL::Glob;
1641cb60 21
22a4f969 22# see INSTALL for instructions.
462ba4f6 23
8937a4ed
RL
24my $orig_death_handler = $SIG{__DIE__};
25$SIG{__DIE__} = \&death_handler;
26
e4ef2e25 27my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [-Dxxx] [-lxxx] [-Lxxx] [-fxxx] [-Kxxx] [no-hw-xxx|no-hw] [[no-]threads] [[no-]shared] [[no-]zlib|zlib-dynamic] [no-asm] [no-dso] [no-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
462ba4f6 28
434c5dd3 29# Options:
e5f3045f 30#
f09e7ca9
RS
31# --config add the given configuration file, which will be read after
32# any "Configurations*" files that are found in the same
33# directory as this script.
d74dfafd
RL
34# --prefix prefix for the OpenSSL installation, which includes the
35# directories bin, lib, include, share/man, share/doc/openssl
36# This becomes the value of INSTALLTOP in Makefile
37# (Default: /usr/local)
38# --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys.
39# If it's a relative directory, it will be added on the directory
40# given with --prefix.
41# This becomes the value of OPENSSLDIR in Makefile and in C.
42# (Default: PREFIX/ssl)
e5f3045f 43#
cbfb39d1
AP
44# --cross-compile-prefix Add specified prefix to binutils components.
45#
fcd2d5a6
RL
46# --api One of 0.9.8, 1.0.0, 1.0.1, 1.0.2, 1.1.0, 1.1.1, or 3.0.0 / 3.
47# Do not compile support for interfaces deprecated as of the
48# specified OpenSSL version.
98186eb4 49#
5270e702
RL
50# no-hw-xxx do not compile support for specific crypto hardware.
51# Generic OpenSSL-style methods relating to this support
52# are always compiled but return NULL if the hardware
53# support isn't compiled.
54# no-hw do not compile support for any crypto hardware.
5f8d5c96
BM
55# [no-]threads [don't] try to create a library that is suitable for
56# multithreaded applications (default is "threads" if we
57# know how to do it)
fcc6a1c4 58# [no-]shared [don't] try to create shared libraries when supported.
ae48242c 59# [no-]pic [don't] try to build position independent code when supported.
45b71abe 60# If disabled, it also disables shared and dynamic-engine.
a723979d 61# no-asm do not use assembler
bc2aadad
GT
62# no-dso do not compile in any native shared-library methods. This
63# will ensure that all methods just return NULL.
0423f812 64# no-egd do not compile support for the entropy-gathering daemon APIs
e452de9d
RL
65# [no-]zlib [don't] compile support for zlib compression.
66# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
67# library and will be loaded in run-time by the OpenSSL library.
7e159e01 68# sctp include SCTP support
8b1a5af3 69# enable-weak-ssl-ciphers
edcdf38b 70# Enable weak ciphers that are disabled by default.
5ae5dc96
AP
71# 386 generate 80386 code in assembly modules
72# no-sse2 disables IA-32 SSE2 code in assembly modules, the above
73# mentioned '386' option implies this one
79df9d62 74# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
fce0ba5f 75# -<xxx> +<xxx> compiler options are passed through
047d97af
AP
76# -static while -static is also a pass-through compiler option (and
77# as such is limited to environments where it's actually
78# meaningful), it triggers a number configuration options,
79# namely no-dso, no-pic, no-shared and no-threads. It is
80# argued that the only reason to produce statically linked
81# binaries (and in context it means executables linked with
82# -static flag, and not just executables linked with static
83# libcrypto.a) is to eliminate dependency on specific run-time,
84# a.k.a. libc version. The mentioned config options are meant
85# to achieve just that. Unfortunately on Linux it's impossible
86# to eliminate the dependency completely for openssl executable
87# because of getaddrinfo and gethostbyname calls, which can
88# invoke dynamically loadable library facility anyway to meet
89# the lookup requests. For this reason on Linux statically
90# linked openssl executable has rather debugging value than
91# production quality.
e41c8d6a
GT
92#
93# DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
94# provided to stack calls. Generates unique stack functions for
95# each possible stack type.
d02b48c6 96# BN_LLONG use the type 'long long' in crypto/bn/bn.h
d02b48c6 97# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
d0590fe6
AP
98# Following are set automatically by this script
99#
8483a003
F
100# MD5_ASM use some extra md5 assembler,
101# SHA1_ASM use some extra sha1 assembler, must define L_ENDIAN for x86
102# RMD160_ASM use some extra ripemd160 assembler,
d0590fe6
AP
103# SHA256_ASM sha256_block is implemented in assembler
104# SHA512_ASM sha512_block is implemented in assembler
28bd8e94 105# AES_ASM AES_[en|de]crypt is implemented in assembler
d02b48c6 106
363bd0b4 107# Minimum warning options... any contributions to OpenSSL should at least get
fce0ba5f 108# past these.
363bd0b4 109
463a7b8c 110# DEBUG_UNUSED enables __owur (warn unused result) checks.
77305338
RS
111# -DPEDANTIC complements -pedantic and is meant to mask code that
112# is not strictly standard-compliant and/or implementation-specific,
113# e.g. inline assembly, disregards to alignment requirements, such
114# that -pedantic would complain about. Incidentally -DPEDANTIC has
115# to be used even in sanitized builds, because sanitizer too is
116# supposed to and does take notice of non-standard behaviour. Then
117# -pedantic with pre-C9x compiler would also complain about 'long
118# long' not being supported. As 64-bit algorithms are common now,
119# it grew impossible to resolve this without sizeable additional
120# code, so we just tell compiler to be pedantic about everything
121# but 'long long' type.
122
463a7b8c 123my $gcc_devteam_warn = "-DDEBUG_UNUSED"
463a7b8c 124 . " -DPEDANTIC -pedantic -Wno-long-long"
8bccbce5 125 . " -Wall"
560ad13c
BK
126 . " -Wextra"
127 . " -Wno-unused-parameter"
128 . " -Wno-missing-field-initializers"
54cf3b98 129 . " -Wswitch"
8bccbce5
RS
130 . " -Wsign-compare"
131 . " -Wmissing-prototypes"
91860165 132 . " -Wstrict-prototypes"
8bccbce5
RS
133 . " -Wshadow"
134 . " -Wformat"
135 . " -Wtype-limits"
01b76c2c 136 . " -Wundef"
8bccbce5
RS
137 . " -Werror"
138 ;
363bd0b4 139
190c8c60
BL
140# These are used in addition to $gcc_devteam_warn when the compiler is clang.
141# TODO(openssl-team): fix problems and investigate if (at least) the
480405e4 142# following warnings can also be enabled:
8bccbce5 143# -Wcast-align
77305338 144# -Wunreachable-code -- no, too ugly/compiler-specific
a773b52a
RS
145# -Wlanguage-extension-token -- no, we use asm()
146# -Wunused-macros -- no, too tricky for BN and _XOPEN_SOURCE etc
147# -Wextended-offsetof -- no, needed in CMS ASN1 code
f11ffa50
RL
148# -Wunused-function -- no, it forces header use of safestack et al
149# DEFINE macros
8bccbce5 150my $clang_devteam_warn = ""
96db2691 151 . " -Wswitch-default"
77305338 152 . " -Wno-parentheses-equality"
8bccbce5
RS
153 . " -Wno-language-extension-token"
154 . " -Wno-extended-offsetof"
155 . " -Wconditional-uninitialized"
156 . " -Wincompatible-pointer-types-discards-qualifiers"
157 . " -Wmissing-variable-declarations"
6d50589c 158 . " -Wno-unknown-warning-option"
f11ffa50 159 . " -Wno-unused-function"
8bccbce5 160 ;
cb2bc054 161
ef8ca6bd
RL
162# This adds backtrace information to the memory leak info. Is only used
163# when crypto-mdebug-backtrace is enabled.
164my $memleak_devteam_backtrace = "-rdynamic";
a1d3f3d1 165
0c28f277
DSH
166my $strict_warnings = 0;
167
b7efa56a 168# As for $BSDthreads. Idea is to maintain "collective" set of flags,
fce0ba5f 169# which would cover all BSD flavors. -pthread applies to them all,
b7efa56a
AP
170# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
171# -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
172# which has to be accompanied by explicit -D_THREAD_SAFE and
173# sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
174# seems to be sufficient?
9c62a279 175our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
d02b48c6 176
98186eb4 177#
f430ba31 178# API compatibility name to version number mapping.
98186eb4 179#
db2f2d49 180my $maxapi = "3.0.0"; # API for "no-deprecated" builds
98186eb4 181my $apitable = {
fcd2d5a6
RL
182 "3.0.0" => 3,
183 "1.1.1" => 2,
184 "1.1.0" => 2,
185 "1.0.2" => 1,
186 "1.0.1" => 1,
187 "1.0.0" => 1,
188 "0.9.8" => 0,
98186eb4
VD
189};
190
9e0724a1 191our %table = ();
291e94df 192our %config = ();
98fdbce0 193our %withargs = ();
f770d75b
AP
194our $now_printing; # set to current entry's name in print_table_entry
195 # (todo: right thing would be to encapsulate name
196 # into %target [class] and make print_table_entry
197 # a method)
3e83e686 198
bd5192b1 199# Forward declarations ###############################################
7ead0c89 200
bd5192b1
RL
201# read_config(filename)
202#
203# Reads a configuration file and populates %table with the contents
204# (which the configuration file places in %targets).
205sub read_config;
7d46b942 206
bd5192b1
RL
207# resolve_config(target)
208#
8483a003 209# Resolves all the late evaluations, inheritances and so on for the
bd5192b1
RL
210# chosen target and any target it inherits from.
211sub resolve_config;
7d46b942 212
15c7adb0 213
107b5792
RL
214# Information collection #############################################
215
9fe2bb77 216# Unified build supports separate build dir
ec182ef0
RL
217my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
218my $blddir = catdir(absolutedir(".")); # catdir ensures local syntax
9fe2bb77
RL
219my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
220
b5293d4c
RL
221my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR';
222
9fe2bb77
RL
223$config{sourcedir} = abs2rel($srcdir);
224$config{builddir} = abs2rel($blddir);
225
ee4cdb7f
RL
226# Collect reconfiguration information if needed
227my @argvcopy=@ARGV;
228
229if (grep /^reconf(igure)?$/, @argvcopy) {
99aeeecb
RL
230 die "reconfiguring with other arguments present isn't supported"
231 if scalar @argvcopy > 1;
ee4cdb7f
RL
232 if (-f "./configdata.pm") {
233 my $file = "./configdata.pm";
234 unless (my $return = do $file) {
235 die "couldn't parse $file: $@" if $@;
236 die "couldn't do $file: $!" unless defined $return;
237 die "couldn't run $file" unless $return;
238 }
239
240 @argvcopy = defined($configdata::config{perlargv}) ?
241 @{$configdata::config{perlargv}} : ();
242 die "Incorrect data to reconfigure, please do a normal configuration\n"
243 if (grep(/^reconf/,@argvcopy));
7ecdf18d 244 $config{perlenv} = $configdata::config{perlenv} // {};
ee4cdb7f
RL
245 } else {
246 die "Insufficient data to reconfigure, please do a normal configuration\n";
247 }
248}
249
250$config{perlargv} = [ @argvcopy ];
251
107b5792 252# Collect version numbers
3a63dbef
RL
253$config{major} = "unknown";
254$config{minor} = "unknown";
255$config{patch} = "unknown";
256$config{prerelease} = "";
257$config{build_metadata} = "";
258$config{shlib_version} = "unknown";
107b5792
RL
259
260collect_information(
9fe2bb77 261 collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
3a63dbef
RL
262 qr/#\s+define\s+OPENSSL_VERSION_MAJOR\s+(\d+)/ =>
263 sub { $config{major} = $1; },
264 qr/#\s+define\s+OPENSSL_VERSION_MINOR\s+(\d+)/ =>
265 sub { $config{minor} = $1; },
266 qr/#\s+define\s+OPENSSL_VERSION_PATCH\s+(\d+)/ =>
267 sub { $config{patch} = $1; },
268 qr/#\s+define\s+OPENSSL_VERSION_PRE_RELEASE\s+"((?:\\.|[^"])*)"/ =>
269 sub { $config{prerelease} = $1; },
270 qr/#\s+define\s+OPENSSL_VERSION_BUILD_METADATA\s+"((?:\\.|[^"])*)"/ =>
271 sub { $config{build_metadata} = $1; },
272 qr/#\s+define\s+OPENSSL_SHLIB_VERSION\s+([\d\.]+)/ =>
273 sub { $config{shlib_version} = $1; },
107b5792 274 );
107b5792 275die "erroneous version information in opensslv.h: ",
3a63dbef
RL
276 "$config{major}.$config{minor}.$config{patch}, $config{shlib_version}\n"
277 if ($config{major} eq "unknown"
278 || $config{minor} eq "unknown"
279 || $config{patch} eq "unknown"
280 || $config{shlib_version} eq "unknown");
107b5792 281
16942e08
DMSP
282$config{version} = "$config{major}.$config{minor}.$config{patch}";
283$config{full_version} = "$config{version}$config{prerelease}$config{build_metadata}";
284
107b5792
RL
285# Collect target configurations
286
85152ca4 287my $pattern = catfile(dirname($0), "Configurations", "*.conf");
97855556 288foreach (sort glob($pattern)) {
f09e7ca9
RS
289 &read_config($_);
290}
d02b48c6 291
7ecdf18d 292if (defined env($local_config_envname)) {
b5293d4c
RL
293 if ($^O eq 'VMS') {
294 # VMS environment variables are logical names,
295 # which can be used as is
296 $pattern = $local_config_envname . ':' . '*.conf';
297 } else {
7ecdf18d 298 $pattern = catfile(env($local_config_envname), '*.conf');
b5293d4c
RL
299 }
300
97855556 301 foreach (sort glob($pattern)) {
b5293d4c
RL
302 &read_config($_);
303 }
304}
305
d5fa7035
RL
306# Save away perl command information
307$config{perl_cmd} = $^X;
308$config{perl_version} = $Config{version};
309$config{perl_archname} = $Config{archname};
310
291e94df
RL
311$config{prefix}="";
312$config{openssldir}="";
7d130f68 313$config{processor}="";
107b5792 314$config{libdir}="";
9c62a279 315my $auto_threads=1; # enable threads automatically? true by default
0396479d 316my $default_ranlib;
107b5792 317
6b01bed2 318# Known TLS and DTLS protocols
84a68336 319my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);
6b01bed2
VD
320my @dtls = qw(dtls1 dtls1_2);
321
8483a003 322# Explicitly known options that are possible to disable. They can
8b527be2
RL
323# be regexps, and will be used like this: /^no-${option}$/
324# For developers: keep it sorted alphabetically
325
326my @disablables = (
69495e3d 327 "ktls",
c91a0a83 328 "afalgeng",
d42d0a4d 329 "aria",
c38bb727 330 "asan",
8b527be2 331 "asm",
52739e40 332 "async",
b184e3ef 333 "autoalginit",
498abff0 334 "autoerrinit",
dbabc862 335 "autoload-config",
8b527be2 336 "bf",
2d0b4412 337 "blake2",
8b527be2
RL
338 "camellia",
339 "capieng",
340 "cast",
48f14845 341 "chacha",
8b527be2
RL
342 "cmac",
343 "cms",
344 "comp",
3e45d393 345 "crypto-mdebug",
ef8ca6bd 346 "crypto-mdebug-backtrace",
8b527be2
RL
347 "ct",
348 "deprecated",
349 "des",
619eb33a 350 "devcryptoeng",
8b527be2
RL
351 "dgram",
352 "dh",
353 "dsa",
354 "dso",
a5ecdc6a 355 "dtls",
343ec2b0 356 "dynamic-engine",
8b527be2
RL
357 "ec",
358 "ec2m",
6b01bed2
VD
359 "ecdh",
360 "ecdsa",
8b527be2 361 "ec_nistp_64_gcc_128",
b31feae6 362 "egd",
8b527be2 363 "engine",
1288f26f 364 "err",
ce2596d4 365 "external-tests",
02f7114a 366 "filenames",
f59d0131
KR
367 "fuzz-libfuzzer",
368 "fuzz-afl",
168c3b73 369 "gost",
b612799a 370 "heartbeats",
8b527be2
RL
371 "hw(-.+)?",
372 "idea",
09aa263a 373 "makedepend",
8b527be2
RL
374 "md2",
375 "md4",
8b527be2 376 "mdc2",
29df3061 377 "msan",
fa22f98f 378 "multiblock",
8b527be2 379 "nextprotoneg",
41999e7d 380 "pinshared",
8b527be2
RL
381 "ocb",
382 "ocsp",
ae48242c 383 "pic",
48f14845 384 "poly1305",
8b527be2
RL
385 "posix-io",
386 "psk",
387 "rc2",
388 "rc4",
389 "rc5",
390 "rdrand",
391 "rfc3779",
8b527be2 392 "rmd160",
8b527be2 393 "scrypt",
8b527be2
RL
394 "sctp",
395 "seed",
8b527be2 396 "shared",
3f5616d7 397 "siphash",
b1ceb439 398 "siv",
1bf2cc23 399 "sm2",
a0c3e4fa 400 "sm3",
f19a5ff9 401 "sm4",
8b527be2
RL
402 "sock",
403 "srp",
404 "srtp",
405 "sse2",
406 "ssl",
8b527be2
RL
407 "ssl-trace",
408 "static-engine",
409 "stdio",
93880ce1 410 "tests",
8b527be2
RL
411 "threads",
412 "tls",
1288f26f 413 "ts",
c38bb727 414 "ubsan",
48feaceb 415 "ui-console",
8b527be2
RL
416 "unit-test",
417 "whirlpool",
8b1a5af3 418 "weak-ssl-ciphers",
8b527be2
RL
419 "zlib",
420 "zlib-dynamic",
421 );
6b01bed2
VD
422foreach my $proto ((@tls, @dtls))
423 {
424 push(@disablables, $proto);
d8c66f5e 425 push(@disablables, "$proto-method") unless $proto eq "tls1_3";
6b01bed2 426 }
8b527be2 427
2b1343b9
MC
428my %deprecated_disablables = (
429 "ssl2" => undef,
430 "buf-freelists" => undef,
48feaceb
RL
431 "ripemd" => "rmd160",
432 "ui" => "ui-console",
e80381e1
RL
433 );
434
094925de 435# All of the following are disabled by default:
c9a112f5 436
9e04edf2 437our %disabled = ( # "what" => "comment"
dbabc862 438 "asan" => "default",
a9c27fe1
BK
439 "crypto-mdebug" => "default",
440 "crypto-mdebug-backtrace" => "default",
619eb33a 441 "devcryptoeng" => "default",
9e04edf2 442 "ec_nistp_64_gcc_128" => "default",
8b1a5af3 443 "egd" => "default",
ce2596d4 444 "external-tests" => "default",
f59d0131
KR
445 "fuzz-libfuzzer" => "default",
446 "fuzz-afl" => "default",
b612799a 447 "heartbeats" => "default",
8b1a5af3 448 "md2" => "default",
29df3061 449 "msan" => "default",
8b1a5af3
MC
450 "rc5" => "default",
451 "sctp" => "default",
8b1a5af3 452 "ssl-trace" => "default",
9829b5ab
KR
453 "ssl3" => "default",
454 "ssl3-method" => "default",
c38bb727 455 "ubsan" => "default",
8b1a5af3
MC
456 "unit-test" => "default",
457 "weak-ssl-ciphers" => "default",
458 "zlib" => "default",
459 "zlib-dynamic" => "default",
69495e3d 460 "ktls" => "default",
9e04edf2 461 );
c9a112f5 462
c569e206
RL
463# Note: => pair form used for aesthetics, not to truly make a hash table
464my @disable_cascades = (
465 # "what" => [ "cascade", ... ]
7d130f68 466 sub { $config{processor} eq "386" }
c569e206
RL
467 => [ "sse2" ],
468 "ssl" => [ "ssl3" ],
469 "ssl3-method" => [ "ssl3" ],
470 "zlib" => [ "zlib-dynamic" ],
c569e206 471 "des" => [ "mdc2" ],
9e4d6fbf 472 "ec" => [ "ecdsa", "ecdh" ],
c569e206 473
3fd4d211 474 "dgram" => [ "dtls", "sctp" ],
505f74ca 475 "sock" => [ "dgram" ],
c569e206 476 "dtls" => [ @dtls ],
343a7467
RL
477 sub { 0 == scalar grep { !$disabled{$_} } @dtls }
478 => [ "dtls" ],
c569e206 479
c569e206 480 "tls" => [ @tls ],
343a7467
RL
481 sub { 0 == scalar grep { !$disabled{$_} } @tls }
482 => [ "tls" ],
c569e206 483
ef8ca6bd 484 "crypto-mdebug" => [ "crypto-mdebug-backtrace" ],
343ec2b0
RL
485
486 # Without DSO, we can't load dynamic engines, so don't build them dynamic
487 "dso" => [ "dynamic-engine" ],
ae48242c
RL
488
489 # Without position independent code, there can be no shared libraries or DSOs
00698061
RL
490 "pic" => [ "shared" ],
491 "shared" => [ "dynamic-engine" ],
619eb33a 492 "engine" => [ "afalgeng", "devcryptoeng" ],
d90a6beb
MC
493
494 # no-autoalginit is only useful when building non-shared
495 "autoalginit" => [ "shared", "apps" ],
496
15a1bd0a 497 "stdio" => [ "apps", "capieng", "egd" ],
d90a6beb 498 "apps" => [ "tests" ],
302eba3f 499 "tests" => [ "external-tests" ],
3cf96e88 500 "comp" => [ "zlib" ],
dad8c264 501 "ec" => [ "tls1_3", "sm2" ],
98020023 502 "sm3" => [ "sm2" ],
b612799a 503 sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
29df3061
EK
504
505 sub { !$disabled{"msan"} } => [ "asm" ],
b1ceb439
TS
506
507 sub { $disabled{cmac}; } => [ "siv" ],
c569e206
RL
508 );
509
510# Avoid protocol support holes. Also disable all versions below N, if version
511# N is disabled while N+1 is enabled.
512#
513my @list = (reverse @tls);
514while ((my $first, my $second) = (shift @list, shift @list)) {
515 last unless @list;
516 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
517 => [ @list ] );
518 unshift @list, $second;
519}
520my @list = (reverse @dtls);
521while ((my $first, my $second) = (shift @list, shift @list)) {
522 last unless @list;
523 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
524 => [ @list ] );
525 unshift @list, $second;
526}
527
7a762197 528# Explicit "no-..." options will be collected in %disabled along with the defaults.
e4ef2e25 529# To remove something from %disabled, use "enable-foo".
7a762197
BM
530# For symmetry, "disable-foo" is a synonym for "no-foo".
531
462ba4f6 532&usage if ($#ARGV < 0);
d02b48c6 533
5b18235a
RL
534# For the "make variables" CINCLUDES and CDEFINES, we support lists with
535# platform specific list separators. Users from those platforms should
536# recognise those separators from how you set up the PATH to find executables.
537# The default is the Unix like separator, :, but as an exception, we also
538# support the space as separator.
539my $list_separator_re =
540 { VMS => qr/(?<!\^),/,
541 MSWin32 => qr/(?<!\\);/ } -> {$^O} // qr/(?<!\\)[:\s]/;
542# All the "make variables" we support
f5846179
RL
543# Some get pre-populated for the sake of backward compatibility
544# (we supported those before the change to "make variable" support.
5b18235a 545my %user = (
f5846179 546 AR => env('AR'),
5b18235a
RL
547 ARFLAGS => [],
548 AS => undef,
549 ASFLAGS => [],
f5846179 550 CC => env('CC'),
5b18235a 551 CFLAGS => [],
f5846179 552 CXX => env('CXX'),
5b18235a
RL
553 CXXFLAGS => [],
554 CPP => undef,
555 CPPFLAGS => [], # -D, -I, -Wp,
556 CPPDEFINES => [], # Alternative for -D
557 CPPINCLUDES => [], # Alternative for -I
f5846179
RL
558 CROSS_COMPILE => env('CROSS_COMPILE'),
559 HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'),
5b18235a
RL
560 LD => undef,
561 LDFLAGS => [], # -L, -Wl,
562 LDLIBS => [], # -l
563 MT => undef,
564 MTFLAGS => [],
9e265322 565 PERL => env('PERL') || ($^O ne "VMS" ? $^X : "perl"),
f5846179
RL
566 RANLIB => env('RANLIB'),
567 RC => env('RC') || env('WINDRES'),
5b18235a
RL
568 RCFLAGS => [],
569 RM => undef,
570 );
f729ba55
RL
571# Info about what "make variables" may be prefixed with the cross compiler
572# prefix. This should NEVER mention any such variable with a list for value.
573my @user_crossable = qw ( AR AS CC CXX CPP LD MT RANLIB RC );
5b18235a
RL
574# The same but for flags given as Configure options. These are *additional*
575# input, as opposed to the VAR=string option that override the corresponding
576# config target attributes
577my %useradd = (
578 CPPDEFINES => [],
579 CPPINCLUDES => [],
580 CPPFLAGS => [],
581 CFLAGS => [],
582 CXXFLAGS => [],
583 LDFLAGS => [],
584 LDLIBS => [],
585 );
586
587my %user_synonyms = (
588 HASHBANGPERL=> 'PERL',
589 RC => 'WINDRES',
590 );
abe256e7
RL
591
592# Some target attributes have been renamed, this is the translation table
593my %target_attr_translate =(
594 ar => 'AR',
595 as => 'AS',
596 cc => 'CC',
597 cxx => 'CXX',
598 cpp => 'CPP',
599 hashbangperl => 'HASHBANGPERL',
600 ld => 'LD',
601 mt => 'MT',
602 ranlib => 'RANLIB',
603 rc => 'RC',
604 rm => 'RM',
5b18235a 605 );
5b18235a 606
2ab92ae9 607# Initialisers coming from 'config' scripts
ff455d99
AP
608$config{defines} = [ split(/$list_separator_re/, env('__CNF_CPPDEFINES')) ];
609$config{includes} = [ split(/$list_separator_re/, env('__CNF_CPPINCLUDES')) ];
610$config{cppflags} = [ env('__CNF_CPPFLAGS') || () ];
611$config{cflags} = [ env('__CNF_CFLAGS') || () ];
612$config{cxxflags} = [ env('__CNF_CXXFLAGS') || () ];
613$config{lflags} = [ env('__CNF_LDFLAGS') || () ];
614$config{ex_libs} = [ env('__CNF_LDLIBS') || () ];
2ab92ae9 615
7d130f68 616$config{openssl_api_defines}=[];
7d130f68 617$config{openssl_sys_defines}=[];
e0bf7c01 618$config{openssl_feature_defines}=[];
3fa04f0d 619$config{options}="";
8864f0de 620$config{build_type} = "release";
5b18235a 621my $target="";
c59cb511 622
ac6ae8a9 623my %cmdvars = (); # Stores FOO='blah' type arguments
fe05264e 624my %unsupported_options = ();
e80381e1 625my %deprecated_options = ();
8389ec4b
RS
626# If you change this, update apps/version.c
627my @known_seed_sources = qw(getrandom devrandom os egd none rdcpu librandom);
628my @seed_sources = ();
fad599f7 629while (@argvcopy)
16b6081e 630 {
fad599f7 631 $_ = shift @argvcopy;
89bea083
RL
632
633 # Support env variable assignments among the options
634 if (m|^(\w+)=(.+)?$|)
635 {
ac6ae8a9 636 $cmdvars{$1} = $2;
5b18235a
RL
637 # Every time a variable is given as a configuration argument,
638 # it acts as a reset if the variable.
639 if (exists $user{$1})
640 {
641 $user{$1} = ref $user{$1} eq "ARRAY" ? [] : undef;
642 }
b9201360
RL
643 #if (exists $useradd{$1})
644 # {
645 # $useradd{$1} = [];
646 # }
89bea083
RL
647 next;
648 }
649
7c55e22c
RL
650 # VMS is a case insensitive environment, and depending on settings
651 # out of our control, we may receive options uppercased. Let's
652 # downcase at least the part before any equal sign.
653 if ($^O eq "VMS")
654 {
655 s/^([^=]*)/lc($1)/e;
656 }
6d5e74f3
AP
657
658 # some people just can't read the instructions, clang people have to...
659 s/^-no-(?!integrated-as)/no-/;
c9a112f5 660
fe05264e
RL
661 # rewrite some options in "enable-..." form
662 s /^-?-?shared$/enable-shared/;
663 s /^sctp$/enable-sctp/;
664 s /^threads$/enable-threads/;
665 s /^zlib$/enable-zlib/;
666 s /^zlib-dynamic$/enable-zlib-dynamic/;
c9a112f5 667
e4ef2e25 668 if (/^(no|disable|enable)-(.+)$/)
2b1343b9
MC
669 {
670 my $word = $2;
671 if (!exists $deprecated_disablables{$word}
672 && !grep { $word =~ /^${_}$/ } @disablables)
673 {
674 $unsupported_options{$_} = 1;
675 next;
676 }
677 }
678 if (/^no-(.+)$/ || /^disable-(.+)$/)
679 {
e4ef2e25
RS
680 foreach my $proto ((@tls, @dtls))
681 {
682 if ($1 eq "$proto-method")
683 {
684 $disabled{"$proto"} = "option($proto-method)";
685 last;
686 }
687 }
688 if ($1 eq "dtls")
689 {
690 foreach my $proto (@dtls)
691 {
692 $disabled{$proto} = "option(dtls)";
693 }
c5c7700c 694 $disabled{"dtls"} = "option(dtls)";
e4ef2e25
RS
695 }
696 elsif ($1 eq "ssl")
697 {
698 # Last one of its kind
699 $disabled{"ssl3"} = "option(ssl)";
700 }
701 elsif ($1 eq "tls")
702 {
703 # XXX: Tests will fail if all SSL/TLS
704 # protocols are disabled.
705 foreach my $proto (@tls)
706 {
707 $disabled{$proto} = "option(tls)";
708 }
709 }
343ec2b0
RL
710 elsif ($1 eq "static-engine")
711 {
19ab5790 712 delete $disabled{"dynamic-engine"};
343ec2b0
RL
713 }
714 elsif ($1 eq "dynamic-engine")
715 {
19ab5790 716 $disabled{"dynamic-engine"} = "option";
343ec2b0 717 }
2b1343b9
MC
718 elsif (exists $deprecated_disablables{$1})
719 {
720 $deprecated_options{$_} = 1;
721 if (defined $deprecated_disablables{$1})
722 {
723 $disabled{$deprecated_disablables{$1}} = "option";
724 }
725 }
e4ef2e25
RS
726 else
727 {
728 $disabled{$1} = "option";
729 }
9c62a279
RL
730 # No longer an automatic choice
731 $auto_threads = 0 if ($1 eq "threads");
fe05264e 732 }
e4ef2e25 733 elsif (/^enable-(.+)$/)
fe05264e 734 {
343ec2b0
RL
735 if ($1 eq "static-engine")
736 {
19ab5790 737 $disabled{"dynamic-engine"} = "option";
343ec2b0
RL
738 }
739 elsif ($1 eq "dynamic-engine")
740 {
19ab5790 741 delete $disabled{"dynamic-engine"};
343ec2b0 742 }
25004db7
RL
743 elsif ($1 eq "zlib-dynamic")
744 {
745 delete $disabled{"zlib"};
746 }
fe05264e 747 my $algo = $1;
fe05264e 748 delete $disabled{$algo};
c9a112f5 749
9c62a279
RL
750 # No longer an automatic choice
751 $auto_threads = 0 if ($1 eq "threads");
fe05264e
RL
752 }
753 elsif (/^--strict-warnings$/)
754 {
fcee5394
RL
755 # Pretend that our strict flags is a C flag, and replace it
756 # with the proper flags later on
757 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
758 push @{$useradd{CXXFLAGS}}, '--ossl-strict-warnings';
759 $strict_warnings=1;
fe05264e
RL
760 }
761 elsif (/^--debug$/)
762 {
8864f0de 763 $config{build_type} = "debug";
fe05264e
RL
764 }
765 elsif (/^--release$/)
766 {
8864f0de 767 $config{build_type} = "release";
fe05264e
RL
768 }
769 elsif (/^386$/)
7d130f68 770 { $config{processor}=386; }
fe05264e
RL
771 elsif (/^fips$/)
772 {
b53338cb 773 die "FIPS mode not supported\n";
fe05264e
RL
774 }
775 elsif (/^rsaref$/)
776 {
777 # No RSAref support any more since it's not needed.
778 # The check for the option is there so scripts aren't
779 # broken
780 }
781 elsif (/^nofipscanistercheck$/)
782 {
b53338cb 783 die "FIPS mode not supported\n";
fe05264e
RL
784 }
785 elsif (/^[-+]/)
786 {
45c6e23c 787 if (/^--prefix=(.*)$/)
fe05264e 788 {
291e94df 789 $config{prefix}=$1;
5482dac9
RL
790 die "Directory given with --prefix MUST be absolute\n"
791 unless file_name_is_absolute($config{prefix});
c9a112f5 792 }
fe05264e 793 elsif (/^--api=(.*)$/)
0c28f277 794 {
107b5792 795 $config{api}=$1;
0c28f277 796 }
fe05264e 797 elsif (/^--libdir=(.*)$/)
9e43c6b5 798 {
107b5792 799 $config{libdir}=$1;
9e43c6b5 800 }
fe05264e 801 elsif (/^--openssldir=(.*)$/)
9e43c6b5 802 {
291e94df 803 $config{openssldir}=$1;
9e43c6b5 804 }
fe05264e 805 elsif (/^--with-zlib-lib=(.*)$/)
9fdb2cc5 806 {
20a5819f 807 $withargs{zlib_lib}=$1;
7d8bb912 808 }
fe05264e 809 elsif (/^--with-zlib-include=(.*)$/)
3eb0ed6d 810 {
da430a55 811 $withargs{zlib_include}=$1;
462ba4f6 812 }
f59d0131
KR
813 elsif (/^--with-fuzzer-lib=(.*)$/)
814 {
815 $withargs{fuzzer_lib}=$1;
816 }
817 elsif (/^--with-fuzzer-include=(.*)$/)
818 {
819 $withargs{fuzzer_include}=$1;
820 }
8389ec4b
RS
821 elsif (/^--with-rand-seed=(.*)$/)
822 {
823 foreach my $x (split(m|,|, $1))
824 {
825 die "Unknown --with-rand-seed choice $x\n"
826 if ! grep { $x eq $_ } @known_seed_sources;
827 push @seed_sources, $x;
828 }
829 }
fe05264e 830 elsif (/^--cross-compile-prefix=(.*)$/)
e5f3045f 831 {
f729ba55 832 $user{CROSS_COMPILE}=$1;
e5f3045f 833 }
fe05264e 834 elsif (/^--config=(.*)$/)
d02b48c6 835 {
fe05264e 836 read_config $1;
c59cb511 837 }
07e4dc34 838 elsif (/^-l(.*)$/)
c9a112f5 839 {
5b18235a 840 push @{$useradd{LDLIBS}}, $_;
d02b48c6 841 }
b7438b43
AP
842 elsif (/^-framework$/)
843 {
5b18235a 844 push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
b7438b43 845 }
07e4dc34
AP
846 elsif (/^-L(.*)$/ or /^-Wl,/)
847 {
848 push @{$useradd{LDFLAGS}}, $_;
849 }
fad599f7
RL
850 elsif (/^-rpath$/ or /^-R$/)
851 # -rpath is the OSF1 rpath flag
852 # -R is the old Solaris rpath flag
853 {
854 my $rpath = shift(@argvcopy) || "";
855 $rpath .= " " if $rpath ne "";
5b18235a 856 push @{$useradd{LDFLAGS}}, $_, $rpath;
fad599f7 857 }
9d46752d
AP
858 elsif (/^-static$/)
859 {
5b18235a 860 push @{$useradd{LDFLAGS}}, $_;
047d97af 861 $disabled{"dso"} = "forced";
9d46752d
AP
862 $disabled{"pic"} = "forced";
863 $disabled{"shared"} = "forced";
864 $disabled{"threads"} = "forced";
865 }
bcb1977b
RL
866 elsif (/^-D(.*)$/)
867 {
5b18235a 868 push @{$useradd{CPPDEFINES}}, $1;
bcb1977b 869 }
8c3bc594
RL
870 elsif (/^-I(.*)$/)
871 {
5b18235a 872 push @{$useradd{CPPINCLUDES}}, $1;
8c3bc594
RL
873 }
874 elsif (/^-Wp,$/)
875 {
5b18235a 876 push @{$useradd{CPPFLAGS}}, $1;
8c3bc594 877 }
fe05264e
RL
878 else # common if (/^[-+]/), just pass down...
879 {
880 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
5b18235a
RL
881 push @{$useradd{CFLAGS}}, $_;
882 push @{$useradd{CXXFLAGS}}, $_;
fe05264e
RL
883 }
884 }
fe05264e
RL
885 else
886 {
887 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
888 $target=$_;
889 }
890 unless ($_ eq $target || /^no-/ || /^disable-/)
891 {
46f4e1be 892 # "no-..." follows later after implied deactivations
8483a003 893 # have been derived. (Don't take this too seriously,
fe05264e
RL
894 # we really only write OPTIONS to the Makefile out of
895 # nostalgia.)
896
3fa04f0d
RL
897 if ($config{options} eq "")
898 { $config{options} = $_; }
fe05264e 899 else
3fa04f0d 900 { $config{options} .= " ".$_; }
fbabb752 901 }
ddbe700e 902 }
489eb740 903
ddbe700e
RL
904if (defined($config{api}) && !exists $apitable->{$config{api}}) {
905 die "***** Unsupported api compatibility level: $config{api}\n",
906}
98186eb4 907
ddbe700e
RL
908if (keys %deprecated_options)
909 {
910 warn "***** Deprecated options: ",
911 join(", ", keys %deprecated_options), "\n";
912 }
913if (keys %unsupported_options)
914 {
915 die "***** Unsupported options: ",
916 join(", ", keys %unsupported_options), "\n";
fbabb752 917 }
b6e4dac2 918
ac6ae8a9
RL
919# If any %useradd entry has been set, we must check that the "make
920# variables" haven't been set. We start by checking of any %useradd entry
fb174faa 921# is set.
b9201360 922if (grep { scalar @$_ > 0 } values %useradd) {
fb174faa 923 # Hash of env / make variables names. The possible values are:
ac6ae8a9 924 # 1 - "make vars"
fb174faa
RL
925 # 2 - %useradd entry set
926 # 3 - both set
ac6ae8a9 927 my %detected_vars =
fb174faa 928 map { my $v = 0;
ac6ae8a9 929 $v += 1 if $cmdvars{$_};
fb174faa
RL
930 $v += 2 if @{$useradd{$_}};
931 $_ => $v }
932 keys %useradd;
933
ac6ae8a9
RL
934 # If any of the corresponding "make variables" is set, we error
935 if (grep { $_ & 1 } values %detected_vars) {
936 my $names = join(', ', grep { $detected_vars{$_} > 0 }
937 sort keys %detected_vars);
b9201360 938 die <<"_____";
ac6ae8a9 939***** Mixing make variables and additional compiler/linker flags as
b9201360 940***** configure command line option is not permitted.
ac6ae8a9 941***** Affected make variables: $names
b9201360
RL
942_____
943 }
944}
945
ac6ae8a9
RL
946# Check through all supported command line variables to see if any of them
947# were set, and canonicalise the values we got. If no compiler or linker
948# flag or anything else that affects %useradd was set, we also check the
949# environment for values.
950my $anyuseradd =
951 grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
5b18235a 952foreach (keys %user) {
ac6ae8a9
RL
953 my $value = $cmdvars{$_};
954 $value //= env($_) unless $anyuseradd;
955 $value //=
956 defined $user_synonyms{$_} ? $cmdvars{$user_synonyms{$_}} : undef;
957 $value //= defined $user_synonyms{$_} ? env($user_synonyms{$_}) : undef
958 unless $anyuseradd;
5b18235a
RL
959
960 if (defined $value) {
961 if (ref $user{$_} eq 'ARRAY') {
962 $user{$_} = [ split /$list_separator_re/, $value ];
963 } elsif (!defined $user{$_}) {
964 $user{$_} = $value;
965 }
966 }
967}
968
07e4dc34 969if (grep { /-rpath\b/ } ($user{LDFLAGS} ? @{$user{LDFLAGS}} : ())
342a1a23
RL
970 && !$disabled{shared}
971 && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
972 die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
973 "***** any of asan, msan or ubsan\n";
974}
975
c569e206
RL
976my @tocheckfor = (keys %disabled);
977while (@tocheckfor) {
978 my %new_tocheckfor = ();
979 my @cascade_copy = (@disable_cascades);
980 while (@cascade_copy) {
981 my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
982 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
2110febb 983 foreach(grep { !defined($disabled{$_}) } @$descendents) {
01d99976 984 $new_tocheckfor{$_} = 1; $disabled{$_} = "forced";
2110febb 985 }
ef236ec3 986 }
c569e206
RL
987 }
988 @tocheckfor = (keys %new_tocheckfor);
989}
edc032b5 990
d63c12c6 991our $die = sub { die @_; };
436a376b 992if ($target eq "TABLE") {
d63c12c6 993 local $die = sub { warn @_; };
00ae96ca
RL
994 foreach (sort keys %table) {
995 print_table_entry($_, "TABLE");
996 }
997 exit 0;
436a376b
BM
998}
999
10a926c1 1000if ($target eq "LIST") {
00ae96ca
RL
1001 foreach (sort keys %table) {
1002 print $_,"\n" unless $table{$_}->{template};
1003 }
1004 exit 0;
10a926c1
UM
1005}
1006
aaf878cc 1007if ($target eq "HASH") {
d63c12c6 1008 local $die = sub { warn @_; };
00ae96ca
RL
1009 print "%table = (\n";
1010 foreach (sort keys %table) {
1011 print_table_entry($_, "HASH");
1012 }
1013 exit 0;
aaf878cc
RL
1014}
1015
16942e08
DMSP
1016print "Configuring OpenSSL version $config{full_version} ";
1017print "for target $target\n";
64119271 1018
51cf8e0b
RL
1019if (scalar(@seed_sources) == 0) {
1020 print "Using os-specific seed configuration\n";
1021 push @seed_sources, 'os';
1022}
2805ee1e
RL
1023if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) {
1024 die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1;
1025 warn <<_____ if scalar(@seed_sources) == 1;
2805ee1e 1026
caa85952
DMSP
1027============================== WARNING ===============================
1028You have selected the --with-rand-seed=none option, which effectively
1029disables automatic reseeding of the OpenSSL random generator.
1030All operations depending on the random generator such as creating keys
1031will not work unless the random generator is seeded manually by the
1032application.
1033
1034Please read the 'Note on random number generation' section in the
1035INSTALL instructions and the RAND_DRBG(7) manual page for more details.
1036============================== WARNING ===============================
1037
2805ee1e
RL
1038_____
1039}
e0bf7c01 1040push @{$config{openssl_feature_defines}},
51cf8e0b
RL
1041 map { (my $x = $_) =~ tr|[\-a-z]|[_A-Z]|; "OPENSSL_RAND_SEED_$x" }
1042 @seed_sources;
1043
00ae96ca 1044# Backward compatibility?
49e04548 1045if ($target =~ m/^CygWin32(-.*)$/) {
00ae96ca 1046 $target = "Cygwin".$1;
49e04548
RL
1047}
1048
906eb3d0
RL
1049# Support for legacy targets having a name starting with 'debug-'
1050my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
1051if ($d) {
1052 $config{build_type} = "debug";
1053
1054 # If we do not find debug-foo in the table, the target is set to foo.
1055 if (!$table{$target}) {
1056 $target = $t;
1057 }
1058}
4e360445
RL
1059
1060&usage if !$table{$target} || $table{$target}->{template};
1061
906eb3d0
RL
1062$config{target} = $target;
1063my %target = resolve_config($target);
1064
abe256e7
RL
1065foreach (keys %target_attr_translate) {
1066 $target{$target_attr_translate{$_}} = $target{$_}
1067 if $target{$_};
1068 delete $target{$_};
1069}
1070
793077d0
RL
1071%target = ( %{$table{DEFAULTS}}, %target );
1072
1073# Make the flags to build DSOs the same as for shared libraries unless they
1074# are already defined
48dcca26
RL
1075$target{module_cflags} = $target{shared_cflag} unless defined $target{module_cflags};
1076$target{module_cxxflags} = $target{shared_cxxflag} unless defined $target{module_cxxflags};
1077$target{module_ldflags} = $target{shared_ldflag} unless defined $target{module_ldflags};
793077d0
RL
1078{
1079 my $shared_info_pl =
1080 catfile(dirname($0), "Configurations", "shared-info.pl");
1081 my %shared_info = read_eval_file($shared_info_pl);
1082 push @{$target{_conf_fname_int}}, $shared_info_pl;
1083 my $si = $target{shared_target};
1084 while (ref $si ne "HASH") {
1085 last if ! defined $si;
1086 if (ref $si eq "CODE") {
1087 $si = $si->();
1088 } else {
1089 $si = $shared_info{$si};
1090 }
1091 }
1092
1093 # Some of the 'shared_target' values don't have any entried in
1094 # %shared_info. That's perfectly fine, AS LONG AS the build file
1095 # template knows how to handle this. That is currently the case for
1096 # Windows and VMS.
1097 if (defined $si) {
1098 # Just as above, copy certain shared_* attributes to the corresponding
48dcca26
RL
1099 # module_ attribute unless the latter is already defined
1100 $si->{module_cflags} = $si->{shared_cflag} unless defined $si->{module_cflags};
1101 $si->{module_cxxflags} = $si->{shared_cxxflag} unless defined $si->{module_cxxflags};
1102 $si->{module_ldflags} = $si->{shared_ldflag} unless defined $si->{module_ldflags};
793077d0
RL
1103 foreach (sort keys %$si) {
1104 $target{$_} = defined $target{$_}
1105 ? add($si->{$_})->($target{$_})
1106 : $si->{$_};
1107 }
1108 }
1109}
1110
906eb3d0
RL
1111my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
1112$config{conf_files} = [ sort keys %conf_files ];
906eb3d0
RL
1113
1114foreach my $feature (@{$target{disable}}) {
1115 if (exists $deprecated_disablables{$feature}) {
1116 warn "***** config $target disables deprecated feature $feature\n";
1117 } elsif (!grep { $feature eq $_ } @disablables) {
1118 die "***** config $target disables unknown feature $feature\n";
1119 }
1120 $disabled{$feature} = 'config';
1121}
1122foreach my $feature (@{$target{enable}}) {
7a8a35ff 1123 if ("default" eq ($disabled{$feature} // "")) {
906eb3d0
RL
1124 if (exists $deprecated_disablables{$feature}) {
1125 warn "***** config $target enables deprecated feature $feature\n";
1126 } elsif (!grep { $feature eq $_ } @disablables) {
1127 die "***** config $target enables unknown feature $feature\n";
1128 }
7a8a35ff 1129 delete $disabled{$feature};
906eb3d0
RL
1130 }
1131}
1132
abe256e7
RL
1133$target{CXXFLAGS}//=$target{CFLAGS} if $target{CXX};
1134$target{cxxflags}//=$target{cflags} if $target{CXX};
9dd4ed28 1135$target{exe_extension}=".exe" if ($config{target} eq "DJGPP");
107b5792 1136$target{exe_extension}=".pm" if ($config{target} =~ /vos/);
e987f9f2 1137
9e265322
RL
1138# Fill %config with values from %user, and in case those are undefined or
1139# empty, use values from %target (acting as a default).
5b18235a 1140foreach (keys %user) {
5b18235a
RL
1141 my $ref_type = ref $user{$_};
1142
1143 # Temporary function. Takes an intended ref type (empty string or "ARRAY")
1144 # and a value that's to be coerced into that type.
1145 my $mkvalue = sub {
1146 my $type = shift;
1147 my $value = shift;
1148 my $undef_p = shift;
1149
1150 die "Too many arguments for \$mkvalue" if @_;
1151
1152 while (ref $value eq 'CODE') {
1153 $value = $value->();
1154 }
1155
1156 if ($type eq 'ARRAY') {
1157 return undef unless defined $value;
1158 return undef if ref $value ne 'ARRAY' && !$value;
1159 return undef if ref $value eq 'ARRAY' && !@$value;
1160 return [ $value ] unless ref $value eq 'ARRAY';
1161 }
1162 return undef unless $value;
1163 return $value;
1164 };
1165
abe256e7 1166 $config{$_} =
5b18235a 1167 $mkvalue->($ref_type, $user{$_})
abe256e7
RL
1168 || $mkvalue->($ref_type, $target{$_});
1169 delete $config{$_} unless defined $config{$_};
5b18235a 1170}
aaf878cc 1171
8b5156d1 1172# Allow overriding the build file name
5b18235a 1173$config{build_file} = env('BUILDFILE') || $target{build_file} || "Makefile";
bd5192b1 1174
75d47db4
RL
1175######################################################################
1176# Build up information for skipping certain directories depending on disabled
1177# features, as well as setting up macros for disabled features.
1178
1179# This is a tentative database of directories to skip. Some entries may not
1180# correspond to anything real, but that's ok, they will simply be ignored.
1181# The actual processing of these entries is done in the build.info lookup
1182# loop further down.
1183#
1184# The key is a Unix formated path in the source tree, the value is an index
1185# into %disabled_info, so any existing path gets added to a corresponding
1186# 'skipped' entry in there with the list of skipped directories.
1187my %skipdir = ();
ca372414
RL
1188my %disabled_info = (); # For configdata.pm
1189foreach my $what (sort keys %disabled) {
1190 $config{options} .= " no-$what";
1191
1192 if (!grep { $what eq $_ } ( 'dso', 'threads', 'shared', 'pic',
1193 'dynamic-engine', 'makedepend',
1194 'zlib-dynamic', 'zlib', 'sse2' )) {
1195 (my $WHAT = uc $what) =~ s|-|_|g;
75d47db4 1196 my $skipdir = $what;
ca372414
RL
1197
1198 # fix-up crypto/directory name(s)
75d47db4
RL
1199 $skipdir = "ripemd" if $what eq "rmd160";
1200 $skipdir = "whrlpool" if $what eq "whirlpool";
ca372414
RL
1201
1202 my $macro = $disabled_info{$what}->{macro} = "OPENSSL_NO_$WHAT";
75d47db4 1203 push @{$config{openssl_feature_defines}}, $macro;
ca372414 1204
75d47db4
RL
1205 $skipdir{engines} = $what if $what eq 'engine';
1206 $skipdir{"crypto/$skipdir"} = $what
1207 unless $what eq 'async' || $what eq 'err';
ca372414
RL
1208 }
1209}
1210
291e94df
RL
1211# Make sure build_scheme is consistent.
1212$target{build_scheme} = [ $target{build_scheme} ]
1213 if ref($target{build_scheme}) ne "ARRAY";
1214
ddf1847d
RL
1215my ($builder, $builder_platform, @builder_opts) =
1216 @{$target{build_scheme}};
1217
d192a3aa
RL
1218foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm",
1219 $builder_platform."-checker.pm")) {
1220 my $checker_path = catfile($srcdir, "Configurations", $checker);
1221 if (-f $checker_path) {
1222 my $fn = $ENV{CONFIGURE_CHECKER_WARN}
1223 ? sub { warn $@; } : sub { die $@; };
1224 if (! do $checker_path) {
1225 if ($@) {
1226 $fn->($@);
1227 } elsif ($!) {
1228 $fn->($!);
1229 } else {
1230 $fn->("The detected tools didn't match the platform\n");
1231 }
1232 }
1233 last;
1234 }
1235}
1236
488e2b0f
RL
1237push @{$config{defines}}, "NDEBUG" if $config{build_type} eq "release";
1238
abe256e7 1239if ($target =~ /^mingw/ && `$config{CC} --target-help 2>&1` =~ m/-mno-cygwin/m)
cbecd29a 1240 {
5b18235a 1241 push @{$config{cflags}}, "-mno-cygwin";
abe256e7 1242 push @{$config{cxxflags}}, "-mno-cygwin" if $config{CXX};
5b18235a 1243 push @{$config{shared_ldflag}}, "-mno-cygwin";
cbecd29a
AP
1244 }
1245
5b18235a 1246if ($target =~ /linux.*-mips/ && !$disabled{asm}
26f0340d 1247 && !grep { $_ !~ /-m(ips|arch=)/ } (@{$user{CFLAGS}},
9be64336 1248 @{$useradd{CFLAGS}})) {
63d8834c 1249 # minimally required architecture flags for assembly modules
fa153b57
RL
1250 my $value;
1251 $value = '-mips2' if ($target =~ /mips32/);
1252 $value = '-mips3' if ($target =~ /mips64/);
1253 unshift @{$config{cflags}}, $value;
abe256e7 1254 unshift @{$config{cxxflags}}, $value if $config{CXX};
63d8834c
AP
1255}
1256
9c62a279
RL
1257# If threads aren't disabled, check how possible they are
1258unless ($disabled{threads}) {
1259 if ($auto_threads) {
1260 # Enabled by default, disable it forcibly if unavailable
1261 if ($target{thread_scheme} eq "(unknown)") {
1262 $disabled{threads} = "unavailable";
1263 }
1264 } else {
8483a003 1265 # The user chose to enable threads explicitly, let's see
9c62a279
RL
1266 # if there's a chance that's possible
1267 if ($target{thread_scheme} eq "(unknown)") {
1268 # If the user asked for "threads" and we don't have internal
1269 # knowledge how to do it, [s]he is expected to provide any
1270 # system-dependent compiler options that are necessary. We
1271 # can't truly check that the given options are correct, but
1272 # we expect the user to know what [s]He is doing.
26f0340d
RL
1273 if (!@{$user{CFLAGS}} && !@{$useradd{CFLAGS}}
1274 && !@{$user{CPPDEFINES}} && !@{$useradd{CPPDEFINES}}) {
9c62a279
RL
1275 die "You asked for multi-threading support, but didn't\n"
1276 ,"provide any system-specific compiler options\n";
1277 }
1278 }
1279 }
1280}
1281
1282# If threads still aren't disabled, add a C macro to ensure the source
1283# code knows about it. Any other flag is taken care of by the configs.
1284unless($disabled{threads}) {
e0bf7c01 1285 push @{$config{openssl_feature_defines}}, "OPENSSL_THREADS";
9c62a279 1286}
e452de9d 1287
98186eb4
VD
1288# With "deprecated" disable all deprecated features.
1289if (defined($disabled{"deprecated"})) {
107b5792 1290 $config{api} = $maxapi;
98186eb4 1291}
07c4c14c 1292
8c3bc594 1293my $no_shared_warn=0;
291e94df 1294if ($target{shared_target} eq "")
6f7ac8e1 1295 {
ae48242c 1296 $no_shared_warn = 1
b53338cb 1297 if (!$disabled{shared} || !$disabled{"dynamic-engine"});
84af1bae 1298 $disabled{shared} = "no-shared-target";
ae48242c
RL
1299 $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} =
1300 "no-shared-target";
6f7ac8e1 1301 }
b436a982 1302
19ab5790 1303if ($disabled{"dynamic-engine"}) {
e0bf7c01 1304 push @{$config{openssl_feature_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
343ec2b0 1305 $config{dynamic_engines} = 0;
19ab5790 1306} else {
e0bf7c01 1307 push @{$config{openssl_feature_defines}}, "OPENSSL_NO_STATIC_ENGINE";
19ab5790 1308 $config{dynamic_engines} = 1;
343ec2b0 1309}
ecd45314 1310
c38bb727 1311unless ($disabled{asan}) {
5b18235a 1312 push @{$config{cflags}}, "-fsanitize=address";
abe256e7 1313 push @{$config{cxxflags}}, "-fsanitize=address" if $config{CXX};
c38bb727
BL
1314}
1315
1316unless ($disabled{ubsan}) {
f430ba31 1317 # -DPEDANTIC or -fnosanitize=alignment may also be required on some
c38bb727 1318 # platforms.
5b18235a 1319 push @{$config{cflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all";
fa153b57 1320 push @{$config{cxxflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all"
abe256e7 1321 if $config{CXX};
c38bb727
BL
1322}
1323
29df3061 1324unless ($disabled{msan}) {
5b18235a 1325 push @{$config{cflags}}, "-fsanitize=memory";
abe256e7 1326 push @{$config{cxxflags}}, "-fsanitize=memory" if $config{CXX};
29df3061
EK
1327}
1328
65cc6d5c 1329unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
29df3061 1330 && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
5b18235a 1331 push @{$config{cflags}}, "-fno-omit-frame-pointer", "-g";
abe256e7 1332 push @{$config{cxxflags}}, "-fno-omit-frame-pointer", "-g" if $config{CXX};
c38bb727 1333}
c313e32a
AP
1334#
1335# Platform fix-ups
1336#
ae48242c
RL
1337
1338# This saves the build files from having to check
1339if ($disabled{pic})
1340 {
8c3bc594 1341 foreach (qw(shared_cflag shared_cxxflag shared_cppflag
48dcca26
RL
1342 shared_defines shared_includes shared_ldflag
1343 module_cflags module_cxxflags module_cppflags
1344 module_defines module_includes module_lflags))
793077d0 1345 {
5b18235a 1346 delete $config{$_};
793077d0
RL
1347 $target{$_} = "";
1348 }
ae48242c 1349 }
4f16039e
RL
1350else
1351 {
68b8bcf4 1352 push @{$config{lib_defines}}, "OPENSSL_PIC";
4f16039e 1353 }
ae48242c 1354
291e94df 1355if ($target{sys_id} ne "")
cf1b7d96 1356 {
642a6138 1357 push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
cf1b7d96
RL
1358 }
1359
00b0d663 1360unless ($disabled{asm}) {
d2b2221a 1361 $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
68b8bcf4 1362 push @{$config{lib_defines}}, "OPENSSL_CPUID_OBJ" if ($target{cpuid_asm_src} ne "mem_clr.c");
2ad2281a 1363
9fe2bb77 1364 $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
f8c469de 1365
9e0724a1 1366 # bn-586 is the only one implementing bn_*_part_words
68b8bcf4
RL
1367 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
1368 push @{$config{lib_defines}}, "OPENSSL_IA32_SSE2" if (!$disabled{sse2} && $target{bn_asm_src} =~ /86/);
dfeab068 1369
68b8bcf4
RL
1370 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1371 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1372 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
31703da3 1373 push @{$config{lib_defines}}, "BN_DIV3W" if ($target{bn_asm_src} =~ /-div3w/);
5ac7bde7 1374
9fe2bb77 1375 if ($target{sha1_asm_src}) {
68b8bcf4
RL
1376 push @{$config{lib_defines}}, "SHA1_ASM" if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1377 push @{$config{lib_defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1378 push @{$config{lib_defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
9e0724a1 1379 }
e4739e31
AP
1380 if ($target{keccak1600_asm_src} ne $table{DEFAULTS}->{keccak1600_asm_src}) {
1381 push @{$config{lib_defines}}, "KECCAK1600_ASM";
1382 }
216e8d91 1383 if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
68b8bcf4 1384 push @{$config{lib_defines}}, "RC4_ASM";
216e8d91 1385 }
9fe2bb77 1386 if ($target{md5_asm_src}) {
68b8bcf4 1387 push @{$config{lib_defines}}, "MD5_ASM";
9e0724a1 1388 }
d2b2221a 1389 $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
9fe2bb77 1390 if ($target{rmd160_asm_src}) {
68b8bcf4 1391 push @{$config{lib_defines}}, "RMD160_ASM";
9e0724a1 1392 }
9fe2bb77 1393 if ($target{aes_asm_src}) {
68b8bcf4 1394 push @{$config{lib_defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
9fe2bb77 1395 # aes-ctr.fake is not a real file, only indication that assembler
874a3757 1396 # module implements AES_ctr32_encrypt...
68b8bcf4 1397 push @{$config{lib_defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
9fe2bb77 1398 # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
68b8bcf4 1399 push @{$config{lib_defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
0d59958c 1400 $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($disabled{sse2});
68b8bcf4
RL
1401 push @{$config{lib_defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1402 push @{$config{lib_defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
9e0724a1 1403 }
9fe2bb77 1404 if ($target{wp_asm_src} =~ /mmx/) {
46d4d865 1405 if ($config{processor} eq "386") {
d2b2221a 1406 $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
46d4d865 1407 } elsif (!$disabled{"whirlpool"}) {
68b8bcf4 1408 push @{$config{lib_defines}}, "WHIRLPOOL_ASM";
46d4d865 1409 }
9e0724a1 1410 }
9fe2bb77 1411 if ($target{modes_asm_src} =~ /ghash-/) {
68b8bcf4 1412 push @{$config{lib_defines}}, "GHASH_ASM";
9e0724a1 1413 }
9fe2bb77 1414 if ($target{ec_asm_src} =~ /ecp_nistz256/) {
68b8bcf4 1415 push @{$config{lib_defines}}, "ECP_NISTZ256_ASM";
9e0724a1 1416 }
0e5c8d56 1417 if ($target{ec_asm_src} =~ /x25519/) {
68b8bcf4 1418 push @{$config{lib_defines}}, "X25519_ASM";
0e5c8d56 1419 }
7b176a54 1420 if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
68b8bcf4 1421 push @{$config{lib_defines}}, "PADLOCK_ASM";
7b176a54 1422 }
9fe2bb77 1423 if ($target{poly1305_asm_src} ne "") {
68b8bcf4 1424 push @{$config{lib_defines}}, "POLY1305_ASM";
9e0724a1
RL
1425 }
1426}
d02b48c6 1427
41d6e0f3 1428my %predefined = compiler_predefined($config{CROSS_COMPILE}.$config{CC});
54cf3b98 1429
fe191b49 1430# Check for makedepend capabilities.
6d75a83c 1431if (!$disabled{makedepend}) {
fe191b49
RL
1432 if ($config{target} =~ /^(VC|vms)-/) {
1433 # For VC- and vms- targets, there's nothing more to do here. The
1434 # functionality is hard coded in the corresponding build files for
1435 # cl (Windows) and CC/DECC (VMS).
717f308e
TS
1436 } elsif (($predefined{__GNUC__} // -1) >= 3
1437 && !($predefined{__APPLE_CC__} && !$predefined{__clang__})) {
fe191b49 1438 # We know that GNU C version 3 and up as well as all clang
717f308e
TS
1439 # versions support dependency generation, but Xcode did not
1440 # handle $cc -M before clang support (but claims __GNUC__ = 3)
abe256e7 1441 $config{makedepprog} = "\$(CROSS_COMPILE)$config{CC}";
6d75a83c 1442 } else {
fe191b49
RL
1443 # In all other cases, we look for 'makedepend', and disable the
1444 # capability if not found.
6d75a83c
RL
1445 $config{makedepprog} = which('makedepend');
1446 $disabled{makedepend} = "unavailable" unless $config{makedepprog};
54cf3b98 1447 }
f1f07a23 1448}
8ed40b83 1449
8e5da579 1450if (!$disabled{asm} && !$predefined{__MACH__} && $^O ne 'VMS') {
0ad4078c
AP
1451 # probe for -Wa,--noexecstack option...
1452 if ($predefined{__clang__}) {
1453 # clang has builtin assembler, which doesn't recognize --help,
1454 # but it apparently recognizes the option in question on all
1455 # supported platforms even when it's meaningless. In other words
1456 # probe would fail, but probed option always accepted...
1457 push @{$config{cflags}}, "-Wa,--noexecstack", "-Qunused-arguments";
8e5da579 1458 } else {
0ad4078c
AP
1459 my $cc = $config{CROSS_COMPILE}.$config{CC};
1460 open(PIPE, "$cc -Wa,--help -c -o null.$$.o -x assembler /dev/null 2>&1 |");
1461 while(<PIPE>) {
1462 if (m/--noexecstack/) {
1463 push @{$config{cflags}}, "-Wa,--noexecstack";
1464 last;
1465 }
1466 }
1467 close(PIPE);
1468 unlink("null.$$.o");
1469 }
1470}
7d130f68
RL
1471
1472# Deal with bn_ops ###################################################
1473
7d130f68 1474$config{bn_ll} =0;
7d130f68
RL
1475$config{export_var_as_fn} =0;
1476my $def_int="unsigned int";
1477$config{rc4_int} =$def_int;
b4f35e5e 1478($config{b64l},$config{b64},$config{b32})=(0,0,1);
7d130f68 1479
94af0cd7 1480my $count = 0;
7d130f68 1481foreach (sort split(/\s+/,$target{bn_ops})) {
94af0cd7
RS
1482 $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1483 $config{export_var_as_fn}=1 if $_ eq 'EXPORT_VAR_AS_FN';
1484 $config{bn_ll}=1 if $_ eq 'BN_LLONG';
1485 $config{rc4_int}="unsigned char" if $_ eq 'RC4_CHAR';
1486 ($config{b64l},$config{b64},$config{b32})
1487 =(0,1,0) if $_ eq 'SIXTY_FOUR_BIT';
1488 ($config{b64l},$config{b64},$config{b32})
1489 =(1,0,0) if $_ eq 'SIXTY_FOUR_BIT_LONG';
1490 ($config{b64l},$config{b64},$config{b32})
1491 =(0,0,1) if $_ eq 'THIRTY_TWO_BIT';
7d130f68 1492}
94af0cd7
RS
1493die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1494 if $count > 1;
7d130f68
RL
1495
1496
1497# Hack cflags for better warnings (dev option) #######################
1498
fa153b57
RL
1499# "Stringify" the C and C++ flags string. This permits it to be made part of
1500# a string and works as well on command lines.
5b18235a
RL
1501$config{cflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
1502 @{$config{cflags}} ];
fa153b57 1503$config{cxxflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
abe256e7 1504 @{$config{cxxflags}} ] if $config{CXX};
b436a982 1505
fcd2d5a6
RL
1506$config{openssl_api_defines} = [
1507 "OPENSSL_MIN_API=".($apitable->{$config{api} // ""} // -1)
1508];
98186eb4 1509
fcee5394 1510my @strict_warnings_collection=();
0c28f277
DSH
1511if ($strict_warnings)
1512 {
1513 my $wopt;
6d50589c
AP
1514 my $gccver = $predefined{__GNUC__} // -1;
1515
1516 die "ERROR --strict-warnings requires gcc[>=4] or gcc-alike"
1517 unless $gccver >= 4;
fcee5394
RL
1518 push @strict_warnings_collection, (split /\s+/, $gcc_devteam_warn);
1519 push @strict_warnings_collection, (split /\s+/, $clang_devteam_warn)
1520 if (defined($predefined{__clang__}));
ef8ca6bd 1521 }
fcee5394
RL
1522foreach (qw(CFLAGS CXXFLAGS))
1523 {
1524 $useradd{$_} = [ map { $_ eq '--ossl-strict-warnings'
1525 ? @strict_warnings_collection
1526 : ( $_ ) }
1527 @{$useradd{$_}} ];
1528 }
ef8ca6bd
RL
1529
1530unless ($disabled{"crypto-mdebug-backtrace"})
1531 {
1532 foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
a1d3f3d1 1533 {
5b18235a
RL
1534 push @{$config{cflags}}, $wopt
1535 unless grep { $_ eq $wopt } @{$config{cflags}};
fa153b57 1536 push @{$config{cxxflags}}, $wopt
abe256e7 1537 if ($config{CXX}
fa153b57 1538 && !grep { $_ eq $wopt } @{$config{cxxflags}});
ef8ca6bd
RL
1539 }
1540 if ($target =~ /^BSD-/)
1541 {
5b18235a 1542 push @{$config{ex_libs}}, "-lexecinfo";
291e94df 1543 }
0c28f277
DSH
1544 }
1545
c91a0a83
EK
1546unless ($disabled{afalgeng}) {
1547 $config{afalgeng}="";
9e381e8a 1548 if (grep { $_ eq 'afalgeng' } @{$target{enable}}) {
79fff39d 1549 my $minver = 4*10000 + 1*100 + 0;
abe256e7 1550 if ($config{CROSS_COMPILE} eq "") {
79fff39d
RL
1551 my $verstr = `uname -r`;
1552 my ($ma, $mi1, $mi2) = split("\\.", $verstr);
1553 ($mi2) = $mi2 =~ /(\d+)/;
1554 my $ver = $ma*10000 + $mi1*100 + $mi2;
1555 if ($ver < $minver) {
c91a0a83 1556 $disabled{afalgeng} = "too-old-kernel";
79fff39d
RL
1557 } else {
1558 push @{$config{engdirs}}, "afalg";
1559 }
68dc37c1
MC
1560 } else {
1561 $disabled{afalgeng} = "cross-compiling";
6cba4a66 1562 }
79fff39d 1563 } else {
c91a0a83 1564 $disabled{afalgeng} = "not-linux";
7f458a48 1565 }
1566}
8da00a38 1567
e0bf7c01 1568push @{$config{openssl_feature_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
7f458a48 1569
69495e3d
BP
1570unless ($disabled{ktls}) {
1571 $config{ktls}="";
1572 if ($target =~ m/^linux/) {
1573 my $usr = "/usr/$config{cross_compile_prefix}";
1574 chop($usr);
1575 if ($config{cross_compile_prefix} eq "") {
1576 $usr = "/usr";
1577 }
1578 my $minver = (4 << 16) + (13 << 8) + 0;
1579 my @verstr = split(" ",`cat $usr/include/linux/version.h | grep LINUX_VERSION_CODE`);
1580
1581 if ($verstr[2] < $minver) {
1582 $disabled{ktls} = "too-old-kernel";
1583 }
1584 } else {
1585 $disabled{ktls} = "not-linux";
1586 }
1587}
1588
1589push @{$config{openssl_other_defines}}, "OPENSSL_NO_KTLS" if ($disabled{ktls});
1590
63468812
RL
1591# Finish up %config by appending things the user gave us on the command line
1592# apart from "make variables"
1593foreach (keys %useradd) {
1594 # The must all be lists, so we assert that here
1595 die "internal error: \$useradd{$_} isn't an ARRAY\n"
1596 unless ref $useradd{$_} eq 'ARRAY';
1597
abe256e7
RL
1598 if (defined $config{$_}) {
1599 push @{$config{$_}}, @{$useradd{$_}};
63468812 1600 } else {
abe256e7 1601 $config{$_} = [ @{$useradd{$_}} ];
63468812
RL
1602 }
1603}
1604
5b18235a
RL
1605# ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON
1606
9fe2bb77
RL
1607# If we use the unified build, collect information from build.info files
1608my %unified_info = ();
1609
2b6b606c 1610my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
ddf1847d 1611if ($builder eq "unified") {
9fe2bb77
RL
1612 use with_fallback qw(Text::Template);
1613
9fe2bb77 1614 sub cleandir {
2e963849 1615 my $base = shift;
9fe2bb77 1616 my $dir = shift;
2e963849
RL
1617 my $relativeto = shift || ".";
1618
1619 $dir = catdir($base,$dir) unless isabsolute($dir);
9fe2bb77 1620
ec182ef0
RL
1621 # Make sure the directories we're building in exists
1622 mkpath($dir);
1623
2e963849 1624 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
9fe2bb77
RL
1625 #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1626 return $res;
1627 }
1628
1629 sub cleanfile {
2e963849 1630 my $base = shift;
9fe2bb77 1631 my $file = shift;
2e963849
RL
1632 my $relativeto = shift || ".";
1633
1634 $file = catfile($base,$file) unless isabsolute($file);
1635
9fe2bb77
RL
1636 my $d = dirname($file);
1637 my $f = basename($file);
1638
ec182ef0
RL
1639 # Make sure the directories we're building in exists
1640 mkpath($d);
1641
2e963849 1642 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
9fe2bb77
RL
1643 #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1644 return $res;
1645 }
1646
1967a42e
RL
1647 # Store the name of the template file we will build the build file from
1648 # in %config. This may be useful for the build file itself.
1649 my @build_file_template_names =
1650 ( $builder_platform."-".$target{build_file}.".tmpl",
1651 $target{build_file}.".tmpl" );
1652 my @build_file_templates = ();
1653
1654 # First, look in the user provided directory, if given
7ecdf18d 1655 if (defined env($local_config_envname)) {
1967a42e
RL
1656 @build_file_templates =
1657 map {
1658 if ($^O eq 'VMS') {
1659 # VMS environment variables are logical names,
1660 # which can be used as is
1661 $local_config_envname . ':' . $_;
1662 } else {
7ecdf18d 1663 catfile(env($local_config_envname), $_);
1967a42e
RL
1664 }
1665 }
1666 @build_file_template_names;
1667 }
1668 # Then, look in our standard directory
1669 push @build_file_templates,
1670 ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
1671 @build_file_template_names );
1672
1673 my $build_file_template;
1674 for $_ (@build_file_templates) {
1675 $build_file_template = $_;
1676 last if -f $build_file_template;
1677
1678 $build_file_template = undef;
1679 }
1680 if (!defined $build_file_template) {
1681 die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
1682 }
1683 $config{build_file_templates}
8258975c
RL
1684 = [ cleanfile($srcdir, catfile("Configurations", "common0.tmpl"),
1685 $blddir),
1686 $build_file_template,
1967a42e
RL
1687 cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
1688 $blddir) ];
1689
7f73eafe 1690 my @build_dirs = ( [ ] ); # current directory
9fe2bb77 1691
2e0956ba
RL
1692 $config{build_infos} = [ ];
1693
d201dbc9 1694 my %ordinals = ();
7f73eafe
RL
1695 while (@build_dirs) {
1696 my @curd = @{shift @build_dirs};
1697 my $sourced = catdir($srcdir, @curd);
1698 my $buildd = catdir($blddir, @curd);
9fe2bb77 1699
75d47db4
RL
1700 my $unixdir = join('/', @curd);
1701 if (exists $skipdir{$unixdir}) {
1702 my $what = $skipdir{$unixdir};
1703 push @{$disabled_info{$what}->{skipped}}, catdir(@curd);
1704 next;
1705 }
1706
dca99383 1707 mkpath($buildd);
9fe2bb77 1708
7f73eafe 1709 my $f = 'build.info';
9fe2bb77
RL
1710 # The basic things we're trying to build
1711 my @programs = ();
1712 my @libraries = ();
1842f369 1713 my @modules = ();
9fe2bb77 1714 my @scripts = ();
9fe2bb77 1715
c91f24d4 1716 my %attributes = ();
9fe2bb77 1717 my %sources = ();
2a08d1a0 1718 my %shared_sources = ();
9fe2bb77 1719 my %includes = ();
b96ab5e6 1720 my %defines = ();
9fe2bb77 1721 my %depends = ();
ae4c7450 1722 my %generate = ();
9fe2bb77 1723
846e4c4d
RL
1724 # We want to detect configdata.pm in the source tree, so we
1725 # don't use it if the build tree is different.
1726 my $src_configdata = cleanfile($srcdir, "configdata.pm", $blddir);
1727
2e0956ba 1728 push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
cb6afcd6
RL
1729 my $template =
1730 Text::Template->new(TYPE => 'FILE',
1731 SOURCE => catfile($sourced, $f),
1732 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
9fe2bb77
RL
1733 die "Something went wrong with $sourced/$f: $!\n" unless $template;
1734 my @text =
1735 split /^/m,
1736 $template->fill_in(HASH => { config => \%config,
1737 target => \%target,
9e04edf2 1738 disabled => \%disabled,
f59d0131 1739 withargs => \%withargs,
9fe2bb77
RL
1740 builddir => abs2rel($buildd, $blddir),
1741 sourcedir => abs2rel($sourced, $blddir),
1742 buildtop => abs2rel($blddir, $blddir),
1743 sourcetop => abs2rel($srcdir, $blddir) },
1744 DELIMITERS => [ "{-", "-}" ]);
1745
1746 # The top item of this stack has the following values
1747 # -2 positive already run and we found ELSE (following ELSIF should fail)
1748 # -1 positive already run (skip until ENDIF)
1749 # 0 negatives so far (if we're at a condition, check it)
1750 # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1751 # 2 positive ELSE (following ELSIF should fail)
1752 my @skip = ();
1753 collect_information(
1754 collect_from_array([ @text ],
1755 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1756 $l1 =~ s/\\$//; $l1.$l2 }),
1757 # Info we're looking for
1758 qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
635bd409 1759 => sub {
c5798e0e 1760 if (! @skip || $skip[$#skip] > 0) {
635bd409
RL
1761 push @skip, !! $1;
1762 } else {
1763 push @skip, -1;
1764 }
1765 },
9fe2bb77
RL
1766 qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1767 => sub { die "ELSIF out of scope" if ! @skip;
1768 die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1769 $skip[$#skip] = -1 if $skip[$#skip] != 0;
1770 $skip[$#skip] = !! $1
1771 if $skip[$#skip] == 0; },
1772 qr/^\s*ELSE\s*$/
1773 => sub { die "ELSE out of scope" if ! @skip;
1774 $skip[$#skip] = -2 if $skip[$#skip] != 0;
1775 $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1776 qr/^\s*ENDIF\s*$/
1777 => sub { die "ENDIF out of scope" if ! @skip;
1778 pop @skip; },
7f73eafe
RL
1779 qr/^\s*SUBDIRS\s*=\s*(.*)\s*$/
1780 => sub {
1781 if (!@skip || $skip[$#skip] > 0) {
1782 foreach (tokenize($1)) {
1783 push @build_dirs, [ @curd, splitdir($_, 1) ];
1784 }
1785 }
1786 },
c91f24d4 1787 qr/^\s*PROGRAMS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1788 => sub {
1789 if (!@skip || $skip[$#skip] > 0) {
c91f24d4
RL
1790 my @a = tokenize($1, qr|\s*,\s*|);
1791 my @p = tokenize($2);
1792 push @programs, @p;
1793 foreach my $a (@a) {
1794 my $ak = $a;
1795 my $av = 1;
1796 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1797 $ak = $1;
1798 $av = $2;
1799 }
1800 foreach my $p (@p) {
1801 $attributes{$p}->{$ak} = $av;
1802 }
1803 }
7f5af797
RL
1804 }
1805 },
c91f24d4 1806 qr/^\s*LIBS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1807 => sub {
1808 if (!@skip || $skip[$#skip] > 0) {
c91f24d4
RL
1809 my @a = tokenize($1, qr|\s*,\s*|);
1810 my @l = tokenize($2);
1811 push @libraries, @l;
1812 foreach my $a (@a) {
1813 my $ak = $a;
1814 my $av = 1;
1815 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1816 $ak = $1;
1817 $av = $2;
1818 }
1819 foreach my $l (@l) {
1820 $attributes{$l}->{$ak} = $av;
1821 }
1822 }
7f5af797
RL
1823 }
1824 },
1842f369 1825 qr/^\s*MODULES(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1826 => sub {
1827 if (!@skip || $skip[$#skip] > 0) {
c91f24d4 1828 my @a = tokenize($1, qr|\s*,\s*|);
1842f369
RL
1829 my @m = tokenize($2);
1830 push @modules, @m;
c91f24d4
RL
1831 foreach my $a (@a) {
1832 my $ak = $a;
1833 my $av = 1;
1834 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1835 $ak = $1;
1836 $av = $2;
1837 }
1842f369
RL
1838 foreach my $m (@m) {
1839 $attributes{$m}->{$ak} = $av;
c91f24d4
RL
1840 }
1841 }
7f5af797
RL
1842 }
1843 },
c91f24d4 1844 qr/^\s*SCRIPTS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1845 => sub {
1846 if (!@skip || $skip[$#skip] > 0) {
c91f24d4
RL
1847 my @a = tokenize($1, qr|\s*,\s*|);
1848 my @s = tokenize($2);
1849 push @scripts, @s;
1850 foreach my $a (@a) {
1851 my $ak = $a;
1852 my $av = 1;
1853 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1854 $ak = $1;
1855 $av = $2;
1856 }
1857 foreach my $s (@s) {
1858 $attributes{$s}->{$ak} = $av;
1859 }
1860 }
7f5af797
RL
1861 }
1862 },
9fe2bb77
RL
1863
1864 qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
ce959812 1865 => sub { push @{$ordinals{$1}}, tokenize($2)
9fe2bb77
RL
1866 if !@skip || $skip[$#skip] > 0 },
1867 qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1868 => sub { push @{$sources{$1}}, tokenize($2)
9fe2bb77 1869 if !@skip || $skip[$#skip] > 0 },
2a08d1a0 1870 qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1871 => sub { push @{$shared_sources{$1}}, tokenize($2)
2a08d1a0 1872 if !@skip || $skip[$#skip] > 0 },
9fe2bb77 1873 qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1874 => sub { push @{$includes{$1}}, tokenize($2)
9fe2bb77 1875 if !@skip || $skip[$#skip] > 0 },
b96ab5e6
RL
1876 qr/^\s*DEFINE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1877 => sub { push @{$defines{$1}}, tokenize($2)
1878 if !@skip || $skip[$#skip] > 0 },
4f858293 1879 qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
ce959812 1880 => sub { push @{$depends{$1}}, tokenize($2)
9fe2bb77 1881 if !@skip || $skip[$#skip] > 0 },
ae4c7450
RL
1882 qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1883 => sub { push @{$generate{$1}}, $2
1884 if !@skip || $skip[$#skip] > 0 },
ab6e147c 1885 qr/^\s*(?:#.*)?$/ => sub { },
2b6b606c
RL
1886 "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
1887 "BEFORE" => sub {
1888 if ($buildinfo_debug) {
1889 print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
1890 print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1891 }
1892 },
1893 "AFTER" => sub {
1894 if ($buildinfo_debug) {
1895 print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1896 }
1897 },
9fe2bb77
RL
1898 );
1899 die "runaway IF?" if (@skip);
1900
1842f369
RL
1901 if (grep { defined $attributes{$_}->{engine} } keys %attributes
1902 and !$config{dynamic_engines}) {
1903 die <<"EOF"
19ab5790 1904ENGINES can only be used if configured with 'dynamic-engine'.
9fe2bb77
RL
1905This is usually a fault in a build.info file.
1906EOF
1842f369 1907 }
7f5af797 1908
c91f24d4
RL
1909 foreach (keys %attributes) {
1910 my $dest = $_;
1911 my $ddest = cleanfile($buildd, $_, $blddir);
1912 foreach (keys %{$attributes{$dest} // {}}) {
1913 $unified_info{attributes}->{$ddest}->{$_} =
1914 $attributes{$dest}->{$_};
1915 }
9fe2bb77
RL
1916 }
1917
c91f24d4
RL
1918 {
1919 my %infos = ( programs => [ @programs ],
1920 libraries => [ @libraries ],
1842f369 1921 modules => [ @modules ],
da7e31e0 1922 scripts => [ @scripts ] );
c91f24d4
RL
1923 foreach my $k (keys %infos) {
1924 foreach (@{$infos{$k}}) {
1925 my $item = cleanfile($buildd, $_, $blddir);
1926 $unified_info{$k}->{$item} = 1;
1927 }
1928 }
8a67946e
RL
1929 }
1930
f5fb6f05
RL
1931 # Check that we haven't defined any library as both shared and
1932 # explicitly static. That is forbidden.
1933 my @doubles = ();
1934 foreach (grep /\.a$/, keys %{$unified_info{libraries}}) {
1935 (my $l = $_) =~ s/\.a$//;
1936 push @doubles, $l if defined $unified_info{libraries}->{$l};
9fe2bb77 1937 }
f5fb6f05
RL
1938 die "these libraries are both explicitly static and shared:\n ",
1939 join(" ", @doubles), "\n"
1940 if @doubles;
9fe2bb77 1941
9fe2bb77
RL
1942 foreach (keys %sources) {
1943 my $dest = $_;
2e963849 1944 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77 1945 foreach (@{$sources{$dest}}) {
2e963849 1946 my $s = cleanfile($sourced, $_, $blddir);
9fe2bb77
RL
1947
1948 # If it isn't in the source tree, we assume it's generated
1949 # in the build tree
846e4c4d 1950 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2e963849 1951 $s = cleanfile($buildd, $_, $blddir);
9fe2bb77 1952 }
ea241958
RL
1953 # We recognise C++, C and asm files
1954 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
1955 my $o = $_;
1956 $o =~ s/\.[csS]$/.o/; # C and assembler
1957 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2e963849 1958 $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1959 $unified_info{sources}->{$ddest}->{$o} = -1;
1960 $unified_info{sources}->{$o}->{$s} = -1;
83900628
RS
1961 } elsif ($s =~ /\.rc$/) {
1962 # We also recognise resource files
1963 my $o = $_;
1964 $o =~ s/\.rc$/.res/; # Resource configuration
1965 my $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1966 $unified_info{sources}->{$ddest}->{$o} = -1;
1967 $unified_info{sources}->{$o}->{$s} = -1;
9fe2bb77
RL
1968 } else {
1969 $unified_info{sources}->{$ddest}->{$s} = 1;
1970 }
1971 }
1972 }
1973
2a08d1a0
RL
1974 foreach (keys %shared_sources) {
1975 my $dest = $_;
1976 my $ddest = cleanfile($buildd, $_, $blddir);
2a08d1a0
RL
1977 foreach (@{$shared_sources{$dest}}) {
1978 my $s = cleanfile($sourced, $_, $blddir);
1979
1980 # If it isn't in the source tree, we assume it's generated
1981 # in the build tree
846e4c4d 1982 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2a08d1a0
RL
1983 $s = cleanfile($buildd, $_, $blddir);
1984 }
ccce3e1d 1985
ea241958 1986 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
ccce3e1d 1987 # We recognise C++, C and asm files
ea241958
RL
1988 my $o = $_;
1989 $o =~ s/\.[csS]$/.o/; # C and assembler
1990 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2a08d1a0 1991 $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1992 $unified_info{shared_sources}->{$ddest}->{$o} = -1;
1993 $unified_info{sources}->{$o}->{$s} = -1;
ccce3e1d
RL
1994 } elsif ($s =~ /\.rc$/) {
1995 # We also recognise resource files
1996 my $o = $_;
1997 $o =~ s/\.rc$/.res/; # Resource configuration
1998 my $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1999 $unified_info{shared_sources}->{$ddest}->{$o} = -1;
2000 $unified_info{sources}->{$o}->{$s} = -1;
ef2dfc99
RL
2001 } elsif ($s =~ /\.ld$/) {
2002 # We also recognise linker scripts (or corresponding)
ccce3e1d 2003 # We know they are generated files
05a72c28 2004 my $ld = cleanfile($buildd, $_, $blddir);
ef2dfc99 2005 $unified_info{shared_sources}->{$ddest}->{$ld} = 1;
2a08d1a0
RL
2006 } else {
2007 die "unrecognised source file type for shared library: $s\n";
2008 }
2009 }
2010 }
2011
ae4c7450
RL
2012 foreach (keys %generate) {
2013 my $dest = $_;
2014 my $ddest = cleanfile($buildd, $_, $blddir);
ae4c7450
RL
2015 die "more than one generator for $dest: "
2016 ,join(" ", @{$generate{$_}}),"\n"
2017 if scalar @{$generate{$_}} > 1;
2018 my @generator = split /\s+/, $generate{$dest}->[0];
2019 $generator[0] = cleanfile($sourced, $generator[0], $blddir),
2020 $unified_info{generate}->{$ddest} = [ @generator ];
2021 }
2022
9fe2bb77
RL
2023 foreach (keys %depends) {
2024 my $dest = $_;
4f858293 2025 my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
8d34daf0
RL
2026
2027 # If the destination doesn't exist in source, it can only be
2028 # a generated file in the build tree.
846e4c4d 2029 if ($ddest ne "" && ($ddest eq $src_configdata || ! -f $ddest)) {
8d34daf0 2030 $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
2031 }
2032 foreach (@{$depends{$dest}}) {
2e963849 2033 my $d = cleanfile($sourced, $_, $blddir);
9fe2bb77 2034
e737d7b1
RL
2035 # If we know it's generated, or assume it is because we can't
2036 # find it in the source tree, we set file we depend on to be
2037 # in the build tree rather than the source tree, and assume
2038 # and that there are lines to build it in a BEGINRAW..ENDRAW
2039 # section or in the Makefile template.
846e4c4d
RL
2040 if ($d eq $src_configdata
2041 || ! -f $d
da1f2104
RL
2042 || (grep { $d eq $_ }
2043 map { cleanfile($srcdir, $_, $blddir) }
4f858293 2044 grep { /\.h$/ } keys %{$unified_info{generate}})) {
2e963849 2045 $d = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
2046 }
2047 # Take note if the file to depend on is being renamed
186a31e5
RL
2048 # Take extra care with files ending with .a, they should
2049 # be treated without that extension, and the extension
2050 # should be added back after treatment.
2051 $d =~ /(\.a)?$/;
2052 my $e = $1 // "";
f5fb6f05 2053 $d = $`.$e;
9fe2bb77 2054 $unified_info{depends}->{$ddest}->{$d} = 1;
9fe2bb77
RL
2055 }
2056 }
2057
2058 foreach (keys %includes) {
2059 my $dest = $_;
8d34daf0
RL
2060 my $ddest = cleanfile($sourced, $_, $blddir);
2061
2062 # If the destination doesn't exist in source, it can only be
2063 # a generated file in the build tree.
846e4c4d 2064 if ($ddest eq $src_configdata || ! -f $ddest) {
8d34daf0 2065 $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
2066 }
2067 foreach (@{$includes{$dest}}) {
4748f890
RL
2068 my $is = cleandir($sourced, $_, $blddir);
2069 my $ib = cleandir($buildd, $_, $blddir);
2070 push @{$unified_info{includes}->{$ddest}->{source}}, $is
2071 unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
2072 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
2073 unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
9fe2bb77
RL
2074 }
2075 }
b96ab5e6
RL
2076
2077 foreach (keys %defines) {
2078 my $dest = $_;
2079 my $ddest = cleanfile($sourced, $_, $blddir);
2080
2081 # If the destination doesn't exist in source, it can only be
2082 # a generated file in the build tree.
2083 if (! -f $ddest) {
2084 $ddest = cleanfile($buildd, $_, $blddir);
2085 if ($unified_info{rename}->{$ddest}) {
2086 $ddest = $unified_info{rename}->{$ddest};
2087 }
2088 }
2089 foreach (@{$defines{$dest}}) {
2090 m|^([^=]*)(=.*)?$|;
2091 die "0 length macro name not permitted\n" if $1 eq "";
2092 die "$1 defined more than once\n"
2093 if defined $unified_info{defines}->{$ddest}->{$1};
2094 $unified_info{defines}->{$ddest}->{$1} = $2;
2095 }
2096 }
9fe2bb77
RL
2097 }
2098
d201dbc9
RL
2099 my $ordinals_text = join(', ', sort keys %ordinals);
2100 warn <<"EOF" if $ordinals_text;
2101
2102WARNING: ORDINALS were specified for $ordinals_text
2103They are ignored and should be replaced with a combination of GENERATE,
2104DEPEND and SHARED_SOURCE.
2105EOF
2106
1b5ad51f
RL
2107 # Massage the result
2108
e431bcfa
RL
2109 # If we depend on a header file or a perl module, add an inclusion of
2110 # its directory to allow smoothe inclusion
2111 foreach my $dest (keys %{$unified_info{depends}}) {
2112 next if $dest eq "";
2113 foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
2114 next unless $d =~ /\.(h|pm)$/;
906032d5
RL
2115 my $i = dirname($d);
2116 my $spot =
2117 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
2118 ? 'build' : 'source';
2119 push @{$unified_info{includes}->{$dest}->{$spot}}, $i
2120 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{$spot}};
e431bcfa
RL
2121 }
2122 }
2123
ef2dfc99 2124 # Go through all intermediary files and change their names to something that
bec2db18
RL
2125 # reflects what they will be built for. Note that for some source files,
2126 # this leads to duplicate object files because they are used multiple times.
2127 # the goal is to rename all object files according to this scheme:
2128 # {productname}-{midfix}-{origobjname}.[o|res]
2129 # the {midfix} is a keyword indicating the type of product, which is mostly
2130 # valuable for libraries since they come in two forms.
2131 #
2132 # This also reorganises the {sources} and {shared_sources} so that the
2133 # former only contains ALL object files that are supposed to end up in
2134 # static libraries and programs, while the latter contains ALL object files
2135 # that are supposed to end up in shared libraries and DSOs.
2136 # The main reason for having two different source structures is to allow
2137 # the same name to be used for the static and the shared variants of a
2138 # library.
2139 {
2140 # Take copies so we don't get interference from added stuff
2141 my %unified_copy = ();
2142 foreach (('sources', 'shared_sources')) {
2143 $unified_copy{$_} = { %{$unified_info{$_}} }
2144 if defined($unified_info{$_});
2145 delete $unified_info{$_};
2146 }
1842f369 2147 foreach my $prodtype (('programs', 'libraries', 'modules', 'scripts')) {
bec2db18
RL
2148 # $intent serves multi purposes:
2149 # - give a prefix for the new object files names
2150 # - in the case of libraries, rearrange the object files so static
2151 # libraries use the 'sources' structure exclusively, while shared
2152 # libraries use the 'shared_sources' structure exclusively.
2153 my $intent = {
2154 programs => { bin => { src => [ 'sources' ],
2155 dst => 'sources' } },
2156 libraries => { lib => { src => [ 'sources' ],
2157 dst => 'sources' },
2158 shlib => { prodselect =>
2159 sub { grep !/\.a$/, @_ },
2160 src => [ 'sources',
2161 'shared_sources' ],
2162 dst => 'shared_sources' } },
1842f369 2163 modules => { dso => { src => [ 'sources',
bec2db18
RL
2164 'shared_sources' ],
2165 dst => 'shared_sources' } },
2166 scripts => { script => { src => [ 'sources' ],
2167 dst => 'sources' } }
2168 } -> {$prodtype};
2169 foreach my $kind (keys %$intent) {
856b1b65
RL
2170 next if ($intent->{$kind}->{dst} eq 'shared_sources'
2171 && $disabled{shared});
2172
bec2db18
RL
2173 my @src = @{$intent->{$kind}->{src}};
2174 my $dst = $intent->{$kind}->{dst};
2175 my $prodselect = $intent->{$kind}->{prodselect} // sub { @_ };
2176 foreach my $prod ($prodselect->(keys %{$unified_info{$prodtype}})) {
2177 # %prod_sources has all applicable objects as keys, and
2178 # their corresponding sources as values
2179 my %prod_sources =
2180 map { $_ => [ keys %{$unified_copy{sources}->{$_}} ] }
2181 map { keys %{$unified_copy{$_}->{$prod}} }
2182 @src;
2183 foreach (keys %prod_sources) {
ef2dfc99
RL
2184 # Only affect object files and resource files,
2185 # the others simply get a new value
2186 # (+1 instead of -1)
bec2db18
RL
2187 if ($_ =~ /\.(o|res)$/) {
2188 (my $prodname = $prod) =~ s|\.a$||;
2189 my $newobj =
2190 catfile(dirname($_),
2191 basename($prodname)
2192 . '-' . $kind
2193 . '-' . basename($_));
2194 $unified_info{$dst}->{$prod}->{$newobj} = 1;
2195 foreach my $src (@{$prod_sources{$_}}) {
2196 $unified_info{sources}->{$newobj}->{$src} = 1;
2197 }
2198 # Adjust dependencies
2199 foreach my $deps (keys %{$unified_info{depends}->{$_}}) {
2200 $unified_info{depends}->{$_}->{$deps} = -1;
2201 $unified_info{depends}->{$newobj}->{$deps} = 1;
2202 }
2203 # Adjust includes
2204 foreach my $k (('source', 'build')) {
2205 next unless
2206 defined($unified_info{includes}->{$_}->{$k});
2207 my @incs = @{$unified_info{includes}->{$_}->{$k}};
2208 $unified_info{includes}->{$newobj}->{$k} = [ @incs ];
2209 }
2210 } else {
2211 $unified_info{$dst}->{$prod}->{$_} = 1;
2212 }
2213 }
2214 }
2215 }
2216 }
2217 }
2218 # At this point, we have a number of sources with the value -1. They
2219 # aren't part of the local build and are probably meant for a different
2220 # platform, and can therefore be cleaned away. That happens when making
2221 # %unified_info more efficient below.
2222
9fe2bb77
RL
2223 ### Make unified_info a bit more efficient
2224 # One level structures
1842f369 2225 foreach (("programs", "libraries", "modules", "scripts")) {
9fe2bb77
RL
2226 $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
2227 }
2228 # Two level structures
c91f24d4 2229 foreach my $l1 (("sources", "shared_sources", "ldadd", "depends")) {
9fe2bb77 2230 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
bec2db18
RL
2231 my @items =
2232 sort
2233 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2234 keys %{$unified_info{$l1}->{$l2}};
2235 if (@items) {
2236 $unified_info{$l1}->{$l2} = [ @items ];
2237 } else {
2238 delete $unified_info{$l1}->{$l2};
2239 }
9fe2bb77
RL
2240 }
2241 }
b96ab5e6
RL
2242 # Defines
2243 foreach my $dest (sort keys %{$unified_info{defines}}) {
2244 $unified_info{defines}->{$dest}
2245 = [ map { $_.$unified_info{defines}->{$dest}->{$_} }
2246 sort keys %{$unified_info{defines}->{$dest}} ];
2247 }
4748f890
RL
2248 # Includes
2249 foreach my $dest (sort keys %{$unified_info{includes}}) {
2250 if (defined($unified_info{includes}->{$dest}->{build})) {
e431bcfa
RL
2251 my @source_includes = ();
2252 @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
2253 if defined($unified_info{includes}->{$dest}->{source});
4748f890
RL
2254 $unified_info{includes}->{$dest} =
2255 [ @{$unified_info{includes}->{$dest}->{build}} ];
2256 foreach my $inc (@source_includes) {
2257 push @{$unified_info{includes}->{$dest}}, $inc
2258 unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
2259 }
609e4be8 2260 } elsif (defined($unified_info{includes}->{$dest}->{source})) {
4748f890
RL
2261 $unified_info{includes}->{$dest} =
2262 [ @{$unified_info{includes}->{$dest}->{source}} ];
609e4be8
RL
2263 } else {
2264 delete $unified_info{includes}->{$dest};
4748f890
RL
2265 }
2266 }
b6e66075
RL
2267
2268 # For convenience collect information regarding directories where
2269 # files are generated, those generated files and the end product
2270 # they end up in where applicable. Then, add build rules for those
2271 # directories
2272 my %loopinfo = ( "lib" => [ @{$unified_info{libraries}} ],
1842f369 2273 "dso" => [ @{$unified_info{modules}} ],
b6e66075
RL
2274 "bin" => [ @{$unified_info{programs}} ],
2275 "script" => [ @{$unified_info{scripts}} ] );
2276 foreach my $type (keys %loopinfo) {
2277 foreach my $product (@{$loopinfo{$type}}) {
2278 my %dirs = ();
2279 my $pd = dirname($product);
2280
3bed01a0 2281 foreach (@{$unified_info{sources}->{$product} // []},
b6e66075
RL
2282 @{$unified_info{shared_sources}->{$product} // []}) {
2283 my $d = dirname($_);
2284
2285 # We don't want to create targets for source directories
2286 # when building out of source
2287 next if ($config{sourcedir} ne $config{builddir}
2288 && $d =~ m|^\Q$config{sourcedir}\E|);
2289 # We already have a "test" target, and the current directory
2290 # is just silly to make a target for
2291 next if $d eq "test" || $d eq ".";
2292
2293 $dirs{$d} = 1;
2294 push @{$unified_info{dirinfo}->{$d}->{deps}}, $_
2295 if $d ne $pd;
2296 }
2297 foreach (keys %dirs) {
2298 push @{$unified_info{dirinfo}->{$_}->{products}->{$type}},
2299 $product;
2300 }
2301 }
2302 }
9fe2bb77
RL
2303}
2304
2305# For the schemes that need it, we provide the old *_obj configs
2306# from the *_asm_obj ones
3a55c92b 2307foreach (grep /_(asm|aux)_src$/, keys %target) {
9fe2bb77 2308 my $src = $_;
3a55c92b 2309 (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
ea241958
RL
2310 $target{$obj} = $target{$src};
2311 $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
2312 $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
9fe2bb77
RL
2313}
2314
291e94df
RL
2315# Write down our configuration where it fits #########################
2316
b1fafff6 2317print "Creating configdata.pm\n";
291e94df
RL
2318open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
2319print OUT <<"EOF";
abe256e7 2320#! $config{HASHBANGPERL}
b1fafff6 2321
291e94df
RL
2322package configdata;
2323
2324use strict;
2325use warnings;
2326
2327use Exporter;
2328#use vars qw(\@ISA \@EXPORT);
2329our \@ISA = qw(Exporter);
3850f8cb 2330our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
291e94df
RL
2331
2332EOF
2333print OUT "our %config = (\n";
2334foreach (sort keys %config) {
2335 if (ref($config{$_}) eq "ARRAY") {
2336 print OUT " ", $_, " => [ ", join(", ",
2337 map { quotify("perl", $_) }
2338 @{$config{$_}}), " ],\n";
7ecdf18d
RL
2339 } elsif (ref($config{$_}) eq "HASH") {
2340 print OUT " ", $_, " => {";
2341 if (scalar keys %{$config{$_}} > 0) {
2342 print OUT "\n";
2343 foreach my $key (sort keys %{$config{$_}}) {
2344 print OUT " ",
2345 join(" => ",
2346 quotify("perl", $key),
2347 defined $config{$_}->{$key}
2348 ? quotify("perl", $config{$_}->{$key})
2349 : "undef");
2350 print OUT ",\n";
2351 }
2352 print OUT " ";
2353 }
2354 print OUT "},\n";
291e94df
RL
2355 } else {
2356 print OUT " ", $_, " => ", quotify("perl", $config{$_}), ",\n"
2357 }
2358}
2359print OUT <<"EOF";
2360);
2361
2362EOF
2363print OUT "our %target = (\n";
2364foreach (sort keys %target) {
2365 if (ref($target{$_}) eq "ARRAY") {
2366 print OUT " ", $_, " => [ ", join(", ",
2367 map { quotify("perl", $_) }
2368 @{$target{$_}}), " ],\n";
2369 } else {
2370 print OUT " ", $_, " => ", quotify("perl", $target{$_}), ",\n"
2371 }
2372}
2373print OUT <<"EOF";
2374);
2375
96d2d7bc
RL
2376EOF
2377print OUT "our \%available_protocols = (\n";
2378print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
2379print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
2380print OUT <<"EOF";
2381);
2382
3850f8cb
RL
2383EOF
2384print OUT "our \@disablables = (\n";
2385foreach (@disablables) {
2386 print OUT " ", quotify("perl", $_), ",\n";
2387}
2388print OUT <<"EOF";
2389);
2390
96d2d7bc
RL
2391EOF
2392print OUT "our \%disabled = (\n";
2393foreach (sort keys %disabled) {
2394 print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
2395}
2396print OUT <<"EOF";
2397);
2398
291e94df 2399EOF
107b5792
RL
2400print OUT "our %withargs = (\n";
2401foreach (sort keys %withargs) {
2402 if (ref($withargs{$_}) eq "ARRAY") {
2403 print OUT " ", $_, " => [ ", join(", ",
2404 map { quotify("perl", $_) }
2405 @{$withargs{$_}}), " ],\n";
2406 } else {
2407 print OUT " ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
2408 }
2409}
2410print OUT <<"EOF";
2411);
edd4d402 2412
107b5792 2413EOF
ddf1847d 2414if ($builder eq "unified") {
9fe2bb77
RL
2415 my $recurse;
2416 $recurse = sub {
2417 my $indent = shift;
2418 foreach (@_) {
2419 if (ref $_ eq "ARRAY") {
2420 print OUT " "x$indent, "[\n";
2421 foreach (@$_) {
2422 $recurse->($indent + 4, $_);
2423 }
2424 print OUT " "x$indent, "],\n";
2425 } elsif (ref $_ eq "HASH") {
2426 my %h = %$_;
2427 print OUT " "x$indent, "{\n";
2428 foreach (sort keys %h) {
2429 if (ref $h{$_} eq "") {
2430 print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
2431 } else {
2432 print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
2433 $recurse->($indent + 8, $h{$_});
2434 }
2435 }
2436 print OUT " "x$indent, "},\n";
2437 } else {
2438 print OUT " "x$indent, quotify("perl", $_), ",\n";
2439 }
2440 }
2441 };
2442 print OUT "our %unified_info = (\n";
2443 foreach (sort keys %unified_info) {
2444 if (ref $unified_info{$_} eq "") {
2445 print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
2446 } else {
2447 print OUT " "x4, quotify("perl", $_), " =>\n";
2448 $recurse->(8, $unified_info{$_});
2449 }
2450 }
2451 print OUT <<"EOF";
2452);
2453
2454EOF
2455}
047f0292
RL
2456print OUT
2457 "# The following data is only used when this files is use as a script\n";
abe256e7 2458print OUT "my \@makevars = (\n";
b1fafff6 2459foreach (sort keys %user) {
abe256e7 2460 print OUT " '",$_,"',\n";
b1fafff6
RL
2461}
2462print OUT ");\n";
ca372414
RL
2463print OUT "my \%disabled_info = (\n";
2464foreach my $what (sort keys %disabled_info) {
2465 print OUT " '$what' => {\n";
2466 foreach my $info (sort keys %{$disabled_info{$what}}) {
2467 if (ref $disabled_info{$what}->{$info} eq 'ARRAY') {
2468 print OUT " $info => [ ",
2469 join(', ', map { "'$_'" } @{$disabled_info{$what}->{$info}}),
2470 " ],\n";
2471 } else {
2472 print OUT " $info => '", $disabled_info{$what}->{$info},
2473 "',\n";
2474 }
2475 }
2476 print OUT " },\n";
2477}
2478print OUT ");\n";
f729ba55 2479print OUT 'my @user_crossable = qw( ', join (' ', @user_crossable), " );\n";
b1fafff6 2480print OUT << 'EOF';
b1fafff6
RL
2481# If run directly, we can give some answers, and even reconfigure
2482unless (caller) {
2483 use Getopt::Long;
2484 use File::Spec::Functions;
2485 use File::Basename;
2486 use Pod::Usage;
2487
2488 my $here = dirname($0);
2489
2490 my $dump = undef;
2491 my $cmdline = undef;
ca372414 2492 my $options = undef;
50ea9d2b 2493 my $target = undef;
b1fafff6
RL
2494 my $envvars = undef;
2495 my $makevars = undef;
2496 my $buildparams = undef;
2497 my $reconf = undef;
2498 my $verbose = undef;
2499 my $help = undef;
2500 my $man = undef;
2501 GetOptions('dump|d' => \$dump,
2502 'command-line|c' => \$cmdline,
ca372414 2503 'options|o' => \$options,
50ea9d2b 2504 'target|t' => \$target,
b1fafff6
RL
2505 'environment|e' => \$envvars,
2506 'make-variables|m' => \$makevars,
2507 'build-parameters|b' => \$buildparams,
2508 'reconfigure|reconf|r' => \$reconf,
2509 'verbose|v' => \$verbose,
2510 'help' => \$help,
2511 'man' => \$man)
2512 or die "Errors in command line arguments\n";
2513
50ea9d2b 2514 unless ($dump || $cmdline || $options || $target || $envvars || $makevars
ca372414 2515 || $buildparams || $reconf || $verbose || $help || $man) {
b1fafff6
RL
2516 print STDERR <<"_____";
2517You must give at least one option.
2518For more information, do '$0 --help'
2519_____
2520 exit(2);
2521 }
2522
2523 if ($help) {
2524 pod2usage(-exitval => 0,
2525 -verbose => 1);
2526 }
2527 if ($man) {
2528 pod2usage(-exitval => 0,
2529 -verbose => 2);
2530 }
2531 if ($dump || $cmdline) {
d5fa7035 2532 print "\nCommand line (with current working directory = $here):\n\n";
b1fafff6 2533 print ' ',join(' ',
9e265322 2534 $config{PERL},
b1fafff6
RL
2535 catfile($config{sourcedir}, 'Configure'),
2536 @{$config{perlargv}}), "\n";
d5fa7035
RL
2537 print "\nPerl information:\n\n";
2538 print ' ',$config{perl_cmd},"\n";
2539 print ' ',$config{perl_version},' for ',$config{perl_archname},"\n";
b1fafff6 2540 }
ca372414
RL
2541 if ($dump || $options) {
2542 my $longest = 0;
0b80103b 2543 my $longest2 = 0;
ca372414
RL
2544 foreach my $what (@disablables) {
2545 $longest = length($what) if $longest < length($what);
1d2c6b7d
RL
2546 $longest2 = length($disabled{$what})
2547 if $disabled{$what} && $longest2 < length($disabled{$what});
ca372414
RL
2548 }
2549 print "\nEnabled features:\n\n";
2550 foreach my $what (@disablables) {
2551 print " $what\n" unless $disabled{$what};
2552 }
2553 print "\nDisabled features:\n\n";
2554 foreach my $what (@disablables) {
2555 if ($disabled{$what}) {
2556 print " $what", ' ' x ($longest - length($what) + 1),
0b80103b 2557 "[$disabled{$what}]", ' ' x ($longest2 - length($disabled{$what}) + 1);
ca372414
RL
2558 print $disabled_info{$what}->{macro}
2559 if $disabled_info{$what}->{macro};
2560 print ' (skip ',
2561 join(', ', @{$disabled_info{$what}->{skipped}}),
2562 ')'
2563 if $disabled_info{$what}->{skipped};
2564 print "\n";
2565 }
2566 }
2567 }
50ea9d2b
RL
2568 if ($dump || $target) {
2569 print "\nConfig target attributes:\n\n";
2570 foreach (sort keys %target) {
2571 next if $_ =~ m|^_| || $_ eq 'template';
2572 my $quotify = sub {
2573 map { (my $x = $_) =~ s|([\\\$\@"])|\\$1|g; "\"$x\""} @_;
2574 };
2575 print ' ', $_, ' => ';
2576 if (ref($target{$_}) eq "ARRAY") {
2577 print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n";
2578 } else {
2579 print $quotify->($target{$_}), ",\n"
2580 }
2581 }
2582 }
b1fafff6
RL
2583 if ($dump || $envvars) {
2584 print "\nRecorded environment:\n\n";
2585 foreach (sort keys %{$config{perlenv}}) {
2586 print ' ',$_,' = ',($config{perlenv}->{$_} || ''),"\n";
2587 }
2588 }
2589 if ($dump || $makevars) {
2590 print "\nMakevars:\n\n";
abe256e7 2591 foreach my $var (@makevars) {
f729ba55 2592 my $prefix = '';
abe256e7 2593 $prefix = $config{CROSS_COMPILE}
f729ba55 2594 if grep { $var eq $_ } @user_crossable;
b700bc59 2595 $prefix //= '';
f729ba55 2596 print ' ',$var,' ' x (16 - length $var),'= ',
abe256e7
RL
2597 (ref $config{$var} eq 'ARRAY'
2598 ? join(' ', @{$config{$var}})
2599 : $prefix.$config{$var}),
b1fafff6 2600 "\n"
abe256e7 2601 if defined $config{$var};
b1fafff6
RL
2602 }
2603
2604 my @buildfile = ($config{builddir}, $config{build_file});
2605 unshift @buildfile, $here
2606 unless file_name_is_absolute($config{builddir});
2607 my $buildfile = canonpath(catdir(@buildfile));
2608 print <<"_____";
2609
2610NOTE: These variables only represent the configuration view. The build file
2611template may have processed these variables further, please have a look at the
2612build file for more exact data:
2613 $buildfile
2614_____
2615 }
2616 if ($dump || $buildparams) {
2617 my @buildfile = ($config{builddir}, $config{build_file});
2618 unshift @buildfile, $here
2619 unless file_name_is_absolute($config{builddir});
2620 print "\nbuild file:\n\n";
2621 print " ", canonpath(catfile(@buildfile)),"\n";
2622
2623 print "\nbuild file templates:\n\n";
2624 foreach (@{$config{build_file_templates}}) {
2625 my @tmpl = ($_);
2626 unshift @tmpl, $here
2627 unless file_name_is_absolute($config{sourcedir});
2628 print ' ',canonpath(catfile(@tmpl)),"\n";
2629 }
2630 }
2631 if ($reconf) {
2632 if ($verbose) {
2633 print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n";
2634 foreach (sort keys %{$config{perlenv}}) {
2635 print ' ',$_,' = ',($config{perlenv}->{$_} || ""),"\n";
2636 }
2637 }
2638
2639 chdir $here;
2640 exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf';
2641 }
2642}
2643
26441;
2645
2646__END__
2647
2648=head1 NAME
2649
2650configdata.pm - configuration data for OpenSSL builds
2651
2652=head1 SYNOPSIS
2653
2654Interactive:
2655
2656 perl configdata.pm [options]
2657
2658As data bank module:
2659
2660 use configdata;
f2d4be3b 2661
b1fafff6
RL
2662=head1 DESCRIPTION
2663
2664This module can be used in two modes, interactively and as a module containing
2665all the data recorded by OpenSSL's Configure script.
2666
2667When used interactively, simply run it as any perl script, with at least one
2668option, and you will get the information you ask for. See L</OPTIONS> below.
2669
2670When loaded as a module, you get a few databanks with useful information to
2671perform build related tasks. The databanks are:
2672
2673 %config Configured things.
2674 %target The OpenSSL config target with all inheritances
2675 resolved.
2676 %disabled The features that are disabled.
2677 @disablables The list of features that can be disabled.
2678 %withargs All data given through --with-THING options.
2679 %unified_info All information that was computed from the build.info
2680 files.
2681
2682=head1 OPTIONS
2683
2684=over 4
2685
2686=item B<--help>
2687
2688Print a brief help message and exit.
2689
2690=item B<--man>
2691
2692Print the manual page and exit.
2693
85d6ad34 2694=item B<--dump> | B<-d>
b1fafff6
RL
2695
2696Print all relevant configuration data. This is equivalent to B<--command-line>
50ea9d2b
RL
2697B<--options> B<--target> B<--environment> B<--make-variables>
2698B<--build-parameters>.
b1fafff6
RL
2699
2700=item B<--command-line> | B<-c>
2701
2702Print the current configuration command line.
2703
ca372414
RL
2704=item B<--options> | B<-o>
2705
2706Print the features, both enabled and disabled, and display defined macro and
2707skipped directories where applicable.
2708
50ea9d2b
RL
2709=item B<--target> | B<-t>
2710
2711Print the config attributes for this config target.
2712
b1fafff6
RL
2713=item B<--environment> | B<-e>
2714
2715Print the environment variables and their values at the time of configuration.
2716
2717=item B<--make-variables> | B<-m>
2718
2719Print the main make variables generated in the current configuration
2720
2721=item B<--build-parameters> | B<-b>
2722
2723Print the build parameters, i.e. build file and build file templates.
2724
2725=item B<--reconfigure> | B<--reconf> | B<-r>
2726
2727Redo the configuration.
2728
2729=item B<--verbose> | B<-v>
2730
2731Verbose output.
2732
2733=back
2734
2735=cut
2736
2737EOF
2738close(OUT);
2739if ($builder_platform eq 'unix') {
2740 my $mode = (0755 & ~umask);
2741 chmod $mode, 'configdata.pm'
2742 or warn sprintf("WARNING: Couldn't change mode for 'configdata.pm' to 0%03o: %s\n",$mode,$!);
2743}
cba5068d 2744
88087414 2745my %builders = (
9fe2bb77 2746 unified => sub {
b1fafff6 2747 print 'Creating ',$target{build_file},"\n";
ddf1847d 2748 run_dofile(catfile($blddir, $target{build_file}),
1967a42e 2749 @{$config{build_file_templates}});
9fe2bb77 2750 },
88087414
RL
2751 );
2752
ddf1847d 2753$builders{$builder}->($builder_platform, @builder_opts);
fce0ba5f 2754
8937a4ed
RL
2755$SIG{__DIE__} = $orig_death_handler;
2756
9c62a279 2757print <<"EOF" if ($disabled{threads} eq "unavailable");
5f8d5c96
BM
2758
2759The library could not be configured for supporting multi-threaded
2760applications as the compiler options required on this system are not known.
ff1b7e09 2761See file INSTALL for details if you need multi-threading.
ec577822
BM
2762EOF
2763
76ffb43d 2764print <<"EOF" if ($no_shared_warn);
2964ba8c 2765
ae48242c
RL
2766The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2767platform, so we will pretend you gave the option 'no-pic', which also disables
2768'shared' and 'dynamic-engine'. If you know how to implement shared libraries
2769or position independent code, please let us know (but please first make sure
2770you have tried with a current version of OpenSSL).
2e31ef03
RS
2771EOF
2772
820e414d
RL
2773print <<"EOF";
2774
2775**********************************************************************
2776*** ***
41349b5e 2777*** OpenSSL has been successfully configured ***
820e414d 2778*** ***
41349b5e
DMSP
2779*** If you encounter a problem while building, please open an ***
2780*** issue on GitHub <https://github.com/openssl/openssl/issues> ***
2781*** and include the output from the following command: ***
2782*** ***
2783*** perl configdata.pm --dump ***
2784*** ***
2785*** (If you are new to OpenSSL, you might want to consult the ***
2786*** 'Troubleshooting' section in the INSTALL file first) ***
820e414d
RL
2787*** ***
2788**********************************************************************
2789EOF
2790
d02b48c6
RE
2791exit(0);
2792
bd5192b1
RL
2793######################################################################
2794#
2795# Helpers and utility functions
2796#
2797
8937a4ed
RL
2798# Death handler, to print a helpful message in case of failure #######
2799#
2800sub death_handler {
eb807d53 2801 die @_ if $^S; # To prevent the added message in eval blocks
8937a4ed 2802 my $build_file = $target{build_file} // "build file";
eb807d53 2803 my @message = ( <<"_____", @_ );
8937a4ed
RL
2804
2805Failure! $build_file wasn't produced.
2806Please read INSTALL and associated NOTES files. You may also have to look over
2807your available compiler tool chain or change your configuration.
2808
2809_____
eb807d53
RL
2810
2811 # Dying is terminal, so it's ok to reset the signal handler here.
2812 $SIG{__DIE__} = $orig_death_handler;
2813 die @message;
8937a4ed
RL
2814}
2815
bd5192b1
RL
2816# Configuration file reading #########################################
2817
1f2e1cd5
RL
2818# Note: All of the helper functions are for lazy evaluation. They all
2819# return a CODE ref, which will return the intended value when evaluated.
2820# Thus, whenever there's mention of a returned value, it's about that
2821# intended value.
2822
bd5192b1 2823# Helper function to implement conditional inheritance depending on the
00b0d663 2824# value of $disabled{asm}. Used in inherit_from values as follows:
bd5192b1
RL
2825#
2826# inherit_from => [ "template", asm("asm_tmpl") ]
2827#
2828sub asm {
2829 my @x = @_;
2830 sub {
00b0d663 2831 $disabled{asm} ? () : @x;
bd5192b1
RL
2832 }
2833}
2834
1f2e1cd5
RL
2835# Helper function to implement conditional value variants, with a default
2836# plus additional values based on the value of $config{build_type}.
2837# Arguments are given in hash table form:
2838#
2839# picker(default => "Basic string: ",
2840# debug => "debug",
2841# release => "release")
2842#
2843# When configuring with --debug, the resulting string will be
2844# "Basic string: debug", and when not, it will be "Basic string: release"
2845#
2846# This can be used to create variants of sets of flags according to the
2847# build type:
2848#
2849# cflags => picker(default => "-Wall",
2850# debug => "-g -O0",
2851# release => "-O3")
2852#
2853sub picker {
2854 my %opts = @_;
2855 return sub { add($opts{default} || (),
2856 $opts{$config{build_type}} || ())->(); }
2857}
2858
2859# Helper function to combine several values of different types into one.
2860# This is useful if you want to combine a string with the result of a
2861# lazy function, such as:
2862#
2863# cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2864#
2865sub combine {
2866 my @stuff = @_;
2867 return sub { add(@stuff)->(); }
2868}
2869
2870# Helper function to implement conditional values depending on the value
2871# of $disabled{threads}. Can be used as follows:
2872#
2873# cflags => combine("-Wall", threads("-pthread"))
2874#
2875sub threads {
2876 my @flags = @_;
2877 return sub { add($disabled{threads} ? () : @flags)->(); }
2878}
2879
60aa6c1a
AP
2880sub shared {
2881 my @flags = @_;
2882 return sub { add($disabled{shared} ? () : @flags)->(); }
2883}
1f2e1cd5 2884
9c62a279 2885our $add_called = 0;
88087414
RL
2886# Helper function to implement adding values to already existing configuration
2887# values. It handles elements that are ARRAYs, CODEs and scalars
2888sub _add {
2889 my $separator = shift;
2890
bcb1977b
RL
2891 # If there's any ARRAY in the collection of values OR the separator
2892 # is undef, we will return an ARRAY of combined values, otherwise a
2893 # string of joined values with $separator as the separator.
2894 my $found_array = !defined($separator);
88087414
RL
2895
2896 my @values =
2897 map {
b0b92a5b
RL
2898 my $res = $_;
2899 while (ref($res) eq "CODE") {
2900 $res = $res->();
2901 }
2902 if (defined($res)) {
2903 if (ref($res) eq "ARRAY") {
2904 $found_array = 1;
2905 @$res;
2906 } else {
2907 $res;
2908 }
88087414 2909 } else {
b0b92a5b 2910 ();
88087414
RL
2911 }
2912 } (@_);
2913
9c62a279
RL
2914 $add_called = 1;
2915
88087414
RL
2916 if ($found_array) {
2917 [ @values ];
2918 } else {
b0b92a5b 2919 join($separator, grep { defined($_) && $_ ne "" } @values);
88087414
RL
2920 }
2921}
2922sub add_before {
bdcd83e1
RL
2923 my $separator = " ";
2924 if (ref($_[$#_]) eq "HASH") {
2925 my $opts = pop;
2926 $separator = $opts->{separator};
2927 }
88087414
RL
2928 my @x = @_;
2929 sub { _add($separator, @x, @_) };
2930}
2931sub add {
bdcd83e1
RL
2932 my $separator = " ";
2933 if (ref($_[$#_]) eq "HASH") {
2934 my $opts = pop;
2935 $separator = $opts->{separator};
2936 }
88087414
RL
2937 my @x = @_;
2938 sub { _add($separator, @_, @x) };
2939}
2940
3b6c4b07
RL
2941sub read_eval_file {
2942 my $fname = shift;
2943 my $content;
2944 my @result;
2945
2946 open F, "< $fname" or die "Can't open '$fname': $!\n";
2947 {
2948 undef local $/;
2949 $content = <F>;
2950 }
2951 close F;
2952 {
2953 local $@;
2954
2955 @result = ( eval $content );
2956 warn $@ if $@;
2957 }
2958 return wantarray ? @result : $result[0];
2959}
2960
bd5192b1
RL
2961# configuration reader, evaluates the input file as a perl script and expects
2962# it to fill %targets with target configurations. Those are then added to
2963# %table.
2964sub read_config {
2965 my $fname = shift;
3b6c4b07
RL
2966 my %targets;
2967
bd5192b1 2968 {
ee9b0bbb 2969 # Protect certain tables from tampering
3b6c4b07 2970 local %table = ();
bd5192b1 2971
3b6c4b07 2972 %targets = read_eval_file($fname);
bd5192b1 2973 }
225f980d
RL
2974 my %preexisting = ();
2975 foreach (sort keys %targets) {
2976 $preexisting{$_} = 1 if $table{$_};
2977 }
2978 die <<"EOF",
2979The following config targets from $fname
2980shadow pre-existing config targets with the same name:
2981EOF
2982 map { " $_\n" } sort keys %preexisting
2983 if %preexisting;
2984
bd5192b1
RL
2985
2986 # For each target, check that it's configured with a hash table.
2987 foreach (keys %targets) {
2988 if (ref($targets{$_}) ne "HASH") {
2989 if (ref($targets{$_}) eq "") {
2990 warn "Deprecated target configuration for $_, ignoring...\n";
2991 } else {
2992 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2993 }
2994 delete $targets{$_};
ee9b0bbb
RL
2995 } else {
2996 $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2997 }
bd5192b1
RL
2998 }
2999
3000 %table = (%table, %targets);
3001
3002}
3003
8483a003
F
3004# configuration resolver. Will only resolve all the lazy evaluation
3005# codeblocks for the chosen target and all those it inherits from,
bd5192b1
RL
3006# recursively
3007sub resolve_config {
3008 my $target = shift;
3009 my @breadcrumbs = @_;
3010
c4718849 3011# my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
9c62a279 3012
bd5192b1
RL
3013 if (grep { $_ eq $target } @breadcrumbs) {
3014 die "inherit_from loop! target backtrace:\n "
3015 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
3016 }
3017
3018 if (!defined($table{$target})) {
3019 warn "Warning! target $target doesn't exist!\n";
3020 return ();
3021 }
3022 # Recurse through all inheritances. They will be resolved on the
3023 # fly, so when this operation is done, they will all just be a
3024 # bunch of attributes with string values.
3025 # What we get here, though, are keys with references to lists of
3026 # the combined values of them all. We will deal with lists after
3027 # this stage is done.
3028 my %combined_inheritance = ();
3029 if ($table{$target}->{inherit_from}) {
3030 my @inherit_from =
3031 map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
3032 foreach (@inherit_from) {
3033 my %inherited_config = resolve_config($_, $target, @breadcrumbs);
3034
3035 # 'template' is a marker that's considered private to
3036 # the config that had it.
3037 delete $inherited_config{template};
3038
2110febb 3039 foreach (keys %inherited_config) {
bd5192b1
RL
3040 if (!$combined_inheritance{$_}) {
3041 $combined_inheritance{$_} = [];
3042 }
3043 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2110febb 3044 }
bd5192b1
RL
3045 }
3046 }
3047
3048 # We won't need inherit_from in this target any more, since we've
3049 # resolved all the inheritances that lead to this
3050 delete $table{$target}->{inherit_from};
3051
3052 # Now is the time to deal with those lists. Here's the place to
3053 # decide what shall be done with those lists, all based on the
3054 # values of the target we're currently dealing with.
3055 # - If a value is a coderef, it will be executed with the list of
3056 # inherited values as arguments.
3057 # - If the corresponding key doesn't have a value at all or is the
8483a003 3058 # empty string, the inherited value list will be run through the
bd5192b1
RL
3059 # default combiner (below), and the result becomes this target's
3060 # value.
3061 # - Otherwise, this target's value is assumed to be a string that
3062 # will simply override the inherited list of values.
a26d8be9 3063 my $default_combiner = add();
bd5192b1
RL
3064
3065 my %all_keys =
3066 map { $_ => 1 } (keys %combined_inheritance,
3067 keys %{$table{$target}});
b0b92a5b
RL
3068
3069 sub process_values {
3070 my $object = shift;
3071 my $inherited = shift; # Always a [ list ]
3072 my $target = shift;
3073 my $entry = shift;
3074
9c62a279
RL
3075 $add_called = 0;
3076
b0b92a5b
RL
3077 while(ref($object) eq "CODE") {
3078 $object = $object->(@$inherited);
3079 }
3080 if (!defined($object)) {
3081 return ();
3082 }
3083 elsif (ref($object) eq "ARRAY") {
9c62a279 3084 local $add_called; # To make sure recursive calls don't affect it
b0b92a5b
RL
3085 return [ map { process_values($_, $inherited, $target, $entry) }
3086 @$object ];
3087 } elsif (ref($object) eq "") {
3088 return $object;
3089 } else {
3090 die "cannot handle reference type ",ref($object)
3091 ," found in target ",$target," -> ",$entry,"\n";
3092 }
3093 }
3094
bd5192b1 3095 foreach (sort keys %all_keys) {
9c62a279 3096 my $previous = $combined_inheritance{$_};
bd5192b1
RL
3097
3098 # Current target doesn't have a value for the current key?
3099 # Assign it the default combiner, the rest of this loop body
3100 # will handle it just like any other coderef.
3101 if (!exists $table{$target}->{$_}) {
3102 $table{$target}->{$_} = $default_combiner;
3103 }
3104
b0b92a5b
RL
3105 $table{$target}->{$_} = process_values($table{$target}->{$_},
3106 $combined_inheritance{$_},
3107 $target, $_);
3108 unless(defined($table{$target}->{$_})) {
3109 delete $table{$target}->{$_};
3110 }
c4718849
RL
3111# if ($extra_checks &&
3112# $previous && !($add_called || $previous ~~ $table{$target}->{$_})) {
3113# warn "$_ got replaced in $target\n";
3114# }
bd5192b1
RL
3115 }
3116
3117 # Finally done, return the result.
3118 return %{$table{$target}};
3119}
3120
462ba4f6 3121sub usage
d02b48c6 3122 {
462ba4f6 3123 print STDERR $usage;
10a926c1 3124 print STDERR "\npick os/compiler from:\n";
1641cb60 3125 my $j=0;
6457ad15 3126 my $i;
10a926c1 3127 my $k=0;
6457ad15 3128 foreach $i (sort keys %table)
d02b48c6 3129 {
bd5192b1 3130 next if $table{$i}->{template};
462ba4f6 3131 next if $i =~ /^debug/;
10a926c1
UM
3132 $k += length($i) + 1;
3133 if ($k > 78)
3134 {
3135 print STDERR "\n";
3136 $k=length($i);
3137 }
3138 print STDERR $i . " ";
462ba4f6
UM
3139 }
3140 foreach $i (sort keys %table)
3141 {
bd5192b1 3142 next if $table{$i}->{template};
462ba4f6 3143 next if $i !~ /^debug/;
10a926c1
UM
3144 $k += length($i) + 1;
3145 if ($k > 78)
3146 {
3147 print STDERR "\n";
3148 $k=length($i);
3149 }
3150 print STDERR $i . " ";
d02b48c6 3151 }
10a926c1 3152 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 3153 exit(1);
d02b48c6
RE
3154 }
3155
01d99976 3156sub run_dofile
107b5792 3157{
107b5792 3158 my $out = shift;
9fe2bb77 3159 my @templates = @_;
107b5792 3160
ced2c2c5
RS
3161 unlink $out || warn "Can't remove $out, $!"
3162 if -f $out;
9fe2bb77
RL
3163 foreach (@templates) {
3164 die "Can't open $_, $!" unless -f $_;
3165 }
9e265322 3166 my $perlcmd = (quotify("maybeshell", $config{PERL}))[0];
f879d5ff 3167 my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
9fe2bb77
RL
3168 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
3169 system($cmd);
107b5792
RL
3170 exit 1 if $? != 0;
3171 rename("$out.new", $out) || die "Can't rename $out.new, $!";
3172}
3173
6d75a83c
RL
3174sub compiler_predefined {
3175 state %predefined;
41d6e0f3 3176 my $cc = shift;
6d75a83c
RL
3177
3178 return () if $^O eq 'VMS';
3179
41d6e0f3
AP
3180 die 'compiler_predefined called without a compiler command'
3181 unless $cc;
6d75a83c 3182
41d6e0f3 3183 if (! $predefined{$cc}) {
6d75a83c 3184
41d6e0f3 3185 $predefined{$cc} = {};
6d75a83c
RL
3186
3187 # collect compiler pre-defines from gcc or gcc-alike...
3188 open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
3189 while (my $l = <PIPE>) {
3190 $l =~ m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
41d6e0f3 3191 $predefined{$cc}->{$1} = $2 // '';
6d75a83c
RL
3192 }
3193 close(PIPE);
3194 }
3195
41d6e0f3 3196 return %{$predefined{$cc}};
6d75a83c
RL
3197}
3198
656bbdc6
AP
3199sub which
3200{
3201 my ($name)=@_;
3202
3203 if (eval { require IPC::Cmd; 1; }) {
3204 IPC::Cmd->import();
3205 return scalar IPC::Cmd::can_run($name);
3206 } else {
3207 # if there is $directories component in splitpath,
3208 # then it's not something to test with $PATH...
3209 return $name if (File::Spec->splitpath($name))[1];
3210
3211 foreach (File::Spec->path()) {
3212 my $fullpath = catfile($_, "$name$target{exe_extension}");
3213 if (-f $fullpath and -x $fullpath) {
3214 return $fullpath;
3215 }
3216 }
3217 }
3218}
3219
7ecdf18d
RL
3220sub env
3221{
3222 my $name = shift;
ac6ae8a9 3223 my %opts = @_;
7ecdf18d 3224
ac6ae8a9
RL
3225 unless ($opts{cacheonly}) {
3226 # Note that if $ENV{$name} doesn't exist or is undefined,
3227 # $config{perlenv}->{$name} will be created with the value
3228 # undef. This is intentional.
89bea083 3229
ac6ae8a9
RL
3230 $config{perlenv}->{$name} = $ENV{$name}
3231 if ! exists $config{perlenv}->{$name};
3232 }
7ecdf18d
RL
3233 return $config{perlenv}->{$name};
3234}
3235
00ae96ca
RL
3236# Configuration printer ##############################################
3237
3238sub print_table_entry
3239{
f770d75b
AP
3240 local $now_printing = shift;
3241 my %target = resolve_config($now_printing);
00ae96ca
RL
3242 my $type = shift;
3243
3244 # Don't print the templates
3245 return if $target{template};
3246
3247 my @sequence = (
f0bd4686 3248 "sys_id",
8c3bc594
RL
3249 "cpp",
3250 "cppflags",
3251 "defines",
3252 "includes",
00ae96ca
RL
3253 "cc",
3254 "cflags",
f0bd4686
RL
3255 "unistd",
3256 "ld",
00ae96ca 3257 "lflags",
0c0d78b8 3258 "loutflag",
1740c162 3259 "ex_libs",
00ae96ca 3260 "bn_ops",
0c0d78b8
RL
3261 "apps_aux_src",
3262 "cpuid_asm_src",
3263 "uplink_aux_src",
3264 "bn_asm_src",
3265 "ec_asm_src",
3266 "des_asm_src",
3267 "aes_asm_src",
3268 "bf_asm_src",
3269 "md5_asm_src",
3270 "cast_asm_src",
3271 "sha1_asm_src",
3272 "rc4_asm_src",
3273 "rmd160_asm_src",
3274 "rc5_asm_src",
3275 "wp_asm_src",
3276 "cmll_asm_src",
3277 "modes_asm_src",
3278 "padlock_asm_src",
3279 "chacha_asm_src",
3280 "poly1035_asm_src",
9c62a279 3281 "thread_scheme",
00ae96ca
RL
3282 "perlasm_scheme",
3283 "dso_scheme",
3284 "shared_target",
3285 "shared_cflag",
0c0d78b8 3286 "shared_defines",
00ae96ca 3287 "shared_ldflag",
64c443e3 3288 "shared_rcflag",
00ae96ca 3289 "shared_extension",
e987f9f2 3290 "dso_extension",
f0bd4686
RL
3291 "obj_extension",
3292 "exe_extension",
00ae96ca 3293 "ranlib",
f0bd4686 3294 "ar",
00ae96ca 3295 "arflags",
0c0d78b8
RL
3296 "aroutflag",
3297 "rc",
3298 "rcflags",
3299 "rcoutflag",
3300 "mt",
3301 "mtflags",
3302 "mtinflag",
3303 "mtoutflag",
00ae96ca 3304 "multilib",
f0bd4686 3305 "build_scheme",
00ae96ca
RL
3306 );
3307
3308 if ($type eq "TABLE") {
3309 print "\n";
f770d75b 3310 print "*** $now_printing\n";
cb212f23
RL
3311 foreach (@sequence) {
3312 if (ref($target{$_}) eq "ARRAY") {
3313 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
3314 } else {
3315 printf "\$%-12s = %s\n", $_, $target{$_};
3316 }
3317 }
00ae96ca
RL
3318 } elsif ($type eq "HASH") {
3319 my $largest =
3320 length((sort { length($a) <=> length($b) } @sequence)[-1]);
f770d75b 3321 print " '$now_printing' => {\n";
00ae96ca
RL
3322 foreach (@sequence) {
3323 if ($target{$_}) {
cb212f23
RL
3324 if (ref($target{$_}) eq "ARRAY") {
3325 print " '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
3326 } else {
3327 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
3328 }
00ae96ca
RL
3329 }
3330 }
3331 print " },\n";
3332 }
3333}
3334
3335# Utility routines ###################################################
3336
2e963849
RL
3337# On VMS, if the given file is a logical name, File::Spec::Functions
3338# will consider it an absolute path. There are cases when we want a
3339# purely syntactic check without checking the environment.
3340sub isabsolute {
3341 my $file = shift;
3342
3343 # On non-platforms, we just use file_name_is_absolute().
3344 return file_name_is_absolute($file) unless $^O eq "VMS";
3345
69687aa8 3346 # If the file spec includes a device or a directory spec,
2e963849
RL
3347 # file_name_is_absolute() is perfectly safe.
3348 return file_name_is_absolute($file) if $file =~ m|[:\[]|;
3349
3350 # Here, we know the given file spec isn't absolute
3351 return 0;
3352}
3353
ec182ef0
RL
3354# Makes a directory absolute and cleans out /../ in paths like foo/../bar
3355# On some platforms, this uses rel2abs(), while on others, realpath() is used.
3356# realpath() requires that at least all path components except the last is an
3357# existing directory. On VMS, the last component of the directory spec must
3358# exist.
3359sub absolutedir {
3360 my $dir = shift;
3361
3362 # realpath() is quite buggy on VMS. It uses LIB$FID_TO_NAME, which
3363 # will return the volume name for the device, no matter what. Also,
3364 # it will return an incorrect directory spec if the argument is a
3365 # directory that doesn't exist.
3366 if ($^O eq "VMS") {
3367 return rel2abs($dir);
3368 }
3369
3370 # We use realpath() on Unix, since no other will properly clean out
3371 # a directory spec.
3372 use Cwd qw/realpath/;
3373
3374 return realpath($dir);
3375}
3376
fe05264e
RL
3377sub quotify {
3378 my %processors = (
3379 perl => sub { my $x = shift;
3380 $x =~ s/([\\\$\@"])/\\$1/g;
3381 return '"'.$x.'"'; },
f879d5ff
RL
3382 maybeshell => sub { my $x = shift;
3383 (my $y = $x) =~ s/([\\\"])/\\$1/g;
3384 if ($x ne $y || $x =~ m|\s|) {
3385 return '"'.$y.'"';
3386 } else {
3387 return $x;
3388 }
3389 },
fe05264e
RL
3390 );
3391 my $for = shift;
3392 my $processor =
3393 defined($processors{$for}) ? $processors{$for} : sub { shift; };
3394
2110febb 3395 return map { $processor->($_); } @_;
fe05264e 3396}
107b5792 3397
9fe2bb77
RL
3398# collect_from_file($filename, $line_concat_cond_re, $line_concat)
3399# $filename is a file name to read from
3400# $line_concat_cond_re is a regexp detecting a line continuation ending
3401# $line_concat is a CODEref that takes care of concatenating two lines
3402sub collect_from_file {
3403 my $filename = shift;
3404 my $line_concat_cond_re = shift;
3405 my $line_concat = shift;
3406
3407 open my $fh, $filename || die "unable to read $filename: $!\n";
3408 return sub {
3409 my $saved_line = "";
3410 $_ = "";
3411 while (<$fh>) {
04f171c0 3412 s|\R$||;
9fe2bb77
RL
3413 if (defined $line_concat) {
3414 $_ = $line_concat->($saved_line, $_);
3415 $saved_line = "";
3416 }
3417 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3418 $saved_line = $_;
3419 next;
3420 }
3421 return $_;
3422 }
3423 die "$filename ending with continuation line\n" if $_;
3424 close $fh;
3425 return undef;
3426 }
3427}
3428
3429# collect_from_array($array, $line_concat_cond_re, $line_concat)
3430# $array is an ARRAYref of lines
3431# $line_concat_cond_re is a regexp detecting a line continuation ending
3432# $line_concat is a CODEref that takes care of concatenating two lines
3433sub collect_from_array {
3434 my $array = shift;
3435 my $line_concat_cond_re = shift;
3436 my $line_concat = shift;
3437 my @array = (@$array);
3438
3439 return sub {
3440 my $saved_line = "";
3441 $_ = "";
3442 while (defined($_ = shift @array)) {
04f171c0 3443 s|\R$||;
9fe2bb77
RL
3444 if (defined $line_concat) {
3445 $_ = $line_concat->($saved_line, $_);
3446 $saved_line = "";
3447 }
3448 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3449 $saved_line = $_;
3450 next;
3451 }
3452 return $_;
3453 }
3454 die "input text ending with continuation line\n" if $_;
3455 return undef;
3456 }
3457}
3458
3459# collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
3460# $lineiterator is a CODEref that delivers one line at a time.
107b5792
RL
3461# All following arguments are regex/CODEref pairs, where the regexp detects a
3462# line and the CODEref does something with the result of the regexp.
3463sub collect_information {
9fe2bb77 3464 my $lineiterator = shift;
107b5792
RL
3465 my %collectors = @_;
3466
9fe2bb77 3467 while(defined($_ = $lineiterator->())) {
04f171c0 3468 s|\R$||;
9fe2bb77 3469 my $found = 0;
2b6b606c
RL
3470 if ($collectors{"BEFORE"}) {
3471 $collectors{"BEFORE"}->($_);
3472 }
9fe2bb77 3473 foreach my $re (keys %collectors) {
2b6b606c 3474 if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
9fe2bb77
RL
3475 $collectors{$re}->($lineiterator);
3476 $found = 1;
3477 };
3478 }
3479 if ($collectors{"OTHERWISE"}) {
3480 $collectors{"OTHERWISE"}->($lineiterator, $_)
3481 unless $found || !defined $collectors{"OTHERWISE"};
3482 }
2b6b606c
RL
3483 if ($collectors{"AFTER"}) {
3484 $collectors{"AFTER"}->($_);
3485 }
107b5792 3486 }
107b5792 3487}
ce959812
RL
3488
3489# tokenize($line)
5d3af259 3490# tokenize($line,$separator)
ce959812 3491# $line is a line of text to split up into tokens
5d3af259
RL
3492# $separator [optional] is a regular expression that separates the tokens,
3493# the default being spaces. Do not use quotes of any kind as separators,
3494# that will give undefined results.
3495# Returns a list of tokens.
ce959812 3496#
5d3af259
RL
3497# Tokens are divided by separator (spaces by default). If the tokens include
3498# the separators, they have to be quoted with single or double quotes.
3499# Double quotes inside a double quoted token must be escaped. Escaping is done
ce959812
RL
3500# with backslash.
3501# Basically, the same quoting rules apply for " and ' as in any
3502# Unix shell.
3503sub tokenize {
3504 my $line = my $debug_line = shift;
5d3af259 3505 my $separator = shift // qr|\s+|;
ce959812
RL
3506 my @result = ();
3507
5d3af259
RL
3508 if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3509 print STDERR "DEBUG[tokenize]: \$separator = $separator\n";
3510 }
3511
3512 while ($line =~ s|^${separator}||, $line ne "") {
ce959812 3513 my $token = "";
5d3af259
RL
3514 again:
3515 $line =~ m/^(.*?)(${separator}|"|'|$)/;
3516 $token .= $1;
3517 $line = $2.$';
3518
3519 if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
3520 $token .= $1;
3521 $line = $';
3522 goto again;
3523 } elsif ($line =~ m/^'([^']*)'/) {
3524 $token .= $1;
3525 $line = $';
3526 goto again;
ce959812
RL
3527 }
3528 push @result, $token;
3529 }
3530
3531 if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
5d3af259
RL
3532 print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
3533 print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
ce959812
RL
3534 }
3535 return @result;
3536}