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