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