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