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