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