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