]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
Ignore cipher suites when setting cipher list
[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 {
755 $strict_warnings = 1;
756 }
757 elsif (/^--debug$/)
758 {
8864f0de 759 $config{build_type} = "debug";
fe05264e
RL
760 }
761 elsif (/^--release$/)
762 {
8864f0de 763 $config{build_type} = "release";
fe05264e
RL
764 }
765 elsif (/^386$/)
7d130f68 766 { $config{processor}=386; }
fe05264e
RL
767 elsif (/^fips$/)
768 {
b53338cb 769 die "FIPS mode not supported\n";
fe05264e
RL
770 }
771 elsif (/^rsaref$/)
772 {
773 # No RSAref support any more since it's not needed.
774 # The check for the option is there so scripts aren't
775 # broken
776 }
777 elsif (/^nofipscanistercheck$/)
778 {
b53338cb 779 die "FIPS mode not supported\n";
fe05264e
RL
780 }
781 elsif (/^[-+]/)
782 {
45c6e23c 783 if (/^--prefix=(.*)$/)
fe05264e 784 {
291e94df 785 $config{prefix}=$1;
5482dac9
RL
786 die "Directory given with --prefix MUST be absolute\n"
787 unless file_name_is_absolute($config{prefix});
c9a112f5 788 }
fe05264e 789 elsif (/^--api=(.*)$/)
0c28f277 790 {
107b5792 791 $config{api}=$1;
0c28f277 792 }
fe05264e 793 elsif (/^--libdir=(.*)$/)
9e43c6b5 794 {
107b5792 795 $config{libdir}=$1;
9e43c6b5 796 }
fe05264e 797 elsif (/^--openssldir=(.*)$/)
9e43c6b5 798 {
291e94df 799 $config{openssldir}=$1;
9e43c6b5 800 }
fe05264e 801 elsif (/^--with-zlib-lib=(.*)$/)
9fdb2cc5 802 {
20a5819f 803 $withargs{zlib_lib}=$1;
7d8bb912 804 }
fe05264e 805 elsif (/^--with-zlib-include=(.*)$/)
3eb0ed6d 806 {
da430a55 807 $withargs{zlib_include}=$1;
462ba4f6 808 }
f59d0131
KR
809 elsif (/^--with-fuzzer-lib=(.*)$/)
810 {
811 $withargs{fuzzer_lib}=$1;
812 }
813 elsif (/^--with-fuzzer-include=(.*)$/)
814 {
815 $withargs{fuzzer_include}=$1;
816 }
8389ec4b
RS
817 elsif (/^--with-rand-seed=(.*)$/)
818 {
819 foreach my $x (split(m|,|, $1))
820 {
821 die "Unknown --with-rand-seed choice $x\n"
822 if ! grep { $x eq $_ } @known_seed_sources;
823 push @seed_sources, $x;
824 }
825 }
fe05264e 826 elsif (/^--cross-compile-prefix=(.*)$/)
e5f3045f 827 {
f729ba55 828 $user{CROSS_COMPILE}=$1;
e5f3045f 829 }
fe05264e 830 elsif (/^--config=(.*)$/)
d02b48c6 831 {
fe05264e 832 read_config $1;
c59cb511 833 }
07e4dc34 834 elsif (/^-l(.*)$/)
c9a112f5 835 {
5b18235a 836 push @{$useradd{LDLIBS}}, $_;
d02b48c6 837 }
b7438b43
AP
838 elsif (/^-framework$/)
839 {
5b18235a 840 push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
b7438b43 841 }
07e4dc34
AP
842 elsif (/^-L(.*)$/ or /^-Wl,/)
843 {
844 push @{$useradd{LDFLAGS}}, $_;
845 }
fad599f7
RL
846 elsif (/^-rpath$/ or /^-R$/)
847 # -rpath is the OSF1 rpath flag
848 # -R is the old Solaris rpath flag
849 {
850 my $rpath = shift(@argvcopy) || "";
851 $rpath .= " " if $rpath ne "";
5b18235a 852 push @{$useradd{LDFLAGS}}, $_, $rpath;
fad599f7 853 }
9d46752d
AP
854 elsif (/^-static$/)
855 {
5b18235a 856 push @{$useradd{LDFLAGS}}, $_;
047d97af 857 $disabled{"dso"} = "forced";
9d46752d
AP
858 $disabled{"pic"} = "forced";
859 $disabled{"shared"} = "forced";
860 $disabled{"threads"} = "forced";
861 }
bcb1977b
RL
862 elsif (/^-D(.*)$/)
863 {
5b18235a 864 push @{$useradd{CPPDEFINES}}, $1;
bcb1977b 865 }
8c3bc594
RL
866 elsif (/^-I(.*)$/)
867 {
5b18235a 868 push @{$useradd{CPPINCLUDES}}, $1;
8c3bc594
RL
869 }
870 elsif (/^-Wp,$/)
871 {
5b18235a 872 push @{$useradd{CPPFLAGS}}, $1;
8c3bc594 873 }
fe05264e
RL
874 else # common if (/^[-+]/), just pass down...
875 {
876 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
5b18235a
RL
877 push @{$useradd{CFLAGS}}, $_;
878 push @{$useradd{CXXFLAGS}}, $_;
fe05264e
RL
879 }
880 }
fe05264e
RL
881 else
882 {
883 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
884 $target=$_;
885 }
886 unless ($_ eq $target || /^no-/ || /^disable-/)
887 {
46f4e1be 888 # "no-..." follows later after implied deactivations
8483a003 889 # have been derived. (Don't take this too seriously,
fe05264e
RL
890 # we really only write OPTIONS to the Makefile out of
891 # nostalgia.)
892
3fa04f0d
RL
893 if ($config{options} eq "")
894 { $config{options} = $_; }
fe05264e 895 else
3fa04f0d 896 { $config{options} .= " ".$_; }
fbabb752 897 }
ddbe700e 898 }
489eb740 899
ddbe700e
RL
900if (defined($config{api}) && !exists $apitable->{$config{api}}) {
901 die "***** Unsupported api compatibility level: $config{api}\n",
902}
98186eb4 903
ddbe700e
RL
904if (keys %deprecated_options)
905 {
906 warn "***** Deprecated options: ",
907 join(", ", keys %deprecated_options), "\n";
908 }
909if (keys %unsupported_options)
910 {
911 die "***** Unsupported options: ",
912 join(", ", keys %unsupported_options), "\n";
fbabb752 913 }
b6e4dac2 914
ac6ae8a9
RL
915# If any %useradd entry has been set, we must check that the "make
916# variables" haven't been set. We start by checking of any %useradd entry
fb174faa 917# is set.
b9201360 918if (grep { scalar @$_ > 0 } values %useradd) {
fb174faa 919 # Hash of env / make variables names. The possible values are:
ac6ae8a9 920 # 1 - "make vars"
fb174faa
RL
921 # 2 - %useradd entry set
922 # 3 - both set
ac6ae8a9 923 my %detected_vars =
fb174faa 924 map { my $v = 0;
ac6ae8a9 925 $v += 1 if $cmdvars{$_};
fb174faa
RL
926 $v += 2 if @{$useradd{$_}};
927 $_ => $v }
928 keys %useradd;
929
ac6ae8a9
RL
930 # If any of the corresponding "make variables" is set, we error
931 if (grep { $_ & 1 } values %detected_vars) {
932 my $names = join(', ', grep { $detected_vars{$_} > 0 }
933 sort keys %detected_vars);
b9201360 934 die <<"_____";
ac6ae8a9 935***** Mixing make variables and additional compiler/linker flags as
b9201360 936***** configure command line option is not permitted.
ac6ae8a9 937***** Affected make variables: $names
b9201360
RL
938_____
939 }
940}
941
ac6ae8a9
RL
942# Check through all supported command line variables to see if any of them
943# were set, and canonicalise the values we got. If no compiler or linker
944# flag or anything else that affects %useradd was set, we also check the
945# environment for values.
946my $anyuseradd =
947 grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
5b18235a 948foreach (keys %user) {
ac6ae8a9
RL
949 my $value = $cmdvars{$_};
950 $value //= env($_) unless $anyuseradd;
951 $value //=
952 defined $user_synonyms{$_} ? $cmdvars{$user_synonyms{$_}} : undef;
953 $value //= defined $user_synonyms{$_} ? env($user_synonyms{$_}) : undef
954 unless $anyuseradd;
5b18235a
RL
955
956 if (defined $value) {
957 if (ref $user{$_} eq 'ARRAY') {
958 $user{$_} = [ split /$list_separator_re/, $value ];
959 } elsif (!defined $user{$_}) {
960 $user{$_} = $value;
961 }
962 }
963}
964
07e4dc34 965if (grep { /-rpath\b/ } ($user{LDFLAGS} ? @{$user{LDFLAGS}} : ())
342a1a23
RL
966 && !$disabled{shared}
967 && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
968 die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
969 "***** any of asan, msan or ubsan\n";
970}
971
c569e206
RL
972my @tocheckfor = (keys %disabled);
973while (@tocheckfor) {
974 my %new_tocheckfor = ();
975 my @cascade_copy = (@disable_cascades);
976 while (@cascade_copy) {
977 my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
978 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
2110febb 979 foreach(grep { !defined($disabled{$_}) } @$descendents) {
01d99976 980 $new_tocheckfor{$_} = 1; $disabled{$_} = "forced";
2110febb 981 }
ef236ec3 982 }
c569e206
RL
983 }
984 @tocheckfor = (keys %new_tocheckfor);
985}
edc032b5 986
d63c12c6 987our $die = sub { die @_; };
436a376b 988if ($target eq "TABLE") {
d63c12c6 989 local $die = sub { warn @_; };
00ae96ca
RL
990 foreach (sort keys %table) {
991 print_table_entry($_, "TABLE");
992 }
993 exit 0;
436a376b
BM
994}
995
10a926c1 996if ($target eq "LIST") {
00ae96ca
RL
997 foreach (sort keys %table) {
998 print $_,"\n" unless $table{$_}->{template};
999 }
1000 exit 0;
10a926c1
UM
1001}
1002
aaf878cc 1003if ($target eq "HASH") {
d63c12c6 1004 local $die = sub { warn @_; };
00ae96ca
RL
1005 print "%table = (\n";
1006 foreach (sort keys %table) {
1007 print_table_entry($_, "HASH");
1008 }
1009 exit 0;
aaf878cc
RL
1010}
1011
16942e08
DMSP
1012print "Configuring OpenSSL version $config{full_version} ";
1013print "for target $target\n";
64119271 1014
51cf8e0b
RL
1015if (scalar(@seed_sources) == 0) {
1016 print "Using os-specific seed configuration\n";
1017 push @seed_sources, 'os';
1018}
2805ee1e
RL
1019if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) {
1020 die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1;
1021 warn <<_____ if scalar(@seed_sources) == 1;
2805ee1e 1022
caa85952
DMSP
1023============================== WARNING ===============================
1024You have selected the --with-rand-seed=none option, which effectively
1025disables automatic reseeding of the OpenSSL random generator.
1026All operations depending on the random generator such as creating keys
1027will not work unless the random generator is seeded manually by the
1028application.
1029
1030Please read the 'Note on random number generation' section in the
1031INSTALL instructions and the RAND_DRBG(7) manual page for more details.
1032============================== WARNING ===============================
1033
2805ee1e
RL
1034_____
1035}
e0bf7c01 1036push @{$config{openssl_feature_defines}},
51cf8e0b
RL
1037 map { (my $x = $_) =~ tr|[\-a-z]|[_A-Z]|; "OPENSSL_RAND_SEED_$x" }
1038 @seed_sources;
1039
00ae96ca 1040# Backward compatibility?
49e04548 1041if ($target =~ m/^CygWin32(-.*)$/) {
00ae96ca 1042 $target = "Cygwin".$1;
49e04548
RL
1043}
1044
906eb3d0
RL
1045# Support for legacy targets having a name starting with 'debug-'
1046my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
1047if ($d) {
1048 $config{build_type} = "debug";
1049
1050 # If we do not find debug-foo in the table, the target is set to foo.
1051 if (!$table{$target}) {
1052 $target = $t;
1053 }
1054}
4e360445
RL
1055
1056&usage if !$table{$target} || $table{$target}->{template};
1057
906eb3d0
RL
1058$config{target} = $target;
1059my %target = resolve_config($target);
1060
abe256e7
RL
1061foreach (keys %target_attr_translate) {
1062 $target{$target_attr_translate{$_}} = $target{$_}
1063 if $target{$_};
1064 delete $target{$_};
1065}
1066
793077d0
RL
1067%target = ( %{$table{DEFAULTS}}, %target );
1068
1069# Make the flags to build DSOs the same as for shared libraries unless they
1070# are already defined
48dcca26
RL
1071$target{module_cflags} = $target{shared_cflag} unless defined $target{module_cflags};
1072$target{module_cxxflags} = $target{shared_cxxflag} unless defined $target{module_cxxflags};
1073$target{module_ldflags} = $target{shared_ldflag} unless defined $target{module_ldflags};
793077d0
RL
1074{
1075 my $shared_info_pl =
1076 catfile(dirname($0), "Configurations", "shared-info.pl");
1077 my %shared_info = read_eval_file($shared_info_pl);
1078 push @{$target{_conf_fname_int}}, $shared_info_pl;
1079 my $si = $target{shared_target};
1080 while (ref $si ne "HASH") {
1081 last if ! defined $si;
1082 if (ref $si eq "CODE") {
1083 $si = $si->();
1084 } else {
1085 $si = $shared_info{$si};
1086 }
1087 }
1088
1089 # Some of the 'shared_target' values don't have any entried in
1090 # %shared_info. That's perfectly fine, AS LONG AS the build file
1091 # template knows how to handle this. That is currently the case for
1092 # Windows and VMS.
1093 if (defined $si) {
1094 # Just as above, copy certain shared_* attributes to the corresponding
48dcca26
RL
1095 # module_ attribute unless the latter is already defined
1096 $si->{module_cflags} = $si->{shared_cflag} unless defined $si->{module_cflags};
1097 $si->{module_cxxflags} = $si->{shared_cxxflag} unless defined $si->{module_cxxflags};
1098 $si->{module_ldflags} = $si->{shared_ldflag} unless defined $si->{module_ldflags};
793077d0
RL
1099 foreach (sort keys %$si) {
1100 $target{$_} = defined $target{$_}
1101 ? add($si->{$_})->($target{$_})
1102 : $si->{$_};
1103 }
1104 }
1105}
1106
906eb3d0
RL
1107my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
1108$config{conf_files} = [ sort keys %conf_files ];
906eb3d0
RL
1109
1110foreach my $feature (@{$target{disable}}) {
1111 if (exists $deprecated_disablables{$feature}) {
1112 warn "***** config $target disables deprecated feature $feature\n";
1113 } elsif (!grep { $feature eq $_ } @disablables) {
1114 die "***** config $target disables unknown feature $feature\n";
1115 }
1116 $disabled{$feature} = 'config';
1117}
1118foreach my $feature (@{$target{enable}}) {
7a8a35ff 1119 if ("default" eq ($disabled{$feature} // "")) {
906eb3d0
RL
1120 if (exists $deprecated_disablables{$feature}) {
1121 warn "***** config $target enables deprecated feature $feature\n";
1122 } elsif (!grep { $feature eq $_ } @disablables) {
1123 die "***** config $target enables unknown feature $feature\n";
1124 }
7a8a35ff 1125 delete $disabled{$feature};
906eb3d0
RL
1126 }
1127}
1128
abe256e7
RL
1129$target{CXXFLAGS}//=$target{CFLAGS} if $target{CXX};
1130$target{cxxflags}//=$target{cflags} if $target{CXX};
9dd4ed28 1131$target{exe_extension}=".exe" if ($config{target} eq "DJGPP");
107b5792 1132$target{exe_extension}=".pm" if ($config{target} =~ /vos/);
e987f9f2 1133
9e265322
RL
1134# Fill %config with values from %user, and in case those are undefined or
1135# empty, use values from %target (acting as a default).
5b18235a 1136foreach (keys %user) {
5b18235a
RL
1137 my $ref_type = ref $user{$_};
1138
1139 # Temporary function. Takes an intended ref type (empty string or "ARRAY")
1140 # and a value that's to be coerced into that type.
1141 my $mkvalue = sub {
1142 my $type = shift;
1143 my $value = shift;
1144 my $undef_p = shift;
1145
1146 die "Too many arguments for \$mkvalue" if @_;
1147
1148 while (ref $value eq 'CODE') {
1149 $value = $value->();
1150 }
1151
1152 if ($type eq 'ARRAY') {
1153 return undef unless defined $value;
1154 return undef if ref $value ne 'ARRAY' && !$value;
1155 return undef if ref $value eq 'ARRAY' && !@$value;
1156 return [ $value ] unless ref $value eq 'ARRAY';
1157 }
1158 return undef unless $value;
1159 return $value;
1160 };
1161
abe256e7 1162 $config{$_} =
5b18235a 1163 $mkvalue->($ref_type, $user{$_})
abe256e7
RL
1164 || $mkvalue->($ref_type, $target{$_});
1165 delete $config{$_} unless defined $config{$_};
5b18235a 1166}
aaf878cc 1167
8b5156d1 1168# Allow overriding the build file name
5b18235a 1169$config{build_file} = env('BUILDFILE') || $target{build_file} || "Makefile";
bd5192b1 1170
75d47db4
RL
1171######################################################################
1172# Build up information for skipping certain directories depending on disabled
1173# features, as well as setting up macros for disabled features.
1174
1175# This is a tentative database of directories to skip. Some entries may not
1176# correspond to anything real, but that's ok, they will simply be ignored.
1177# The actual processing of these entries is done in the build.info lookup
1178# loop further down.
1179#
1180# The key is a Unix formated path in the source tree, the value is an index
1181# into %disabled_info, so any existing path gets added to a corresponding
1182# 'skipped' entry in there with the list of skipped directories.
1183my %skipdir = ();
ca372414
RL
1184my %disabled_info = (); # For configdata.pm
1185foreach my $what (sort keys %disabled) {
1186 $config{options} .= " no-$what";
1187
1188 if (!grep { $what eq $_ } ( 'dso', 'threads', 'shared', 'pic',
1189 'dynamic-engine', 'makedepend',
1190 'zlib-dynamic', 'zlib', 'sse2' )) {
1191 (my $WHAT = uc $what) =~ s|-|_|g;
75d47db4 1192 my $skipdir = $what;
ca372414
RL
1193
1194 # fix-up crypto/directory name(s)
75d47db4
RL
1195 $skipdir = "ripemd" if $what eq "rmd160";
1196 $skipdir = "whrlpool" if $what eq "whirlpool";
ca372414
RL
1197
1198 my $macro = $disabled_info{$what}->{macro} = "OPENSSL_NO_$WHAT";
75d47db4 1199 push @{$config{openssl_feature_defines}}, $macro;
ca372414 1200
75d47db4
RL
1201 $skipdir{engines} = $what if $what eq 'engine';
1202 $skipdir{"crypto/$skipdir"} = $what
1203 unless $what eq 'async' || $what eq 'err';
ca372414
RL
1204 }
1205}
1206
291e94df
RL
1207# Make sure build_scheme is consistent.
1208$target{build_scheme} = [ $target{build_scheme} ]
1209 if ref($target{build_scheme}) ne "ARRAY";
1210
ddf1847d
RL
1211my ($builder, $builder_platform, @builder_opts) =
1212 @{$target{build_scheme}};
1213
d192a3aa
RL
1214foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm",
1215 $builder_platform."-checker.pm")) {
1216 my $checker_path = catfile($srcdir, "Configurations", $checker);
1217 if (-f $checker_path) {
1218 my $fn = $ENV{CONFIGURE_CHECKER_WARN}
1219 ? sub { warn $@; } : sub { die $@; };
1220 if (! do $checker_path) {
1221 if ($@) {
1222 $fn->($@);
1223 } elsif ($!) {
1224 $fn->($!);
1225 } else {
1226 $fn->("The detected tools didn't match the platform\n");
1227 }
1228 }
1229 last;
1230 }
1231}
1232
488e2b0f
RL
1233push @{$config{defines}}, "NDEBUG" if $config{build_type} eq "release";
1234
abe256e7 1235if ($target =~ /^mingw/ && `$config{CC} --target-help 2>&1` =~ m/-mno-cygwin/m)
cbecd29a 1236 {
5b18235a 1237 push @{$config{cflags}}, "-mno-cygwin";
abe256e7 1238 push @{$config{cxxflags}}, "-mno-cygwin" if $config{CXX};
5b18235a 1239 push @{$config{shared_ldflag}}, "-mno-cygwin";
cbecd29a
AP
1240 }
1241
5b18235a 1242if ($target =~ /linux.*-mips/ && !$disabled{asm}
26f0340d 1243 && !grep { $_ !~ /-m(ips|arch=)/ } (@{$user{CFLAGS}},
9be64336 1244 @{$useradd{CFLAGS}})) {
63d8834c 1245 # minimally required architecture flags for assembly modules
fa153b57
RL
1246 my $value;
1247 $value = '-mips2' if ($target =~ /mips32/);
1248 $value = '-mips3' if ($target =~ /mips64/);
1249 unshift @{$config{cflags}}, $value;
abe256e7 1250 unshift @{$config{cxxflags}}, $value if $config{CXX};
63d8834c
AP
1251}
1252
9c62a279
RL
1253# If threads aren't disabled, check how possible they are
1254unless ($disabled{threads}) {
1255 if ($auto_threads) {
1256 # Enabled by default, disable it forcibly if unavailable
1257 if ($target{thread_scheme} eq "(unknown)") {
1258 $disabled{threads} = "unavailable";
1259 }
1260 } else {
8483a003 1261 # The user chose to enable threads explicitly, let's see
9c62a279
RL
1262 # if there's a chance that's possible
1263 if ($target{thread_scheme} eq "(unknown)") {
1264 # If the user asked for "threads" and we don't have internal
1265 # knowledge how to do it, [s]he is expected to provide any
1266 # system-dependent compiler options that are necessary. We
1267 # can't truly check that the given options are correct, but
1268 # we expect the user to know what [s]He is doing.
26f0340d
RL
1269 if (!@{$user{CFLAGS}} && !@{$useradd{CFLAGS}}
1270 && !@{$user{CPPDEFINES}} && !@{$useradd{CPPDEFINES}}) {
9c62a279
RL
1271 die "You asked for multi-threading support, but didn't\n"
1272 ,"provide any system-specific compiler options\n";
1273 }
1274 }
1275 }
1276}
1277
1278# If threads still aren't disabled, add a C macro to ensure the source
1279# code knows about it. Any other flag is taken care of by the configs.
1280unless($disabled{threads}) {
e0bf7c01 1281 push @{$config{openssl_feature_defines}}, "OPENSSL_THREADS";
9c62a279 1282}
e452de9d 1283
98186eb4
VD
1284# With "deprecated" disable all deprecated features.
1285if (defined($disabled{"deprecated"})) {
107b5792 1286 $config{api} = $maxapi;
98186eb4 1287}
07c4c14c 1288
8c3bc594 1289my $no_shared_warn=0;
291e94df 1290if ($target{shared_target} eq "")
6f7ac8e1 1291 {
ae48242c 1292 $no_shared_warn = 1
b53338cb 1293 if (!$disabled{shared} || !$disabled{"dynamic-engine"});
84af1bae 1294 $disabled{shared} = "no-shared-target";
ae48242c
RL
1295 $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} =
1296 "no-shared-target";
6f7ac8e1 1297 }
b436a982 1298
19ab5790 1299if ($disabled{"dynamic-engine"}) {
e0bf7c01 1300 push @{$config{openssl_feature_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
343ec2b0 1301 $config{dynamic_engines} = 0;
19ab5790 1302} else {
e0bf7c01 1303 push @{$config{openssl_feature_defines}}, "OPENSSL_NO_STATIC_ENGINE";
19ab5790 1304 $config{dynamic_engines} = 1;
343ec2b0 1305}
ecd45314 1306
c38bb727 1307unless ($disabled{asan}) {
5b18235a 1308 push @{$config{cflags}}, "-fsanitize=address";
abe256e7 1309 push @{$config{cxxflags}}, "-fsanitize=address" if $config{CXX};
c38bb727
BL
1310}
1311
1312unless ($disabled{ubsan}) {
f430ba31 1313 # -DPEDANTIC or -fnosanitize=alignment may also be required on some
c38bb727 1314 # platforms.
5b18235a 1315 push @{$config{cflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all";
fa153b57 1316 push @{$config{cxxflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all"
abe256e7 1317 if $config{CXX};
c38bb727
BL
1318}
1319
29df3061 1320unless ($disabled{msan}) {
5b18235a 1321 push @{$config{cflags}}, "-fsanitize=memory";
abe256e7 1322 push @{$config{cxxflags}}, "-fsanitize=memory" if $config{CXX};
29df3061
EK
1323}
1324
65cc6d5c 1325unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
29df3061 1326 && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
5b18235a 1327 push @{$config{cflags}}, "-fno-omit-frame-pointer", "-g";
abe256e7 1328 push @{$config{cxxflags}}, "-fno-omit-frame-pointer", "-g" if $config{CXX};
c38bb727 1329}
c313e32a
AP
1330#
1331# Platform fix-ups
1332#
ae48242c
RL
1333
1334# This saves the build files from having to check
1335if ($disabled{pic})
1336 {
8c3bc594 1337 foreach (qw(shared_cflag shared_cxxflag shared_cppflag
48dcca26
RL
1338 shared_defines shared_includes shared_ldflag
1339 module_cflags module_cxxflags module_cppflags
1340 module_defines module_includes module_lflags))
793077d0 1341 {
5b18235a 1342 delete $config{$_};
793077d0
RL
1343 $target{$_} = "";
1344 }
ae48242c 1345 }
4f16039e
RL
1346else
1347 {
68b8bcf4 1348 push @{$config{lib_defines}}, "OPENSSL_PIC";
4f16039e 1349 }
ae48242c 1350
291e94df 1351if ($target{sys_id} ne "")
cf1b7d96 1352 {
642a6138 1353 push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
cf1b7d96
RL
1354 }
1355
00b0d663 1356unless ($disabled{asm}) {
d2b2221a 1357 $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
68b8bcf4 1358 push @{$config{lib_defines}}, "OPENSSL_CPUID_OBJ" if ($target{cpuid_asm_src} ne "mem_clr.c");
2ad2281a 1359
9fe2bb77 1360 $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
f8c469de 1361
9e0724a1 1362 # bn-586 is the only one implementing bn_*_part_words
68b8bcf4
RL
1363 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
1364 push @{$config{lib_defines}}, "OPENSSL_IA32_SSE2" if (!$disabled{sse2} && $target{bn_asm_src} =~ /86/);
dfeab068 1365
68b8bcf4
RL
1366 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1367 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1368 push @{$config{lib_defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
31703da3 1369 push @{$config{lib_defines}}, "BN_DIV3W" if ($target{bn_asm_src} =~ /-div3w/);
5ac7bde7 1370
9fe2bb77 1371 if ($target{sha1_asm_src}) {
68b8bcf4
RL
1372 push @{$config{lib_defines}}, "SHA1_ASM" if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1373 push @{$config{lib_defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1374 push @{$config{lib_defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
9e0724a1 1375 }
e4739e31
AP
1376 if ($target{keccak1600_asm_src} ne $table{DEFAULTS}->{keccak1600_asm_src}) {
1377 push @{$config{lib_defines}}, "KECCAK1600_ASM";
1378 }
216e8d91 1379 if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
68b8bcf4 1380 push @{$config{lib_defines}}, "RC4_ASM";
216e8d91 1381 }
9fe2bb77 1382 if ($target{md5_asm_src}) {
68b8bcf4 1383 push @{$config{lib_defines}}, "MD5_ASM";
9e0724a1 1384 }
d2b2221a 1385 $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
9fe2bb77 1386 if ($target{rmd160_asm_src}) {
68b8bcf4 1387 push @{$config{lib_defines}}, "RMD160_ASM";
9e0724a1 1388 }
9fe2bb77 1389 if ($target{aes_asm_src}) {
68b8bcf4 1390 push @{$config{lib_defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
9fe2bb77 1391 # aes-ctr.fake is not a real file, only indication that assembler
874a3757 1392 # module implements AES_ctr32_encrypt...
68b8bcf4 1393 push @{$config{lib_defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
9fe2bb77 1394 # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
68b8bcf4 1395 push @{$config{lib_defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
0d59958c 1396 $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($disabled{sse2});
68b8bcf4
RL
1397 push @{$config{lib_defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1398 push @{$config{lib_defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
9e0724a1 1399 }
9fe2bb77 1400 if ($target{wp_asm_src} =~ /mmx/) {
46d4d865 1401 if ($config{processor} eq "386") {
d2b2221a 1402 $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
46d4d865 1403 } elsif (!$disabled{"whirlpool"}) {
68b8bcf4 1404 push @{$config{lib_defines}}, "WHIRLPOOL_ASM";
46d4d865 1405 }
9e0724a1 1406 }
9fe2bb77 1407 if ($target{modes_asm_src} =~ /ghash-/) {
68b8bcf4 1408 push @{$config{lib_defines}}, "GHASH_ASM";
9e0724a1 1409 }
9fe2bb77 1410 if ($target{ec_asm_src} =~ /ecp_nistz256/) {
68b8bcf4 1411 push @{$config{lib_defines}}, "ECP_NISTZ256_ASM";
9e0724a1 1412 }
0e5c8d56 1413 if ($target{ec_asm_src} =~ /x25519/) {
68b8bcf4 1414 push @{$config{lib_defines}}, "X25519_ASM";
0e5c8d56 1415 }
7b176a54 1416 if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
68b8bcf4 1417 push @{$config{lib_defines}}, "PADLOCK_ASM";
7b176a54 1418 }
9fe2bb77 1419 if ($target{poly1305_asm_src} ne "") {
68b8bcf4 1420 push @{$config{lib_defines}}, "POLY1305_ASM";
9e0724a1
RL
1421 }
1422}
d02b48c6 1423
41d6e0f3 1424my %predefined = compiler_predefined($config{CROSS_COMPILE}.$config{CC});
54cf3b98 1425
fe191b49 1426# Check for makedepend capabilities.
6d75a83c 1427if (!$disabled{makedepend}) {
fe191b49
RL
1428 if ($config{target} =~ /^(VC|vms)-/) {
1429 # For VC- and vms- targets, there's nothing more to do here. The
1430 # functionality is hard coded in the corresponding build files for
1431 # cl (Windows) and CC/DECC (VMS).
717f308e
TS
1432 } elsif (($predefined{__GNUC__} // -1) >= 3
1433 && !($predefined{__APPLE_CC__} && !$predefined{__clang__})) {
fe191b49 1434 # We know that GNU C version 3 and up as well as all clang
717f308e
TS
1435 # versions support dependency generation, but Xcode did not
1436 # handle $cc -M before clang support (but claims __GNUC__ = 3)
abe256e7 1437 $config{makedepprog} = "\$(CROSS_COMPILE)$config{CC}";
6d75a83c 1438 } else {
fe191b49
RL
1439 # In all other cases, we look for 'makedepend', and disable the
1440 # capability if not found.
6d75a83c
RL
1441 $config{makedepprog} = which('makedepend');
1442 $disabled{makedepend} = "unavailable" unless $config{makedepprog};
54cf3b98 1443 }
f1f07a23 1444}
8ed40b83 1445
8e5da579 1446if (!$disabled{asm} && !$predefined{__MACH__} && $^O ne 'VMS') {
0ad4078c
AP
1447 # probe for -Wa,--noexecstack option...
1448 if ($predefined{__clang__}) {
1449 # clang has builtin assembler, which doesn't recognize --help,
1450 # but it apparently recognizes the option in question on all
1451 # supported platforms even when it's meaningless. In other words
1452 # probe would fail, but probed option always accepted...
1453 push @{$config{cflags}}, "-Wa,--noexecstack", "-Qunused-arguments";
8e5da579 1454 } else {
0ad4078c
AP
1455 my $cc = $config{CROSS_COMPILE}.$config{CC};
1456 open(PIPE, "$cc -Wa,--help -c -o null.$$.o -x assembler /dev/null 2>&1 |");
1457 while(<PIPE>) {
1458 if (m/--noexecstack/) {
1459 push @{$config{cflags}}, "-Wa,--noexecstack";
1460 last;
1461 }
1462 }
1463 close(PIPE);
1464 unlink("null.$$.o");
1465 }
1466}
7d130f68
RL
1467
1468# Deal with bn_ops ###################################################
1469
7d130f68 1470$config{bn_ll} =0;
7d130f68
RL
1471$config{export_var_as_fn} =0;
1472my $def_int="unsigned int";
1473$config{rc4_int} =$def_int;
b4f35e5e 1474($config{b64l},$config{b64},$config{b32})=(0,0,1);
7d130f68 1475
94af0cd7 1476my $count = 0;
7d130f68 1477foreach (sort split(/\s+/,$target{bn_ops})) {
94af0cd7
RS
1478 $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1479 $config{export_var_as_fn}=1 if $_ eq 'EXPORT_VAR_AS_FN';
1480 $config{bn_ll}=1 if $_ eq 'BN_LLONG';
1481 $config{rc4_int}="unsigned char" if $_ eq 'RC4_CHAR';
1482 ($config{b64l},$config{b64},$config{b32})
1483 =(0,1,0) if $_ eq 'SIXTY_FOUR_BIT';
1484 ($config{b64l},$config{b64},$config{b32})
1485 =(1,0,0) if $_ eq 'SIXTY_FOUR_BIT_LONG';
1486 ($config{b64l},$config{b64},$config{b32})
1487 =(0,0,1) if $_ eq 'THIRTY_TWO_BIT';
7d130f68 1488}
94af0cd7
RS
1489die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1490 if $count > 1;
7d130f68
RL
1491
1492
1493# Hack cflags for better warnings (dev option) #######################
1494
fa153b57
RL
1495# "Stringify" the C and C++ flags string. This permits it to be made part of
1496# a string and works as well on command lines.
5b18235a
RL
1497$config{cflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
1498 @{$config{cflags}} ];
fa153b57 1499$config{cxxflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
abe256e7 1500 @{$config{cxxflags}} ] if $config{CXX};
b436a982 1501
fcd2d5a6
RL
1502$config{openssl_api_defines} = [
1503 "OPENSSL_MIN_API=".($apitable->{$config{api} // ""} // -1)
1504];
98186eb4 1505
0c28f277
DSH
1506if ($strict_warnings)
1507 {
1508 my $wopt;
6d50589c
AP
1509 my $gccver = $predefined{__GNUC__} // -1;
1510
1511 die "ERROR --strict-warnings requires gcc[>=4] or gcc-alike"
1512 unless $gccver >= 4;
0c28f277
DSH
1513 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1514 {
5b18235a
RL
1515 push @{$config{cflags}}, $wopt
1516 unless grep { $_ eq $wopt } @{$config{cflags}};
fa153b57 1517 push @{$config{cxxflags}}, $wopt
abe256e7 1518 if ($config{CXX}
fa153b57 1519 && !grep { $_ eq $wopt } @{$config{cxxflags}});
0c28f277 1520 }
54cf3b98 1521 if (defined($predefined{__clang__}))
190c8c60
BL
1522 {
1523 foreach $wopt (split /\s+/, $clang_devteam_warn)
1524 {
5b18235a
RL
1525 push @{$config{cflags}}, $wopt
1526 unless grep { $_ eq $wopt } @{$config{cflags}};
fa153b57 1527 push @{$config{cxxflags}}, $wopt
abe256e7 1528 if ($config{CXX}
fa153b57 1529 && !grep { $_ eq $wopt } @{$config{cxxflags}});
190c8c60
BL
1530 }
1531 }
ef8ca6bd
RL
1532 }
1533
1534unless ($disabled{"crypto-mdebug-backtrace"})
1535 {
1536 foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
a1d3f3d1 1537 {
5b18235a
RL
1538 push @{$config{cflags}}, $wopt
1539 unless grep { $_ eq $wopt } @{$config{cflags}};
fa153b57 1540 push @{$config{cxxflags}}, $wopt
abe256e7 1541 if ($config{CXX}
fa153b57 1542 && !grep { $_ eq $wopt } @{$config{cxxflags}});
ef8ca6bd
RL
1543 }
1544 if ($target =~ /^BSD-/)
1545 {
5b18235a 1546 push @{$config{ex_libs}}, "-lexecinfo";
291e94df 1547 }
0c28f277
DSH
1548 }
1549
c91a0a83
EK
1550unless ($disabled{afalgeng}) {
1551 $config{afalgeng}="";
9e381e8a 1552 if (grep { $_ eq 'afalgeng' } @{$target{enable}}) {
79fff39d 1553 my $minver = 4*10000 + 1*100 + 0;
abe256e7 1554 if ($config{CROSS_COMPILE} eq "") {
79fff39d
RL
1555 my $verstr = `uname -r`;
1556 my ($ma, $mi1, $mi2) = split("\\.", $verstr);
1557 ($mi2) = $mi2 =~ /(\d+)/;
1558 my $ver = $ma*10000 + $mi1*100 + $mi2;
1559 if ($ver < $minver) {
c91a0a83 1560 $disabled{afalgeng} = "too-old-kernel";
79fff39d
RL
1561 } else {
1562 push @{$config{engdirs}}, "afalg";
1563 }
68dc37c1
MC
1564 } else {
1565 $disabled{afalgeng} = "cross-compiling";
6cba4a66 1566 }
79fff39d 1567 } else {
c91a0a83 1568 $disabled{afalgeng} = "not-linux";
7f458a48 1569 }
1570}
8da00a38 1571
e0bf7c01 1572push @{$config{openssl_feature_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
7f458a48 1573
69495e3d
BP
1574unless ($disabled{ktls}) {
1575 $config{ktls}="";
1576 if ($target =~ m/^linux/) {
1577 my $usr = "/usr/$config{cross_compile_prefix}";
1578 chop($usr);
1579 if ($config{cross_compile_prefix} eq "") {
1580 $usr = "/usr";
1581 }
1582 my $minver = (4 << 16) + (13 << 8) + 0;
1583 my @verstr = split(" ",`cat $usr/include/linux/version.h | grep LINUX_VERSION_CODE`);
1584
1585 if ($verstr[2] < $minver) {
1586 $disabled{ktls} = "too-old-kernel";
1587 }
1588 } else {
1589 $disabled{ktls} = "not-linux";
1590 }
1591}
1592
1593push @{$config{openssl_other_defines}}, "OPENSSL_NO_KTLS" if ($disabled{ktls});
1594
63468812
RL
1595# Finish up %config by appending things the user gave us on the command line
1596# apart from "make variables"
1597foreach (keys %useradd) {
1598 # The must all be lists, so we assert that here
1599 die "internal error: \$useradd{$_} isn't an ARRAY\n"
1600 unless ref $useradd{$_} eq 'ARRAY';
1601
abe256e7
RL
1602 if (defined $config{$_}) {
1603 push @{$config{$_}}, @{$useradd{$_}};
63468812 1604 } else {
abe256e7 1605 $config{$_} = [ @{$useradd{$_}} ];
63468812
RL
1606 }
1607}
1608
5b18235a
RL
1609# ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON
1610
9fe2bb77
RL
1611# If we use the unified build, collect information from build.info files
1612my %unified_info = ();
1613
2b6b606c 1614my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
ddf1847d 1615if ($builder eq "unified") {
9fe2bb77
RL
1616 use with_fallback qw(Text::Template);
1617
9fe2bb77 1618 sub cleandir {
2e963849 1619 my $base = shift;
9fe2bb77 1620 my $dir = shift;
2e963849
RL
1621 my $relativeto = shift || ".";
1622
1623 $dir = catdir($base,$dir) unless isabsolute($dir);
9fe2bb77 1624
ec182ef0
RL
1625 # Make sure the directories we're building in exists
1626 mkpath($dir);
1627
2e963849 1628 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
9fe2bb77
RL
1629 #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1630 return $res;
1631 }
1632
1633 sub cleanfile {
2e963849 1634 my $base = shift;
9fe2bb77 1635 my $file = shift;
2e963849
RL
1636 my $relativeto = shift || ".";
1637
1638 $file = catfile($base,$file) unless isabsolute($file);
1639
9fe2bb77
RL
1640 my $d = dirname($file);
1641 my $f = basename($file);
1642
ec182ef0
RL
1643 # Make sure the directories we're building in exists
1644 mkpath($d);
1645
2e963849 1646 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
9fe2bb77
RL
1647 #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1648 return $res;
1649 }
1650
1967a42e
RL
1651 # Store the name of the template file we will build the build file from
1652 # in %config. This may be useful for the build file itself.
1653 my @build_file_template_names =
1654 ( $builder_platform."-".$target{build_file}.".tmpl",
1655 $target{build_file}.".tmpl" );
1656 my @build_file_templates = ();
1657
1658 # First, look in the user provided directory, if given
7ecdf18d 1659 if (defined env($local_config_envname)) {
1967a42e
RL
1660 @build_file_templates =
1661 map {
1662 if ($^O eq 'VMS') {
1663 # VMS environment variables are logical names,
1664 # which can be used as is
1665 $local_config_envname . ':' . $_;
1666 } else {
7ecdf18d 1667 catfile(env($local_config_envname), $_);
1967a42e
RL
1668 }
1669 }
1670 @build_file_template_names;
1671 }
1672 # Then, look in our standard directory
1673 push @build_file_templates,
1674 ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
1675 @build_file_template_names );
1676
1677 my $build_file_template;
1678 for $_ (@build_file_templates) {
1679 $build_file_template = $_;
1680 last if -f $build_file_template;
1681
1682 $build_file_template = undef;
1683 }
1684 if (!defined $build_file_template) {
1685 die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
1686 }
1687 $config{build_file_templates}
8258975c
RL
1688 = [ cleanfile($srcdir, catfile("Configurations", "common0.tmpl"),
1689 $blddir),
1690 $build_file_template,
1967a42e
RL
1691 cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
1692 $blddir) ];
1693
7f73eafe 1694 my @build_dirs = ( [ ] ); # current directory
9fe2bb77 1695
2e0956ba
RL
1696 $config{build_infos} = [ ];
1697
d201dbc9 1698 my %ordinals = ();
7f73eafe
RL
1699 while (@build_dirs) {
1700 my @curd = @{shift @build_dirs};
1701 my $sourced = catdir($srcdir, @curd);
1702 my $buildd = catdir($blddir, @curd);
9fe2bb77 1703
75d47db4
RL
1704 my $unixdir = join('/', @curd);
1705 if (exists $skipdir{$unixdir}) {
1706 my $what = $skipdir{$unixdir};
1707 push @{$disabled_info{$what}->{skipped}}, catdir(@curd);
1708 next;
1709 }
1710
dca99383 1711 mkpath($buildd);
9fe2bb77 1712
7f73eafe 1713 my $f = 'build.info';
9fe2bb77
RL
1714 # The basic things we're trying to build
1715 my @programs = ();
1716 my @libraries = ();
1842f369 1717 my @modules = ();
9fe2bb77 1718 my @scripts = ();
9fe2bb77 1719
c91f24d4 1720 my %attributes = ();
9fe2bb77 1721 my %sources = ();
2a08d1a0 1722 my %shared_sources = ();
9fe2bb77 1723 my %includes = ();
b96ab5e6 1724 my %defines = ();
9fe2bb77 1725 my %depends = ();
ae4c7450 1726 my %generate = ();
9fe2bb77 1727
846e4c4d
RL
1728 # We want to detect configdata.pm in the source tree, so we
1729 # don't use it if the build tree is different.
1730 my $src_configdata = cleanfile($srcdir, "configdata.pm", $blddir);
1731
2e0956ba 1732 push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
cb6afcd6
RL
1733 my $template =
1734 Text::Template->new(TYPE => 'FILE',
1735 SOURCE => catfile($sourced, $f),
1736 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
9fe2bb77
RL
1737 die "Something went wrong with $sourced/$f: $!\n" unless $template;
1738 my @text =
1739 split /^/m,
1740 $template->fill_in(HASH => { config => \%config,
1741 target => \%target,
9e04edf2 1742 disabled => \%disabled,
f59d0131 1743 withargs => \%withargs,
9fe2bb77
RL
1744 builddir => abs2rel($buildd, $blddir),
1745 sourcedir => abs2rel($sourced, $blddir),
1746 buildtop => abs2rel($blddir, $blddir),
1747 sourcetop => abs2rel($srcdir, $blddir) },
1748 DELIMITERS => [ "{-", "-}" ]);
1749
1750 # The top item of this stack has the following values
1751 # -2 positive already run and we found ELSE (following ELSIF should fail)
1752 # -1 positive already run (skip until ENDIF)
1753 # 0 negatives so far (if we're at a condition, check it)
1754 # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1755 # 2 positive ELSE (following ELSIF should fail)
1756 my @skip = ();
1757 collect_information(
1758 collect_from_array([ @text ],
1759 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1760 $l1 =~ s/\\$//; $l1.$l2 }),
1761 # Info we're looking for
1762 qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
635bd409 1763 => sub {
c5798e0e 1764 if (! @skip || $skip[$#skip] > 0) {
635bd409
RL
1765 push @skip, !! $1;
1766 } else {
1767 push @skip, -1;
1768 }
1769 },
9fe2bb77
RL
1770 qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1771 => sub { die "ELSIF out of scope" if ! @skip;
1772 die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1773 $skip[$#skip] = -1 if $skip[$#skip] != 0;
1774 $skip[$#skip] = !! $1
1775 if $skip[$#skip] == 0; },
1776 qr/^\s*ELSE\s*$/
1777 => sub { die "ELSE out of scope" if ! @skip;
1778 $skip[$#skip] = -2 if $skip[$#skip] != 0;
1779 $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1780 qr/^\s*ENDIF\s*$/
1781 => sub { die "ENDIF out of scope" if ! @skip;
1782 pop @skip; },
7f73eafe
RL
1783 qr/^\s*SUBDIRS\s*=\s*(.*)\s*$/
1784 => sub {
1785 if (!@skip || $skip[$#skip] > 0) {
1786 foreach (tokenize($1)) {
1787 push @build_dirs, [ @curd, splitdir($_, 1) ];
1788 }
1789 }
1790 },
c91f24d4 1791 qr/^\s*PROGRAMS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1792 => sub {
1793 if (!@skip || $skip[$#skip] > 0) {
c91f24d4
RL
1794 my @a = tokenize($1, qr|\s*,\s*|);
1795 my @p = tokenize($2);
1796 push @programs, @p;
1797 foreach my $a (@a) {
1798 my $ak = $a;
1799 my $av = 1;
1800 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1801 $ak = $1;
1802 $av = $2;
1803 }
1804 foreach my $p (@p) {
1805 $attributes{$p}->{$ak} = $av;
1806 }
1807 }
7f5af797
RL
1808 }
1809 },
c91f24d4 1810 qr/^\s*LIBS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1811 => sub {
1812 if (!@skip || $skip[$#skip] > 0) {
c91f24d4
RL
1813 my @a = tokenize($1, qr|\s*,\s*|);
1814 my @l = tokenize($2);
1815 push @libraries, @l;
1816 foreach my $a (@a) {
1817 my $ak = $a;
1818 my $av = 1;
1819 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1820 $ak = $1;
1821 $av = $2;
1822 }
1823 foreach my $l (@l) {
1824 $attributes{$l}->{$ak} = $av;
1825 }
1826 }
7f5af797
RL
1827 }
1828 },
1842f369 1829 qr/^\s*MODULES(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1830 => sub {
1831 if (!@skip || $skip[$#skip] > 0) {
c91f24d4 1832 my @a = tokenize($1, qr|\s*,\s*|);
1842f369
RL
1833 my @m = tokenize($2);
1834 push @modules, @m;
c91f24d4
RL
1835 foreach my $a (@a) {
1836 my $ak = $a;
1837 my $av = 1;
1838 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1839 $ak = $1;
1840 $av = $2;
1841 }
1842f369
RL
1842 foreach my $m (@m) {
1843 $attributes{$m}->{$ak} = $av;
c91f24d4
RL
1844 }
1845 }
7f5af797
RL
1846 }
1847 },
c91f24d4 1848 qr/^\s*SCRIPTS(?:{([\w=]+(?:\s*,\s*[\w=]+)*)})?\s*=\s*(.*)\s*$/
7f5af797
RL
1849 => sub {
1850 if (!@skip || $skip[$#skip] > 0) {
c91f24d4
RL
1851 my @a = tokenize($1, qr|\s*,\s*|);
1852 my @s = tokenize($2);
1853 push @scripts, @s;
1854 foreach my $a (@a) {
1855 my $ak = $a;
1856 my $av = 1;
1857 if ($a =~ m|^(.*?)\s*=\s*(.*?)$|) {
1858 $ak = $1;
1859 $av = $2;
1860 }
1861 foreach my $s (@s) {
1862 $attributes{$s}->{$ak} = $av;
1863 }
1864 }
7f5af797
RL
1865 }
1866 },
9fe2bb77
RL
1867
1868 qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
ce959812 1869 => sub { push @{$ordinals{$1}}, tokenize($2)
9fe2bb77
RL
1870 if !@skip || $skip[$#skip] > 0 },
1871 qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1872 => sub { push @{$sources{$1}}, tokenize($2)
9fe2bb77 1873 if !@skip || $skip[$#skip] > 0 },
2a08d1a0 1874 qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1875 => sub { push @{$shared_sources{$1}}, tokenize($2)
2a08d1a0 1876 if !@skip || $skip[$#skip] > 0 },
9fe2bb77 1877 qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1878 => sub { push @{$includes{$1}}, tokenize($2)
9fe2bb77 1879 if !@skip || $skip[$#skip] > 0 },
b96ab5e6
RL
1880 qr/^\s*DEFINE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1881 => sub { push @{$defines{$1}}, tokenize($2)
1882 if !@skip || $skip[$#skip] > 0 },
4f858293 1883 qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
ce959812 1884 => sub { push @{$depends{$1}}, tokenize($2)
9fe2bb77 1885 if !@skip || $skip[$#skip] > 0 },
ae4c7450
RL
1886 qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1887 => sub { push @{$generate{$1}}, $2
1888 if !@skip || $skip[$#skip] > 0 },
ab6e147c 1889 qr/^\s*(?:#.*)?$/ => sub { },
2b6b606c
RL
1890 "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
1891 "BEFORE" => sub {
1892 if ($buildinfo_debug) {
1893 print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
1894 print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1895 }
1896 },
1897 "AFTER" => sub {
1898 if ($buildinfo_debug) {
1899 print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1900 }
1901 },
9fe2bb77
RL
1902 );
1903 die "runaway IF?" if (@skip);
1904
1842f369
RL
1905 if (grep { defined $attributes{$_}->{engine} } keys %attributes
1906 and !$config{dynamic_engines}) {
1907 die <<"EOF"
19ab5790 1908ENGINES can only be used if configured with 'dynamic-engine'.
9fe2bb77
RL
1909This is usually a fault in a build.info file.
1910EOF
1842f369 1911 }
7f5af797 1912
c91f24d4
RL
1913 foreach (keys %attributes) {
1914 my $dest = $_;
1915 my $ddest = cleanfile($buildd, $_, $blddir);
1916 foreach (keys %{$attributes{$dest} // {}}) {
1917 $unified_info{attributes}->{$ddest}->{$_} =
1918 $attributes{$dest}->{$_};
1919 }
9fe2bb77
RL
1920 }
1921
c91f24d4
RL
1922 {
1923 my %infos = ( programs => [ @programs ],
1924 libraries => [ @libraries ],
1842f369 1925 modules => [ @modules ],
da7e31e0 1926 scripts => [ @scripts ] );
c91f24d4
RL
1927 foreach my $k (keys %infos) {
1928 foreach (@{$infos{$k}}) {
1929 my $item = cleanfile($buildd, $_, $blddir);
1930 $unified_info{$k}->{$item} = 1;
1931 }
1932 }
8a67946e
RL
1933 }
1934
f5fb6f05
RL
1935 # Check that we haven't defined any library as both shared and
1936 # explicitly static. That is forbidden.
1937 my @doubles = ();
1938 foreach (grep /\.a$/, keys %{$unified_info{libraries}}) {
1939 (my $l = $_) =~ s/\.a$//;
1940 push @doubles, $l if defined $unified_info{libraries}->{$l};
9fe2bb77 1941 }
f5fb6f05
RL
1942 die "these libraries are both explicitly static and shared:\n ",
1943 join(" ", @doubles), "\n"
1944 if @doubles;
9fe2bb77 1945
9fe2bb77
RL
1946 foreach (keys %sources) {
1947 my $dest = $_;
2e963849 1948 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77 1949 foreach (@{$sources{$dest}}) {
2e963849 1950 my $s = cleanfile($sourced, $_, $blddir);
9fe2bb77
RL
1951
1952 # If it isn't in the source tree, we assume it's generated
1953 # in the build tree
846e4c4d 1954 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2e963849 1955 $s = cleanfile($buildd, $_, $blddir);
9fe2bb77 1956 }
ea241958
RL
1957 # We recognise C++, C and asm files
1958 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
1959 my $o = $_;
1960 $o =~ s/\.[csS]$/.o/; # C and assembler
1961 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2e963849 1962 $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1963 $unified_info{sources}->{$ddest}->{$o} = -1;
1964 $unified_info{sources}->{$o}->{$s} = -1;
83900628
RS
1965 } elsif ($s =~ /\.rc$/) {
1966 # We also recognise resource files
1967 my $o = $_;
1968 $o =~ s/\.rc$/.res/; # Resource configuration
1969 my $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1970 $unified_info{sources}->{$ddest}->{$o} = -1;
1971 $unified_info{sources}->{$o}->{$s} = -1;
9fe2bb77
RL
1972 } else {
1973 $unified_info{sources}->{$ddest}->{$s} = 1;
1974 }
1975 }
1976 }
1977
2a08d1a0
RL
1978 foreach (keys %shared_sources) {
1979 my $dest = $_;
1980 my $ddest = cleanfile($buildd, $_, $blddir);
2a08d1a0
RL
1981 foreach (@{$shared_sources{$dest}}) {
1982 my $s = cleanfile($sourced, $_, $blddir);
1983
1984 # If it isn't in the source tree, we assume it's generated
1985 # in the build tree
846e4c4d 1986 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
2a08d1a0
RL
1987 $s = cleanfile($buildd, $_, $blddir);
1988 }
ccce3e1d 1989
ea241958 1990 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
ccce3e1d 1991 # We recognise C++, C and asm files
ea241958
RL
1992 my $o = $_;
1993 $o =~ s/\.[csS]$/.o/; # C and assembler
1994 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2a08d1a0 1995 $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
1996 $unified_info{shared_sources}->{$ddest}->{$o} = -1;
1997 $unified_info{sources}->{$o}->{$s} = -1;
ccce3e1d
RL
1998 } elsif ($s =~ /\.rc$/) {
1999 # We also recognise resource files
2000 my $o = $_;
2001 $o =~ s/\.rc$/.res/; # Resource configuration
2002 my $o = cleanfile($buildd, $o, $blddir);
bec2db18
RL
2003 $unified_info{shared_sources}->{$ddest}->{$o} = -1;
2004 $unified_info{sources}->{$o}->{$s} = -1;
ef2dfc99
RL
2005 } elsif ($s =~ /\.ld$/) {
2006 # We also recognise linker scripts (or corresponding)
ccce3e1d 2007 # We know they are generated files
05a72c28 2008 my $ld = cleanfile($buildd, $_, $blddir);
ef2dfc99 2009 $unified_info{shared_sources}->{$ddest}->{$ld} = 1;
2a08d1a0
RL
2010 } else {
2011 die "unrecognised source file type for shared library: $s\n";
2012 }
2013 }
2014 }
2015
ae4c7450
RL
2016 foreach (keys %generate) {
2017 my $dest = $_;
2018 my $ddest = cleanfile($buildd, $_, $blddir);
ae4c7450
RL
2019 die "more than one generator for $dest: "
2020 ,join(" ", @{$generate{$_}}),"\n"
2021 if scalar @{$generate{$_}} > 1;
2022 my @generator = split /\s+/, $generate{$dest}->[0];
2023 $generator[0] = cleanfile($sourced, $generator[0], $blddir),
2024 $unified_info{generate}->{$ddest} = [ @generator ];
2025 }
2026
9fe2bb77
RL
2027 foreach (keys %depends) {
2028 my $dest = $_;
4f858293 2029 my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
8d34daf0
RL
2030
2031 # If the destination doesn't exist in source, it can only be
2032 # a generated file in the build tree.
846e4c4d 2033 if ($ddest ne "" && ($ddest eq $src_configdata || ! -f $ddest)) {
8d34daf0 2034 $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
2035 }
2036 foreach (@{$depends{$dest}}) {
2e963849 2037 my $d = cleanfile($sourced, $_, $blddir);
9fe2bb77 2038
e737d7b1
RL
2039 # If we know it's generated, or assume it is because we can't
2040 # find it in the source tree, we set file we depend on to be
2041 # in the build tree rather than the source tree, and assume
2042 # and that there are lines to build it in a BEGINRAW..ENDRAW
2043 # section or in the Makefile template.
846e4c4d
RL
2044 if ($d eq $src_configdata
2045 || ! -f $d
da1f2104
RL
2046 || (grep { $d eq $_ }
2047 map { cleanfile($srcdir, $_, $blddir) }
4f858293 2048 grep { /\.h$/ } keys %{$unified_info{generate}})) {
2e963849 2049 $d = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
2050 }
2051 # Take note if the file to depend on is being renamed
186a31e5
RL
2052 # Take extra care with files ending with .a, they should
2053 # be treated without that extension, and the extension
2054 # should be added back after treatment.
2055 $d =~ /(\.a)?$/;
2056 my $e = $1 // "";
f5fb6f05 2057 $d = $`.$e;
9fe2bb77 2058 $unified_info{depends}->{$ddest}->{$d} = 1;
9fe2bb77
RL
2059 }
2060 }
2061
2062 foreach (keys %includes) {
2063 my $dest = $_;
8d34daf0
RL
2064 my $ddest = cleanfile($sourced, $_, $blddir);
2065
2066 # If the destination doesn't exist in source, it can only be
2067 # a generated file in the build tree.
846e4c4d 2068 if ($ddest eq $src_configdata || ! -f $ddest) {
8d34daf0 2069 $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
2070 }
2071 foreach (@{$includes{$dest}}) {
4748f890
RL
2072 my $is = cleandir($sourced, $_, $blddir);
2073 my $ib = cleandir($buildd, $_, $blddir);
2074 push @{$unified_info{includes}->{$ddest}->{source}}, $is
2075 unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
2076 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
2077 unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
9fe2bb77
RL
2078 }
2079 }
b96ab5e6
RL
2080
2081 foreach (keys %defines) {
2082 my $dest = $_;
2083 my $ddest = cleanfile($sourced, $_, $blddir);
2084
2085 # If the destination doesn't exist in source, it can only be
2086 # a generated file in the build tree.
2087 if (! -f $ddest) {
2088 $ddest = cleanfile($buildd, $_, $blddir);
2089 if ($unified_info{rename}->{$ddest}) {
2090 $ddest = $unified_info{rename}->{$ddest};
2091 }
2092 }
2093 foreach (@{$defines{$dest}}) {
2094 m|^([^=]*)(=.*)?$|;
2095 die "0 length macro name not permitted\n" if $1 eq "";
2096 die "$1 defined more than once\n"
2097 if defined $unified_info{defines}->{$ddest}->{$1};
2098 $unified_info{defines}->{$ddest}->{$1} = $2;
2099 }
2100 }
9fe2bb77
RL
2101 }
2102
d201dbc9
RL
2103 my $ordinals_text = join(', ', sort keys %ordinals);
2104 warn <<"EOF" if $ordinals_text;
2105
2106WARNING: ORDINALS were specified for $ordinals_text
2107They are ignored and should be replaced with a combination of GENERATE,
2108DEPEND and SHARED_SOURCE.
2109EOF
2110
1b5ad51f
RL
2111 # Massage the result
2112
e431bcfa
RL
2113 # If we depend on a header file or a perl module, add an inclusion of
2114 # its directory to allow smoothe inclusion
2115 foreach my $dest (keys %{$unified_info{depends}}) {
2116 next if $dest eq "";
2117 foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
2118 next unless $d =~ /\.(h|pm)$/;
906032d5
RL
2119 my $i = dirname($d);
2120 my $spot =
2121 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
2122 ? 'build' : 'source';
2123 push @{$unified_info{includes}->{$dest}->{$spot}}, $i
2124 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{$spot}};
e431bcfa
RL
2125 }
2126 }
2127
ef2dfc99 2128 # Go through all intermediary files and change their names to something that
bec2db18
RL
2129 # reflects what they will be built for. Note that for some source files,
2130 # this leads to duplicate object files because they are used multiple times.
2131 # the goal is to rename all object files according to this scheme:
2132 # {productname}-{midfix}-{origobjname}.[o|res]
2133 # the {midfix} is a keyword indicating the type of product, which is mostly
2134 # valuable for libraries since they come in two forms.
2135 #
2136 # This also reorganises the {sources} and {shared_sources} so that the
2137 # former only contains ALL object files that are supposed to end up in
2138 # static libraries and programs, while the latter contains ALL object files
2139 # that are supposed to end up in shared libraries and DSOs.
2140 # The main reason for having two different source structures is to allow
2141 # the same name to be used for the static and the shared variants of a
2142 # library.
2143 {
2144 # Take copies so we don't get interference from added stuff
2145 my %unified_copy = ();
2146 foreach (('sources', 'shared_sources')) {
2147 $unified_copy{$_} = { %{$unified_info{$_}} }
2148 if defined($unified_info{$_});
2149 delete $unified_info{$_};
2150 }
1842f369 2151 foreach my $prodtype (('programs', 'libraries', 'modules', 'scripts')) {
bec2db18
RL
2152 # $intent serves multi purposes:
2153 # - give a prefix for the new object files names
2154 # - in the case of libraries, rearrange the object files so static
2155 # libraries use the 'sources' structure exclusively, while shared
2156 # libraries use the 'shared_sources' structure exclusively.
2157 my $intent = {
2158 programs => { bin => { src => [ 'sources' ],
2159 dst => 'sources' } },
2160 libraries => { lib => { src => [ 'sources' ],
2161 dst => 'sources' },
2162 shlib => { prodselect =>
2163 sub { grep !/\.a$/, @_ },
2164 src => [ 'sources',
2165 'shared_sources' ],
2166 dst => 'shared_sources' } },
1842f369 2167 modules => { dso => { src => [ 'sources',
bec2db18
RL
2168 'shared_sources' ],
2169 dst => 'shared_sources' } },
2170 scripts => { script => { src => [ 'sources' ],
2171 dst => 'sources' } }
2172 } -> {$prodtype};
2173 foreach my $kind (keys %$intent) {
856b1b65
RL
2174 next if ($intent->{$kind}->{dst} eq 'shared_sources'
2175 && $disabled{shared});
2176
bec2db18
RL
2177 my @src = @{$intent->{$kind}->{src}};
2178 my $dst = $intent->{$kind}->{dst};
2179 my $prodselect = $intent->{$kind}->{prodselect} // sub { @_ };
2180 foreach my $prod ($prodselect->(keys %{$unified_info{$prodtype}})) {
2181 # %prod_sources has all applicable objects as keys, and
2182 # their corresponding sources as values
2183 my %prod_sources =
2184 map { $_ => [ keys %{$unified_copy{sources}->{$_}} ] }
2185 map { keys %{$unified_copy{$_}->{$prod}} }
2186 @src;
2187 foreach (keys %prod_sources) {
ef2dfc99
RL
2188 # Only affect object files and resource files,
2189 # the others simply get a new value
2190 # (+1 instead of -1)
bec2db18
RL
2191 if ($_ =~ /\.(o|res)$/) {
2192 (my $prodname = $prod) =~ s|\.a$||;
2193 my $newobj =
2194 catfile(dirname($_),
2195 basename($prodname)
2196 . '-' . $kind
2197 . '-' . basename($_));
2198 $unified_info{$dst}->{$prod}->{$newobj} = 1;
2199 foreach my $src (@{$prod_sources{$_}}) {
2200 $unified_info{sources}->{$newobj}->{$src} = 1;
2201 }
2202 # Adjust dependencies
2203 foreach my $deps (keys %{$unified_info{depends}->{$_}}) {
2204 $unified_info{depends}->{$_}->{$deps} = -1;
2205 $unified_info{depends}->{$newobj}->{$deps} = 1;
2206 }
2207 # Adjust includes
2208 foreach my $k (('source', 'build')) {
2209 next unless
2210 defined($unified_info{includes}->{$_}->{$k});
2211 my @incs = @{$unified_info{includes}->{$_}->{$k}};
2212 $unified_info{includes}->{$newobj}->{$k} = [ @incs ];
2213 }
2214 } else {
2215 $unified_info{$dst}->{$prod}->{$_} = 1;
2216 }
2217 }
2218 }
2219 }
2220 }
2221 }
2222 # At this point, we have a number of sources with the value -1. They
2223 # aren't part of the local build and are probably meant for a different
2224 # platform, and can therefore be cleaned away. That happens when making
2225 # %unified_info more efficient below.
2226
9fe2bb77
RL
2227 ### Make unified_info a bit more efficient
2228 # One level structures
1842f369 2229 foreach (("programs", "libraries", "modules", "scripts")) {
9fe2bb77
RL
2230 $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
2231 }
2232 # Two level structures
c91f24d4 2233 foreach my $l1 (("sources", "shared_sources", "ldadd", "depends")) {
9fe2bb77 2234 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
bec2db18
RL
2235 my @items =
2236 sort
2237 grep { $unified_info{$l1}->{$l2}->{$_} > 0 }
2238 keys %{$unified_info{$l1}->{$l2}};
2239 if (@items) {
2240 $unified_info{$l1}->{$l2} = [ @items ];
2241 } else {
2242 delete $unified_info{$l1}->{$l2};
2243 }
9fe2bb77
RL
2244 }
2245 }
b96ab5e6
RL
2246 # Defines
2247 foreach my $dest (sort keys %{$unified_info{defines}}) {
2248 $unified_info{defines}->{$dest}
2249 = [ map { $_.$unified_info{defines}->{$dest}->{$_} }
2250 sort keys %{$unified_info{defines}->{$dest}} ];
2251 }
4748f890
RL
2252 # Includes
2253 foreach my $dest (sort keys %{$unified_info{includes}}) {
2254 if (defined($unified_info{includes}->{$dest}->{build})) {
e431bcfa
RL
2255 my @source_includes = ();
2256 @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
2257 if defined($unified_info{includes}->{$dest}->{source});
4748f890
RL
2258 $unified_info{includes}->{$dest} =
2259 [ @{$unified_info{includes}->{$dest}->{build}} ];
2260 foreach my $inc (@source_includes) {
2261 push @{$unified_info{includes}->{$dest}}, $inc
2262 unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
2263 }
609e4be8 2264 } elsif (defined($unified_info{includes}->{$dest}->{source})) {
4748f890
RL
2265 $unified_info{includes}->{$dest} =
2266 [ @{$unified_info{includes}->{$dest}->{source}} ];
609e4be8
RL
2267 } else {
2268 delete $unified_info{includes}->{$dest};
4748f890
RL
2269 }
2270 }
b6e66075
RL
2271
2272 # For convenience collect information regarding directories where
2273 # files are generated, those generated files and the end product
2274 # they end up in where applicable. Then, add build rules for those
2275 # directories
2276 my %loopinfo = ( "lib" => [ @{$unified_info{libraries}} ],
1842f369 2277 "dso" => [ @{$unified_info{modules}} ],
b6e66075
RL
2278 "bin" => [ @{$unified_info{programs}} ],
2279 "script" => [ @{$unified_info{scripts}} ] );
2280 foreach my $type (keys %loopinfo) {
2281 foreach my $product (@{$loopinfo{$type}}) {
2282 my %dirs = ();
2283 my $pd = dirname($product);
2284
3bed01a0 2285 foreach (@{$unified_info{sources}->{$product} // []},
b6e66075
RL
2286 @{$unified_info{shared_sources}->{$product} // []}) {
2287 my $d = dirname($_);
2288
2289 # We don't want to create targets for source directories
2290 # when building out of source
2291 next if ($config{sourcedir} ne $config{builddir}
2292 && $d =~ m|^\Q$config{sourcedir}\E|);
2293 # We already have a "test" target, and the current directory
2294 # is just silly to make a target for
2295 next if $d eq "test" || $d eq ".";
2296
2297 $dirs{$d} = 1;
2298 push @{$unified_info{dirinfo}->{$d}->{deps}}, $_
2299 if $d ne $pd;
2300 }
2301 foreach (keys %dirs) {
2302 push @{$unified_info{dirinfo}->{$_}->{products}->{$type}},
2303 $product;
2304 }
2305 }
2306 }
9fe2bb77
RL
2307}
2308
2309# For the schemes that need it, we provide the old *_obj configs
2310# from the *_asm_obj ones
3a55c92b 2311foreach (grep /_(asm|aux)_src$/, keys %target) {
9fe2bb77 2312 my $src = $_;
3a55c92b 2313 (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
ea241958
RL
2314 $target{$obj} = $target{$src};
2315 $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
2316 $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
9fe2bb77
RL
2317}
2318
291e94df
RL
2319# Write down our configuration where it fits #########################
2320
b1fafff6 2321print "Creating configdata.pm\n";
291e94df
RL
2322open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
2323print OUT <<"EOF";
abe256e7 2324#! $config{HASHBANGPERL}
b1fafff6 2325
291e94df
RL
2326package configdata;
2327
2328use strict;
2329use warnings;
2330
2331use Exporter;
2332#use vars qw(\@ISA \@EXPORT);
2333our \@ISA = qw(Exporter);
3850f8cb 2334our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
291e94df
RL
2335
2336EOF
2337print OUT "our %config = (\n";
2338foreach (sort keys %config) {
2339 if (ref($config{$_}) eq "ARRAY") {
2340 print OUT " ", $_, " => [ ", join(", ",
2341 map { quotify("perl", $_) }
2342 @{$config{$_}}), " ],\n";
7ecdf18d
RL
2343 } elsif (ref($config{$_}) eq "HASH") {
2344 print OUT " ", $_, " => {";
2345 if (scalar keys %{$config{$_}} > 0) {
2346 print OUT "\n";
2347 foreach my $key (sort keys %{$config{$_}}) {
2348 print OUT " ",
2349 join(" => ",
2350 quotify("perl", $key),
2351 defined $config{$_}->{$key}
2352 ? quotify("perl", $config{$_}->{$key})
2353 : "undef");
2354 print OUT ",\n";
2355 }
2356 print OUT " ";
2357 }
2358 print OUT "},\n";
291e94df
RL
2359 } else {
2360 print OUT " ", $_, " => ", quotify("perl", $config{$_}), ",\n"
2361 }
2362}
2363print OUT <<"EOF";
2364);
2365
2366EOF
2367print OUT "our %target = (\n";
2368foreach (sort keys %target) {
2369 if (ref($target{$_}) eq "ARRAY") {
2370 print OUT " ", $_, " => [ ", join(", ",
2371 map { quotify("perl", $_) }
2372 @{$target{$_}}), " ],\n";
2373 } else {
2374 print OUT " ", $_, " => ", quotify("perl", $target{$_}), ",\n"
2375 }
2376}
2377print OUT <<"EOF";
2378);
2379
96d2d7bc
RL
2380EOF
2381print OUT "our \%available_protocols = (\n";
2382print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
2383print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
2384print OUT <<"EOF";
2385);
2386
3850f8cb
RL
2387EOF
2388print OUT "our \@disablables = (\n";
2389foreach (@disablables) {
2390 print OUT " ", quotify("perl", $_), ",\n";
2391}
2392print OUT <<"EOF";
2393);
2394
96d2d7bc
RL
2395EOF
2396print OUT "our \%disabled = (\n";
2397foreach (sort keys %disabled) {
2398 print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
2399}
2400print OUT <<"EOF";
2401);
2402
291e94df 2403EOF
107b5792
RL
2404print OUT "our %withargs = (\n";
2405foreach (sort keys %withargs) {
2406 if (ref($withargs{$_}) eq "ARRAY") {
2407 print OUT " ", $_, " => [ ", join(", ",
2408 map { quotify("perl", $_) }
2409 @{$withargs{$_}}), " ],\n";
2410 } else {
2411 print OUT " ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
2412 }
2413}
2414print OUT <<"EOF";
2415);
edd4d402 2416
107b5792 2417EOF
ddf1847d 2418if ($builder eq "unified") {
9fe2bb77
RL
2419 my $recurse;
2420 $recurse = sub {
2421 my $indent = shift;
2422 foreach (@_) {
2423 if (ref $_ eq "ARRAY") {
2424 print OUT " "x$indent, "[\n";
2425 foreach (@$_) {
2426 $recurse->($indent + 4, $_);
2427 }
2428 print OUT " "x$indent, "],\n";
2429 } elsif (ref $_ eq "HASH") {
2430 my %h = %$_;
2431 print OUT " "x$indent, "{\n";
2432 foreach (sort keys %h) {
2433 if (ref $h{$_} eq "") {
2434 print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
2435 } else {
2436 print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
2437 $recurse->($indent + 8, $h{$_});
2438 }
2439 }
2440 print OUT " "x$indent, "},\n";
2441 } else {
2442 print OUT " "x$indent, quotify("perl", $_), ",\n";
2443 }
2444 }
2445 };
2446 print OUT "our %unified_info = (\n";
2447 foreach (sort keys %unified_info) {
2448 if (ref $unified_info{$_} eq "") {
2449 print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
2450 } else {
2451 print OUT " "x4, quotify("perl", $_), " =>\n";
2452 $recurse->(8, $unified_info{$_});
2453 }
2454 }
2455 print OUT <<"EOF";
2456);
2457
2458EOF
2459}
047f0292
RL
2460print OUT
2461 "# The following data is only used when this files is use as a script\n";
abe256e7 2462print OUT "my \@makevars = (\n";
b1fafff6 2463foreach (sort keys %user) {
abe256e7 2464 print OUT " '",$_,"',\n";
b1fafff6
RL
2465}
2466print OUT ");\n";
ca372414
RL
2467print OUT "my \%disabled_info = (\n";
2468foreach my $what (sort keys %disabled_info) {
2469 print OUT " '$what' => {\n";
2470 foreach my $info (sort keys %{$disabled_info{$what}}) {
2471 if (ref $disabled_info{$what}->{$info} eq 'ARRAY') {
2472 print OUT " $info => [ ",
2473 join(', ', map { "'$_'" } @{$disabled_info{$what}->{$info}}),
2474 " ],\n";
2475 } else {
2476 print OUT " $info => '", $disabled_info{$what}->{$info},
2477 "',\n";
2478 }
2479 }
2480 print OUT " },\n";
2481}
2482print OUT ");\n";
f729ba55 2483print OUT 'my @user_crossable = qw( ', join (' ', @user_crossable), " );\n";
b1fafff6 2484print OUT << 'EOF';
b1fafff6
RL
2485# If run directly, we can give some answers, and even reconfigure
2486unless (caller) {
2487 use Getopt::Long;
2488 use File::Spec::Functions;
2489 use File::Basename;
2490 use Pod::Usage;
2491
2492 my $here = dirname($0);
2493
2494 my $dump = undef;
2495 my $cmdline = undef;
ca372414 2496 my $options = undef;
50ea9d2b 2497 my $target = undef;
b1fafff6
RL
2498 my $envvars = undef;
2499 my $makevars = undef;
2500 my $buildparams = undef;
2501 my $reconf = undef;
2502 my $verbose = undef;
2503 my $help = undef;
2504 my $man = undef;
2505 GetOptions('dump|d' => \$dump,
2506 'command-line|c' => \$cmdline,
ca372414 2507 'options|o' => \$options,
50ea9d2b 2508 'target|t' => \$target,
b1fafff6
RL
2509 'environment|e' => \$envvars,
2510 'make-variables|m' => \$makevars,
2511 'build-parameters|b' => \$buildparams,
2512 'reconfigure|reconf|r' => \$reconf,
2513 'verbose|v' => \$verbose,
2514 'help' => \$help,
2515 'man' => \$man)
2516 or die "Errors in command line arguments\n";
2517
50ea9d2b 2518 unless ($dump || $cmdline || $options || $target || $envvars || $makevars
ca372414 2519 || $buildparams || $reconf || $verbose || $help || $man) {
b1fafff6
RL
2520 print STDERR <<"_____";
2521You must give at least one option.
2522For more information, do '$0 --help'
2523_____
2524 exit(2);
2525 }
2526
2527 if ($help) {
2528 pod2usage(-exitval => 0,
2529 -verbose => 1);
2530 }
2531 if ($man) {
2532 pod2usage(-exitval => 0,
2533 -verbose => 2);
2534 }
2535 if ($dump || $cmdline) {
d5fa7035 2536 print "\nCommand line (with current working directory = $here):\n\n";
b1fafff6 2537 print ' ',join(' ',
9e265322 2538 $config{PERL},
b1fafff6
RL
2539 catfile($config{sourcedir}, 'Configure'),
2540 @{$config{perlargv}}), "\n";
d5fa7035
RL
2541 print "\nPerl information:\n\n";
2542 print ' ',$config{perl_cmd},"\n";
2543 print ' ',$config{perl_version},' for ',$config{perl_archname},"\n";
b1fafff6 2544 }
ca372414
RL
2545 if ($dump || $options) {
2546 my $longest = 0;
0b80103b 2547 my $longest2 = 0;
ca372414
RL
2548 foreach my $what (@disablables) {
2549 $longest = length($what) if $longest < length($what);
1d2c6b7d
RL
2550 $longest2 = length($disabled{$what})
2551 if $disabled{$what} && $longest2 < length($disabled{$what});
ca372414
RL
2552 }
2553 print "\nEnabled features:\n\n";
2554 foreach my $what (@disablables) {
2555 print " $what\n" unless $disabled{$what};
2556 }
2557 print "\nDisabled features:\n\n";
2558 foreach my $what (@disablables) {
2559 if ($disabled{$what}) {
2560 print " $what", ' ' x ($longest - length($what) + 1),
0b80103b 2561 "[$disabled{$what}]", ' ' x ($longest2 - length($disabled{$what}) + 1);
ca372414
RL
2562 print $disabled_info{$what}->{macro}
2563 if $disabled_info{$what}->{macro};
2564 print ' (skip ',
2565 join(', ', @{$disabled_info{$what}->{skipped}}),
2566 ')'
2567 if $disabled_info{$what}->{skipped};
2568 print "\n";
2569 }
2570 }
2571 }
50ea9d2b
RL
2572 if ($dump || $target) {
2573 print "\nConfig target attributes:\n\n";
2574 foreach (sort keys %target) {
2575 next if $_ =~ m|^_| || $_ eq 'template';
2576 my $quotify = sub {
2577 map { (my $x = $_) =~ s|([\\\$\@"])|\\$1|g; "\"$x\""} @_;
2578 };
2579 print ' ', $_, ' => ';
2580 if (ref($target{$_}) eq "ARRAY") {
2581 print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n";
2582 } else {
2583 print $quotify->($target{$_}), ",\n"
2584 }
2585 }
2586 }
b1fafff6
RL
2587 if ($dump || $envvars) {
2588 print "\nRecorded environment:\n\n";
2589 foreach (sort keys %{$config{perlenv}}) {
2590 print ' ',$_,' = ',($config{perlenv}->{$_} || ''),"\n";
2591 }
2592 }
2593 if ($dump || $makevars) {
2594 print "\nMakevars:\n\n";
abe256e7 2595 foreach my $var (@makevars) {
f729ba55 2596 my $prefix = '';
abe256e7 2597 $prefix = $config{CROSS_COMPILE}
f729ba55 2598 if grep { $var eq $_ } @user_crossable;
b700bc59 2599 $prefix //= '';
f729ba55 2600 print ' ',$var,' ' x (16 - length $var),'= ',
abe256e7
RL
2601 (ref $config{$var} eq 'ARRAY'
2602 ? join(' ', @{$config{$var}})
2603 : $prefix.$config{$var}),
b1fafff6 2604 "\n"
abe256e7 2605 if defined $config{$var};
b1fafff6
RL
2606 }
2607
2608 my @buildfile = ($config{builddir}, $config{build_file});
2609 unshift @buildfile, $here
2610 unless file_name_is_absolute($config{builddir});
2611 my $buildfile = canonpath(catdir(@buildfile));
2612 print <<"_____";
2613
2614NOTE: These variables only represent the configuration view. The build file
2615template may have processed these variables further, please have a look at the
2616build file for more exact data:
2617 $buildfile
2618_____
2619 }
2620 if ($dump || $buildparams) {
2621 my @buildfile = ($config{builddir}, $config{build_file});
2622 unshift @buildfile, $here
2623 unless file_name_is_absolute($config{builddir});
2624 print "\nbuild file:\n\n";
2625 print " ", canonpath(catfile(@buildfile)),"\n";
2626
2627 print "\nbuild file templates:\n\n";
2628 foreach (@{$config{build_file_templates}}) {
2629 my @tmpl = ($_);
2630 unshift @tmpl, $here
2631 unless file_name_is_absolute($config{sourcedir});
2632 print ' ',canonpath(catfile(@tmpl)),"\n";
2633 }
2634 }
2635 if ($reconf) {
2636 if ($verbose) {
2637 print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n";
2638 foreach (sort keys %{$config{perlenv}}) {
2639 print ' ',$_,' = ',($config{perlenv}->{$_} || ""),"\n";
2640 }
2641 }
2642
2643 chdir $here;
2644 exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf';
2645 }
2646}
2647
26481;
2649
2650__END__
2651
2652=head1 NAME
2653
2654configdata.pm - configuration data for OpenSSL builds
2655
2656=head1 SYNOPSIS
2657
2658Interactive:
2659
2660 perl configdata.pm [options]
2661
2662As data bank module:
2663
2664 use configdata;
f2d4be3b 2665
b1fafff6
RL
2666=head1 DESCRIPTION
2667
2668This module can be used in two modes, interactively and as a module containing
2669all the data recorded by OpenSSL's Configure script.
2670
2671When used interactively, simply run it as any perl script, with at least one
2672option, and you will get the information you ask for. See L</OPTIONS> below.
2673
2674When loaded as a module, you get a few databanks with useful information to
2675perform build related tasks. The databanks are:
2676
2677 %config Configured things.
2678 %target The OpenSSL config target with all inheritances
2679 resolved.
2680 %disabled The features that are disabled.
2681 @disablables The list of features that can be disabled.
2682 %withargs All data given through --with-THING options.
2683 %unified_info All information that was computed from the build.info
2684 files.
2685
2686=head1 OPTIONS
2687
2688=over 4
2689
2690=item B<--help>
2691
2692Print a brief help message and exit.
2693
2694=item B<--man>
2695
2696Print the manual page and exit.
2697
85d6ad34 2698=item B<--dump> | B<-d>
b1fafff6
RL
2699
2700Print all relevant configuration data. This is equivalent to B<--command-line>
50ea9d2b
RL
2701B<--options> B<--target> B<--environment> B<--make-variables>
2702B<--build-parameters>.
b1fafff6
RL
2703
2704=item B<--command-line> | B<-c>
2705
2706Print the current configuration command line.
2707
ca372414
RL
2708=item B<--options> | B<-o>
2709
2710Print the features, both enabled and disabled, and display defined macro and
2711skipped directories where applicable.
2712
50ea9d2b
RL
2713=item B<--target> | B<-t>
2714
2715Print the config attributes for this config target.
2716
b1fafff6
RL
2717=item B<--environment> | B<-e>
2718
2719Print the environment variables and their values at the time of configuration.
2720
2721=item B<--make-variables> | B<-m>
2722
2723Print the main make variables generated in the current configuration
2724
2725=item B<--build-parameters> | B<-b>
2726
2727Print the build parameters, i.e. build file and build file templates.
2728
2729=item B<--reconfigure> | B<--reconf> | B<-r>
2730
2731Redo the configuration.
2732
2733=item B<--verbose> | B<-v>
2734
2735Verbose output.
2736
2737=back
2738
2739=cut
2740
2741EOF
2742close(OUT);
2743if ($builder_platform eq 'unix') {
2744 my $mode = (0755 & ~umask);
2745 chmod $mode, 'configdata.pm'
2746 or warn sprintf("WARNING: Couldn't change mode for 'configdata.pm' to 0%03o: %s\n",$mode,$!);
2747}
cba5068d 2748
88087414 2749my %builders = (
9fe2bb77 2750 unified => sub {
b1fafff6 2751 print 'Creating ',$target{build_file},"\n";
ddf1847d 2752 run_dofile(catfile($blddir, $target{build_file}),
1967a42e 2753 @{$config{build_file_templates}});
9fe2bb77 2754 },
88087414
RL
2755 );
2756
ddf1847d 2757$builders{$builder}->($builder_platform, @builder_opts);
fce0ba5f 2758
8937a4ed
RL
2759$SIG{__DIE__} = $orig_death_handler;
2760
9c62a279 2761print <<"EOF" if ($disabled{threads} eq "unavailable");
5f8d5c96
BM
2762
2763The library could not be configured for supporting multi-threaded
2764applications as the compiler options required on this system are not known.
ff1b7e09 2765See file INSTALL for details if you need multi-threading.
ec577822
BM
2766EOF
2767
76ffb43d 2768print <<"EOF" if ($no_shared_warn);
2964ba8c 2769
ae48242c
RL
2770The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2771platform, so we will pretend you gave the option 'no-pic', which also disables
2772'shared' and 'dynamic-engine'. If you know how to implement shared libraries
2773or position independent code, please let us know (but please first make sure
2774you have tried with a current version of OpenSSL).
2e31ef03
RS
2775EOF
2776
820e414d
RL
2777print <<"EOF";
2778
2779**********************************************************************
2780*** ***
41349b5e 2781*** OpenSSL has been successfully configured ***
820e414d 2782*** ***
41349b5e
DMSP
2783*** If you encounter a problem while building, please open an ***
2784*** issue on GitHub <https://github.com/openssl/openssl/issues> ***
2785*** and include the output from the following command: ***
2786*** ***
2787*** perl configdata.pm --dump ***
2788*** ***
2789*** (If you are new to OpenSSL, you might want to consult the ***
2790*** 'Troubleshooting' section in the INSTALL file first) ***
820e414d
RL
2791*** ***
2792**********************************************************************
2793EOF
2794
d02b48c6
RE
2795exit(0);
2796
bd5192b1
RL
2797######################################################################
2798#
2799# Helpers and utility functions
2800#
2801
8937a4ed
RL
2802# Death handler, to print a helpful message in case of failure #######
2803#
2804sub death_handler {
eb807d53 2805 die @_ if $^S; # To prevent the added message in eval blocks
8937a4ed 2806 my $build_file = $target{build_file} // "build file";
eb807d53 2807 my @message = ( <<"_____", @_ );
8937a4ed
RL
2808
2809Failure! $build_file wasn't produced.
2810Please read INSTALL and associated NOTES files. You may also have to look over
2811your available compiler tool chain or change your configuration.
2812
2813_____
eb807d53
RL
2814
2815 # Dying is terminal, so it's ok to reset the signal handler here.
2816 $SIG{__DIE__} = $orig_death_handler;
2817 die @message;
8937a4ed
RL
2818}
2819
bd5192b1
RL
2820# Configuration file reading #########################################
2821
1f2e1cd5
RL
2822# Note: All of the helper functions are for lazy evaluation. They all
2823# return a CODE ref, which will return the intended value when evaluated.
2824# Thus, whenever there's mention of a returned value, it's about that
2825# intended value.
2826
bd5192b1 2827# Helper function to implement conditional inheritance depending on the
00b0d663 2828# value of $disabled{asm}. Used in inherit_from values as follows:
bd5192b1
RL
2829#
2830# inherit_from => [ "template", asm("asm_tmpl") ]
2831#
2832sub asm {
2833 my @x = @_;
2834 sub {
00b0d663 2835 $disabled{asm} ? () : @x;
bd5192b1
RL
2836 }
2837}
2838
1f2e1cd5
RL
2839# Helper function to implement conditional value variants, with a default
2840# plus additional values based on the value of $config{build_type}.
2841# Arguments are given in hash table form:
2842#
2843# picker(default => "Basic string: ",
2844# debug => "debug",
2845# release => "release")
2846#
2847# When configuring with --debug, the resulting string will be
2848# "Basic string: debug", and when not, it will be "Basic string: release"
2849#
2850# This can be used to create variants of sets of flags according to the
2851# build type:
2852#
2853# cflags => picker(default => "-Wall",
2854# debug => "-g -O0",
2855# release => "-O3")
2856#
2857sub picker {
2858 my %opts = @_;
2859 return sub { add($opts{default} || (),
2860 $opts{$config{build_type}} || ())->(); }
2861}
2862
2863# Helper function to combine several values of different types into one.
2864# This is useful if you want to combine a string with the result of a
2865# lazy function, such as:
2866#
2867# cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2868#
2869sub combine {
2870 my @stuff = @_;
2871 return sub { add(@stuff)->(); }
2872}
2873
2874# Helper function to implement conditional values depending on the value
2875# of $disabled{threads}. Can be used as follows:
2876#
2877# cflags => combine("-Wall", threads("-pthread"))
2878#
2879sub threads {
2880 my @flags = @_;
2881 return sub { add($disabled{threads} ? () : @flags)->(); }
2882}
2883
60aa6c1a
AP
2884sub shared {
2885 my @flags = @_;
2886 return sub { add($disabled{shared} ? () : @flags)->(); }
2887}
1f2e1cd5 2888
9c62a279 2889our $add_called = 0;
88087414
RL
2890# Helper function to implement adding values to already existing configuration
2891# values. It handles elements that are ARRAYs, CODEs and scalars
2892sub _add {
2893 my $separator = shift;
2894
bcb1977b
RL
2895 # If there's any ARRAY in the collection of values OR the separator
2896 # is undef, we will return an ARRAY of combined values, otherwise a
2897 # string of joined values with $separator as the separator.
2898 my $found_array = !defined($separator);
88087414
RL
2899
2900 my @values =
2901 map {
b0b92a5b
RL
2902 my $res = $_;
2903 while (ref($res) eq "CODE") {
2904 $res = $res->();
2905 }
2906 if (defined($res)) {
2907 if (ref($res) eq "ARRAY") {
2908 $found_array = 1;
2909 @$res;
2910 } else {
2911 $res;
2912 }
88087414 2913 } else {
b0b92a5b 2914 ();
88087414
RL
2915 }
2916 } (@_);
2917
9c62a279
RL
2918 $add_called = 1;
2919
88087414
RL
2920 if ($found_array) {
2921 [ @values ];
2922 } else {
b0b92a5b 2923 join($separator, grep { defined($_) && $_ ne "" } @values);
88087414
RL
2924 }
2925}
2926sub add_before {
bdcd83e1
RL
2927 my $separator = " ";
2928 if (ref($_[$#_]) eq "HASH") {
2929 my $opts = pop;
2930 $separator = $opts->{separator};
2931 }
88087414
RL
2932 my @x = @_;
2933 sub { _add($separator, @x, @_) };
2934}
2935sub add {
bdcd83e1
RL
2936 my $separator = " ";
2937 if (ref($_[$#_]) eq "HASH") {
2938 my $opts = pop;
2939 $separator = $opts->{separator};
2940 }
88087414
RL
2941 my @x = @_;
2942 sub { _add($separator, @_, @x) };
2943}
2944
3b6c4b07
RL
2945sub read_eval_file {
2946 my $fname = shift;
2947 my $content;
2948 my @result;
2949
2950 open F, "< $fname" or die "Can't open '$fname': $!\n";
2951 {
2952 undef local $/;
2953 $content = <F>;
2954 }
2955 close F;
2956 {
2957 local $@;
2958
2959 @result = ( eval $content );
2960 warn $@ if $@;
2961 }
2962 return wantarray ? @result : $result[0];
2963}
2964
bd5192b1
RL
2965# configuration reader, evaluates the input file as a perl script and expects
2966# it to fill %targets with target configurations. Those are then added to
2967# %table.
2968sub read_config {
2969 my $fname = shift;
3b6c4b07
RL
2970 my %targets;
2971
bd5192b1 2972 {
ee9b0bbb 2973 # Protect certain tables from tampering
3b6c4b07 2974 local %table = ();
bd5192b1 2975
3b6c4b07 2976 %targets = read_eval_file($fname);
bd5192b1 2977 }
225f980d
RL
2978 my %preexisting = ();
2979 foreach (sort keys %targets) {
2980 $preexisting{$_} = 1 if $table{$_};
2981 }
2982 die <<"EOF",
2983The following config targets from $fname
2984shadow pre-existing config targets with the same name:
2985EOF
2986 map { " $_\n" } sort keys %preexisting
2987 if %preexisting;
2988
bd5192b1
RL
2989
2990 # For each target, check that it's configured with a hash table.
2991 foreach (keys %targets) {
2992 if (ref($targets{$_}) ne "HASH") {
2993 if (ref($targets{$_}) eq "") {
2994 warn "Deprecated target configuration for $_, ignoring...\n";
2995 } else {
2996 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2997 }
2998 delete $targets{$_};
ee9b0bbb
RL
2999 } else {
3000 $targets{$_}->{_conf_fname_int} = add([ $fname ]);
3001 }
bd5192b1
RL
3002 }
3003
3004 %table = (%table, %targets);
3005
3006}
3007
8483a003
F
3008# configuration resolver. Will only resolve all the lazy evaluation
3009# codeblocks for the chosen target and all those it inherits from,
bd5192b1
RL
3010# recursively
3011sub resolve_config {
3012 my $target = shift;
3013 my @breadcrumbs = @_;
3014
c4718849 3015# my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
9c62a279 3016
bd5192b1
RL
3017 if (grep { $_ eq $target } @breadcrumbs) {
3018 die "inherit_from loop! target backtrace:\n "
3019 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
3020 }
3021
3022 if (!defined($table{$target})) {
3023 warn "Warning! target $target doesn't exist!\n";
3024 return ();
3025 }
3026 # Recurse through all inheritances. They will be resolved on the
3027 # fly, so when this operation is done, they will all just be a
3028 # bunch of attributes with string values.
3029 # What we get here, though, are keys with references to lists of
3030 # the combined values of them all. We will deal with lists after
3031 # this stage is done.
3032 my %combined_inheritance = ();
3033 if ($table{$target}->{inherit_from}) {
3034 my @inherit_from =
3035 map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
3036 foreach (@inherit_from) {
3037 my %inherited_config = resolve_config($_, $target, @breadcrumbs);
3038
3039 # 'template' is a marker that's considered private to
3040 # the config that had it.
3041 delete $inherited_config{template};
3042
2110febb 3043 foreach (keys %inherited_config) {
bd5192b1
RL
3044 if (!$combined_inheritance{$_}) {
3045 $combined_inheritance{$_} = [];
3046 }
3047 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2110febb 3048 }
bd5192b1
RL
3049 }
3050 }
3051
3052 # We won't need inherit_from in this target any more, since we've
3053 # resolved all the inheritances that lead to this
3054 delete $table{$target}->{inherit_from};
3055
3056 # Now is the time to deal with those lists. Here's the place to
3057 # decide what shall be done with those lists, all based on the
3058 # values of the target we're currently dealing with.
3059 # - If a value is a coderef, it will be executed with the list of
3060 # inherited values as arguments.
3061 # - If the corresponding key doesn't have a value at all or is the
8483a003 3062 # empty string, the inherited value list will be run through the
bd5192b1
RL
3063 # default combiner (below), and the result becomes this target's
3064 # value.
3065 # - Otherwise, this target's value is assumed to be a string that
3066 # will simply override the inherited list of values.
a26d8be9 3067 my $default_combiner = add();
bd5192b1
RL
3068
3069 my %all_keys =
3070 map { $_ => 1 } (keys %combined_inheritance,
3071 keys %{$table{$target}});
b0b92a5b
RL
3072
3073 sub process_values {
3074 my $object = shift;
3075 my $inherited = shift; # Always a [ list ]
3076 my $target = shift;
3077 my $entry = shift;
3078
9c62a279
RL
3079 $add_called = 0;
3080
b0b92a5b
RL
3081 while(ref($object) eq "CODE") {
3082 $object = $object->(@$inherited);
3083 }
3084 if (!defined($object)) {
3085 return ();
3086 }
3087 elsif (ref($object) eq "ARRAY") {
9c62a279 3088 local $add_called; # To make sure recursive calls don't affect it
b0b92a5b
RL
3089 return [ map { process_values($_, $inherited, $target, $entry) }
3090 @$object ];
3091 } elsif (ref($object) eq "") {
3092 return $object;
3093 } else {
3094 die "cannot handle reference type ",ref($object)
3095 ," found in target ",$target," -> ",$entry,"\n";
3096 }
3097 }
3098
bd5192b1 3099 foreach (sort keys %all_keys) {
9c62a279 3100 my $previous = $combined_inheritance{$_};
bd5192b1
RL
3101
3102 # Current target doesn't have a value for the current key?
3103 # Assign it the default combiner, the rest of this loop body
3104 # will handle it just like any other coderef.
3105 if (!exists $table{$target}->{$_}) {
3106 $table{$target}->{$_} = $default_combiner;
3107 }
3108
b0b92a5b
RL
3109 $table{$target}->{$_} = process_values($table{$target}->{$_},
3110 $combined_inheritance{$_},
3111 $target, $_);
3112 unless(defined($table{$target}->{$_})) {
3113 delete $table{$target}->{$_};
3114 }
c4718849
RL
3115# if ($extra_checks &&
3116# $previous && !($add_called || $previous ~~ $table{$target}->{$_})) {
3117# warn "$_ got replaced in $target\n";
3118# }
bd5192b1
RL
3119 }
3120
3121 # Finally done, return the result.
3122 return %{$table{$target}};
3123}
3124
462ba4f6 3125sub usage
d02b48c6 3126 {
462ba4f6 3127 print STDERR $usage;
10a926c1 3128 print STDERR "\npick os/compiler from:\n";
1641cb60 3129 my $j=0;
6457ad15 3130 my $i;
10a926c1 3131 my $k=0;
6457ad15 3132 foreach $i (sort keys %table)
d02b48c6 3133 {
bd5192b1 3134 next if $table{$i}->{template};
462ba4f6 3135 next if $i =~ /^debug/;
10a926c1
UM
3136 $k += length($i) + 1;
3137 if ($k > 78)
3138 {
3139 print STDERR "\n";
3140 $k=length($i);
3141 }
3142 print STDERR $i . " ";
462ba4f6
UM
3143 }
3144 foreach $i (sort keys %table)
3145 {
bd5192b1 3146 next if $table{$i}->{template};
462ba4f6 3147 next if $i !~ /^debug/;
10a926c1
UM
3148 $k += length($i) + 1;
3149 if ($k > 78)
3150 {
3151 print STDERR "\n";
3152 $k=length($i);
3153 }
3154 print STDERR $i . " ";
d02b48c6 3155 }
10a926c1 3156 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 3157 exit(1);
d02b48c6
RE
3158 }
3159
01d99976 3160sub run_dofile
107b5792 3161{
107b5792 3162 my $out = shift;
9fe2bb77 3163 my @templates = @_;
107b5792 3164
ced2c2c5
RS
3165 unlink $out || warn "Can't remove $out, $!"
3166 if -f $out;
9fe2bb77
RL
3167 foreach (@templates) {
3168 die "Can't open $_, $!" unless -f $_;
3169 }
9e265322 3170 my $perlcmd = (quotify("maybeshell", $config{PERL}))[0];
f879d5ff 3171 my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
9fe2bb77
RL
3172 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
3173 system($cmd);
107b5792
RL
3174 exit 1 if $? != 0;
3175 rename("$out.new", $out) || die "Can't rename $out.new, $!";
3176}
3177
6d75a83c
RL
3178sub compiler_predefined {
3179 state %predefined;
41d6e0f3 3180 my $cc = shift;
6d75a83c
RL
3181
3182 return () if $^O eq 'VMS';
3183
41d6e0f3
AP
3184 die 'compiler_predefined called without a compiler command'
3185 unless $cc;
6d75a83c 3186
41d6e0f3 3187 if (! $predefined{$cc}) {
6d75a83c 3188
41d6e0f3 3189 $predefined{$cc} = {};
6d75a83c
RL
3190
3191 # collect compiler pre-defines from gcc or gcc-alike...
3192 open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
3193 while (my $l = <PIPE>) {
3194 $l =~ m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
41d6e0f3 3195 $predefined{$cc}->{$1} = $2 // '';
6d75a83c
RL
3196 }
3197 close(PIPE);
3198 }
3199
41d6e0f3 3200 return %{$predefined{$cc}};
6d75a83c
RL
3201}
3202
656bbdc6
AP
3203sub which
3204{
3205 my ($name)=@_;
3206
3207 if (eval { require IPC::Cmd; 1; }) {
3208 IPC::Cmd->import();
3209 return scalar IPC::Cmd::can_run($name);
3210 } else {
3211 # if there is $directories component in splitpath,
3212 # then it's not something to test with $PATH...
3213 return $name if (File::Spec->splitpath($name))[1];
3214
3215 foreach (File::Spec->path()) {
3216 my $fullpath = catfile($_, "$name$target{exe_extension}");
3217 if (-f $fullpath and -x $fullpath) {
3218 return $fullpath;
3219 }
3220 }
3221 }
3222}
3223
7ecdf18d
RL
3224sub env
3225{
3226 my $name = shift;
ac6ae8a9 3227 my %opts = @_;
7ecdf18d 3228
ac6ae8a9
RL
3229 unless ($opts{cacheonly}) {
3230 # Note that if $ENV{$name} doesn't exist or is undefined,
3231 # $config{perlenv}->{$name} will be created with the value
3232 # undef. This is intentional.
89bea083 3233
ac6ae8a9
RL
3234 $config{perlenv}->{$name} = $ENV{$name}
3235 if ! exists $config{perlenv}->{$name};
3236 }
7ecdf18d
RL
3237 return $config{perlenv}->{$name};
3238}
3239
00ae96ca
RL
3240# Configuration printer ##############################################
3241
3242sub print_table_entry
3243{
f770d75b
AP
3244 local $now_printing = shift;
3245 my %target = resolve_config($now_printing);
00ae96ca
RL
3246 my $type = shift;
3247
3248 # Don't print the templates
3249 return if $target{template};
3250
3251 my @sequence = (
f0bd4686 3252 "sys_id",
8c3bc594
RL
3253 "cpp",
3254 "cppflags",
3255 "defines",
3256 "includes",
00ae96ca
RL
3257 "cc",
3258 "cflags",
f0bd4686
RL
3259 "unistd",
3260 "ld",
00ae96ca 3261 "lflags",
0c0d78b8 3262 "loutflag",
1740c162 3263 "ex_libs",
00ae96ca 3264 "bn_ops",
0c0d78b8
RL
3265 "apps_aux_src",
3266 "cpuid_asm_src",
3267 "uplink_aux_src",
3268 "bn_asm_src",
3269 "ec_asm_src",
3270 "des_asm_src",
3271 "aes_asm_src",
3272 "bf_asm_src",
3273 "md5_asm_src",
3274 "cast_asm_src",
3275 "sha1_asm_src",
3276 "rc4_asm_src",
3277 "rmd160_asm_src",
3278 "rc5_asm_src",
3279 "wp_asm_src",
3280 "cmll_asm_src",
3281 "modes_asm_src",
3282 "padlock_asm_src",
3283 "chacha_asm_src",
3284 "poly1035_asm_src",
9c62a279 3285 "thread_scheme",
00ae96ca
RL
3286 "perlasm_scheme",
3287 "dso_scheme",
3288 "shared_target",
3289 "shared_cflag",
0c0d78b8 3290 "shared_defines",
00ae96ca 3291 "shared_ldflag",
64c443e3 3292 "shared_rcflag",
00ae96ca 3293 "shared_extension",
e987f9f2 3294 "dso_extension",
f0bd4686
RL
3295 "obj_extension",
3296 "exe_extension",
00ae96ca 3297 "ranlib",
f0bd4686 3298 "ar",
00ae96ca 3299 "arflags",
0c0d78b8
RL
3300 "aroutflag",
3301 "rc",
3302 "rcflags",
3303 "rcoutflag",
3304 "mt",
3305 "mtflags",
3306 "mtinflag",
3307 "mtoutflag",
00ae96ca 3308 "multilib",
f0bd4686 3309 "build_scheme",
00ae96ca
RL
3310 );
3311
3312 if ($type eq "TABLE") {
3313 print "\n";
f770d75b 3314 print "*** $now_printing\n";
cb212f23
RL
3315 foreach (@sequence) {
3316 if (ref($target{$_}) eq "ARRAY") {
3317 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
3318 } else {
3319 printf "\$%-12s = %s\n", $_, $target{$_};
3320 }
3321 }
00ae96ca
RL
3322 } elsif ($type eq "HASH") {
3323 my $largest =
3324 length((sort { length($a) <=> length($b) } @sequence)[-1]);
f770d75b 3325 print " '$now_printing' => {\n";
00ae96ca
RL
3326 foreach (@sequence) {
3327 if ($target{$_}) {
cb212f23
RL
3328 if (ref($target{$_}) eq "ARRAY") {
3329 print " '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
3330 } else {
3331 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
3332 }
00ae96ca
RL
3333 }
3334 }
3335 print " },\n";
3336 }
3337}
3338
3339# Utility routines ###################################################
3340
2e963849
RL
3341# On VMS, if the given file is a logical name, File::Spec::Functions
3342# will consider it an absolute path. There are cases when we want a
3343# purely syntactic check without checking the environment.
3344sub isabsolute {
3345 my $file = shift;
3346
3347 # On non-platforms, we just use file_name_is_absolute().
3348 return file_name_is_absolute($file) unless $^O eq "VMS";
3349
69687aa8 3350 # If the file spec includes a device or a directory spec,
2e963849
RL
3351 # file_name_is_absolute() is perfectly safe.
3352 return file_name_is_absolute($file) if $file =~ m|[:\[]|;
3353
3354 # Here, we know the given file spec isn't absolute
3355 return 0;
3356}
3357
ec182ef0
RL
3358# Makes a directory absolute and cleans out /../ in paths like foo/../bar
3359# On some platforms, this uses rel2abs(), while on others, realpath() is used.
3360# realpath() requires that at least all path components except the last is an
3361# existing directory. On VMS, the last component of the directory spec must
3362# exist.
3363sub absolutedir {
3364 my $dir = shift;
3365
3366 # realpath() is quite buggy on VMS. It uses LIB$FID_TO_NAME, which
3367 # will return the volume name for the device, no matter what. Also,
3368 # it will return an incorrect directory spec if the argument is a
3369 # directory that doesn't exist.
3370 if ($^O eq "VMS") {
3371 return rel2abs($dir);
3372 }
3373
3374 # We use realpath() on Unix, since no other will properly clean out
3375 # a directory spec.
3376 use Cwd qw/realpath/;
3377
3378 return realpath($dir);
3379}
3380
fe05264e
RL
3381sub quotify {
3382 my %processors = (
3383 perl => sub { my $x = shift;
3384 $x =~ s/([\\\$\@"])/\\$1/g;
3385 return '"'.$x.'"'; },
f879d5ff
RL
3386 maybeshell => sub { my $x = shift;
3387 (my $y = $x) =~ s/([\\\"])/\\$1/g;
3388 if ($x ne $y || $x =~ m|\s|) {
3389 return '"'.$y.'"';
3390 } else {
3391 return $x;
3392 }
3393 },
fe05264e
RL
3394 );
3395 my $for = shift;
3396 my $processor =
3397 defined($processors{$for}) ? $processors{$for} : sub { shift; };
3398
2110febb 3399 return map { $processor->($_); } @_;
fe05264e 3400}
107b5792 3401
9fe2bb77
RL
3402# collect_from_file($filename, $line_concat_cond_re, $line_concat)
3403# $filename is a file name to read from
3404# $line_concat_cond_re is a regexp detecting a line continuation ending
3405# $line_concat is a CODEref that takes care of concatenating two lines
3406sub collect_from_file {
3407 my $filename = shift;
3408 my $line_concat_cond_re = shift;
3409 my $line_concat = shift;
3410
3411 open my $fh, $filename || die "unable to read $filename: $!\n";
3412 return sub {
3413 my $saved_line = "";
3414 $_ = "";
3415 while (<$fh>) {
04f171c0 3416 s|\R$||;
9fe2bb77
RL
3417 if (defined $line_concat) {
3418 $_ = $line_concat->($saved_line, $_);
3419 $saved_line = "";
3420 }
3421 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3422 $saved_line = $_;
3423 next;
3424 }
3425 return $_;
3426 }
3427 die "$filename ending with continuation line\n" if $_;
3428 close $fh;
3429 return undef;
3430 }
3431}
3432
3433# collect_from_array($array, $line_concat_cond_re, $line_concat)
3434# $array is an ARRAYref of lines
3435# $line_concat_cond_re is a regexp detecting a line continuation ending
3436# $line_concat is a CODEref that takes care of concatenating two lines
3437sub collect_from_array {
3438 my $array = shift;
3439 my $line_concat_cond_re = shift;
3440 my $line_concat = shift;
3441 my @array = (@$array);
3442
3443 return sub {
3444 my $saved_line = "";
3445 $_ = "";
3446 while (defined($_ = shift @array)) {
04f171c0 3447 s|\R$||;
9fe2bb77
RL
3448 if (defined $line_concat) {
3449 $_ = $line_concat->($saved_line, $_);
3450 $saved_line = "";
3451 }
3452 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
3453 $saved_line = $_;
3454 next;
3455 }
3456 return $_;
3457 }
3458 die "input text ending with continuation line\n" if $_;
3459 return undef;
3460 }
3461}
3462
3463# collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
3464# $lineiterator is a CODEref that delivers one line at a time.
107b5792
RL
3465# All following arguments are regex/CODEref pairs, where the regexp detects a
3466# line and the CODEref does something with the result of the regexp.
3467sub collect_information {
9fe2bb77 3468 my $lineiterator = shift;
107b5792
RL
3469 my %collectors = @_;
3470
9fe2bb77 3471 while(defined($_ = $lineiterator->())) {
04f171c0 3472 s|\R$||;
9fe2bb77 3473 my $found = 0;
2b6b606c
RL
3474 if ($collectors{"BEFORE"}) {
3475 $collectors{"BEFORE"}->($_);
3476 }
9fe2bb77 3477 foreach my $re (keys %collectors) {
2b6b606c 3478 if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
9fe2bb77
RL
3479 $collectors{$re}->($lineiterator);
3480 $found = 1;
3481 };
3482 }
3483 if ($collectors{"OTHERWISE"}) {
3484 $collectors{"OTHERWISE"}->($lineiterator, $_)
3485 unless $found || !defined $collectors{"OTHERWISE"};
3486 }
2b6b606c
RL
3487 if ($collectors{"AFTER"}) {
3488 $collectors{"AFTER"}->($_);
3489 }
107b5792 3490 }
107b5792 3491}
ce959812
RL
3492
3493# tokenize($line)
5d3af259 3494# tokenize($line,$separator)
ce959812 3495# $line is a line of text to split up into tokens
5d3af259
RL
3496# $separator [optional] is a regular expression that separates the tokens,
3497# the default being spaces. Do not use quotes of any kind as separators,
3498# that will give undefined results.
3499# Returns a list of tokens.
ce959812 3500#
5d3af259
RL
3501# Tokens are divided by separator (spaces by default). If the tokens include
3502# the separators, they have to be quoted with single or double quotes.
3503# Double quotes inside a double quoted token must be escaped. Escaping is done
ce959812
RL
3504# with backslash.
3505# Basically, the same quoting rules apply for " and ' as in any
3506# Unix shell.
3507sub tokenize {
3508 my $line = my $debug_line = shift;
5d3af259 3509 my $separator = shift // qr|\s+|;
ce959812
RL
3510 my @result = ();
3511
5d3af259
RL
3512 if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
3513 print STDERR "DEBUG[tokenize]: \$separator = $separator\n";
3514 }
3515
3516 while ($line =~ s|^${separator}||, $line ne "") {
ce959812 3517 my $token = "";
5d3af259
RL
3518 again:
3519 $line =~ m/^(.*?)(${separator}|"|'|$)/;
3520 $token .= $1;
3521 $line = $2.$';
3522
3523 if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
3524 $token .= $1;
3525 $line = $';
3526 goto again;
3527 } elsif ($line =~ m/^'([^']*)'/) {
3528 $token .= $1;
3529 $line = $';
3530 goto again;
ce959812
RL
3531 }
3532 push @result, $token;
3533 }
3534
3535 if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
5d3af259
RL
3536 print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
3537 print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
ce959812
RL
3538 }
3539 return @result;
3540}