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