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