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