]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
Integrate ossl_shim into the build
[thirdparty/openssl.git] / Configure
CommitLineData
de17db91 1#! /usr/bin/env perl
f4d8f037 2# -*- mode: perl; -*-
ac3d0e13
RS
3# Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
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
9f519add 12require 5.10.0;
1641cb60 13use strict;
141d7325 14use Config;
f09e7ca9 15use File::Basename;
85152ca4 16use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
dca99383 17use File::Path qw/mkpath/;
23049aa5 18use if $^O ne "VMS", 'File::Glob' => qw/glob/;
1641cb60 19
22a4f969 20# see INSTALL for instructions.
462ba4f6 21
e4ef2e25 22my $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 23
434c5dd3 24# Options:
e5f3045f 25#
f09e7ca9
RS
26# --config add the given configuration file, which will be read after
27# any "Configurations*" files that are found in the same
28# directory as this script.
d74dfafd
RL
29# --prefix prefix for the OpenSSL installation, which includes the
30# directories bin, lib, include, share/man, share/doc/openssl
31# This becomes the value of INSTALLTOP in Makefile
32# (Default: /usr/local)
33# --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys.
34# If it's a relative directory, it will be added on the directory
35# given with --prefix.
36# This becomes the value of OPENSSLDIR in Makefile and in C.
37# (Default: PREFIX/ssl)
e5f3045f 38#
cbfb39d1
AP
39# --cross-compile-prefix Add specified prefix to binutils components.
40#
98186eb4
VD
41# --api One of 0.9.8, 1.0.0 or 1.1.0. Do not compile support for
42# interfaces deprecated as of the specified OpenSSL version.
43#
5270e702
RL
44# no-hw-xxx do not compile support for specific crypto hardware.
45# Generic OpenSSL-style methods relating to this support
46# are always compiled but return NULL if the hardware
47# support isn't compiled.
48# no-hw do not compile support for any crypto hardware.
5f8d5c96
BM
49# [no-]threads [don't] try to create a library that is suitable for
50# multithreaded applications (default is "threads" if we
51# know how to do it)
fcc6a1c4 52# [no-]shared [don't] try to create shared libraries when supported.
ae48242c 53# [no-]pic [don't] try to build position independent code when supported.
45b71abe 54# If disabled, it also disables shared and dynamic-engine.
a723979d 55# no-asm do not use assembler
bc2aadad
GT
56# no-dso do not compile in any native shared-library methods. This
57# will ensure that all methods just return NULL.
0423f812 58# no-egd do not compile support for the entropy-gathering daemon APIs
e452de9d
RL
59# [no-]zlib [don't] compile support for zlib compression.
60# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
61# library and will be loaded in run-time by the OpenSSL library.
7e159e01 62# sctp include SCTP support
22a4f969 63# 386 generate 80386 code
8b1a5af3
MC
64# enable-weak-ssl-ciphers
65# Enable weak ciphers that are disabled by default. This currently
66# only includes RC4 based ciphers.
d0590fe6 67# no-sse2 disables IA-32 SSE2 code, above option implies no-sse2
79df9d62 68# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
fce0ba5f 69# -<xxx> +<xxx> compiler options are passed through
047d97af
AP
70# -static while -static is also a pass-through compiler option (and
71# as such is limited to environments where it's actually
72# meaningful), it triggers a number configuration options,
73# namely no-dso, no-pic, no-shared and no-threads. It is
74# argued that the only reason to produce statically linked
75# binaries (and in context it means executables linked with
76# -static flag, and not just executables linked with static
77# libcrypto.a) is to eliminate dependency on specific run-time,
78# a.k.a. libc version. The mentioned config options are meant
79# to achieve just that. Unfortunately on Linux it's impossible
80# to eliminate the dependency completely for openssl executable
81# because of getaddrinfo and gethostbyname calls, which can
82# invoke dynamically loadable library facility anyway to meet
83# the lookup requests. For this reason on Linux statically
84# linked openssl executable has rather debugging value than
85# production quality.
e41c8d6a
GT
86#
87# DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
88# provided to stack calls. Generates unique stack functions for
89# each possible stack type.
d02b48c6 90# BN_LLONG use the type 'long long' in crypto/bn/bn.h
d02b48c6 91# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
d0590fe6
AP
92# Following are set automatically by this script
93#
8483a003
F
94# MD5_ASM use some extra md5 assembler,
95# SHA1_ASM use some extra sha1 assembler, must define L_ENDIAN for x86
96# RMD160_ASM use some extra ripemd160 assembler,
d0590fe6
AP
97# SHA256_ASM sha256_block is implemented in assembler
98# SHA512_ASM sha512_block is implemented in assembler
28bd8e94 99# AES_ASM AES_[en|de]crypt is implemented in assembler
d02b48c6 100
363bd0b4 101# Minimum warning options... any contributions to OpenSSL should at least get
fce0ba5f 102# past these.
363bd0b4 103
463a7b8c
AP
104# DEBUG_UNUSED enables __owur (warn unused result) checks.
105my $gcc_devteam_warn = "-DDEBUG_UNUSED"
106 # -DPEDANTIC complements -pedantic and is meant to mask code that
f430ba31 107 # is not strictly standard-compliant and/or implementation-specific,
463a7b8c
AP
108 # e.g. inline assembly, disregards to alignment requirements, such
109 # that -pedantic would complain about. Incidentally -DPEDANTIC has
110 # to be used even in sanitized builds, because sanitizer too is
111 # supposed to and does take notice of non-standard behaviour. Then
112 # -pedantic with pre-C9x compiler would also complain about 'long
113 # long' not being supported. As 64-bit algorithms are common now,
114 # it grew impossible to resolve this without sizeable additional
115 # code, so we just tell compiler to be pedantic about everything
116 # but 'long long' type.
f3b3d7f0 117 . " -Wswitch"
463a7b8c 118 . " -DPEDANTIC -pedantic -Wno-long-long"
8bccbce5 119 . " -Wall"
8bccbce5
RS
120 . " -Wsign-compare"
121 . " -Wmissing-prototypes"
122 . " -Wshadow"
123 . " -Wformat"
124 . " -Wtype-limits"
125 . " -Werror"
126 ;
363bd0b4 127
190c8c60
BL
128# These are used in addition to $gcc_devteam_warn when the compiler is clang.
129# TODO(openssl-team): fix problems and investigate if (at least) the
480405e4 130# following warnings can also be enabled:
8bccbce5
RS
131# -Wcast-align
132# -Wunreachable-code
a773b52a
RS
133# -Wlanguage-extension-token -- no, we use asm()
134# -Wunused-macros -- no, too tricky for BN and _XOPEN_SOURCE etc
135# -Wextended-offsetof -- no, needed in CMS ASN1 code
8bccbce5
RS
136my $clang_devteam_warn = ""
137 . " -Qunused-arguments"
138 . " -Wextra"
f3b3d7f0 139 . " -Wswitch -Wswitch-default"
8bccbce5
RS
140 . " -Wno-unused-parameter"
141 . " -Wno-missing-field-initializers"
142 . " -Wno-language-extension-token"
143 . " -Wno-extended-offsetof"
144 . " -Wconditional-uninitialized"
145 . " -Wincompatible-pointer-types-discards-qualifiers"
146 . " -Wmissing-variable-declarations"
147 ;
cb2bc054 148
ef8ca6bd
RL
149# This adds backtrace information to the memory leak info. Is only used
150# when crypto-mdebug-backtrace is enabled.
151my $memleak_devteam_backtrace = "-rdynamic";
a1d3f3d1 152
0c28f277
DSH
153my $strict_warnings = 0;
154
b7efa56a 155# As for $BSDthreads. Idea is to maintain "collective" set of flags,
fce0ba5f 156# which would cover all BSD flavors. -pthread applies to them all,
b7efa56a
AP
157# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
158# -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
159# which has to be accompanied by explicit -D_THREAD_SAFE and
160# sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
161# seems to be sufficient?
9c62a279 162our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
d02b48c6 163
98186eb4 164#
f430ba31 165# API compatibility name to version number mapping.
98186eb4
VD
166#
167my $maxapi = "1.1.0"; # API for "no-deprecated" builds
168my $apitable = {
169 "1.1.0" => "0x10100000L",
170 "1.0.0" => "0x10000000L",
171 "0.9.8" => "0x00908000L",
172};
173
9e0724a1 174our %table = ();
291e94df 175our %config = ();
98fdbce0 176our %withargs = ();
3e83e686 177
bd5192b1 178# Forward declarations ###############################################
7ead0c89 179
bd5192b1
RL
180# read_config(filename)
181#
182# Reads a configuration file and populates %table with the contents
183# (which the configuration file places in %targets).
184sub read_config;
7d46b942 185
bd5192b1
RL
186# resolve_config(target)
187#
8483a003 188# Resolves all the late evaluations, inheritances and so on for the
bd5192b1
RL
189# chosen target and any target it inherits from.
190sub resolve_config;
7d46b942 191
15c7adb0 192
107b5792
RL
193# Information collection #############################################
194
9fe2bb77 195# Unified build supports separate build dir
ec182ef0
RL
196my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
197my $blddir = catdir(absolutedir(".")); # catdir ensures local syntax
9fe2bb77
RL
198my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
199
b5293d4c
RL
200my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR';
201
9fe2bb77
RL
202$config{sourcedir} = abs2rel($srcdir);
203$config{builddir} = abs2rel($blddir);
204
ee4cdb7f
RL
205# Collect reconfiguration information if needed
206my @argvcopy=@ARGV;
207
208if (grep /^reconf(igure)?$/, @argvcopy) {
209 if (-f "./configdata.pm") {
210 my $file = "./configdata.pm";
211 unless (my $return = do $file) {
212 die "couldn't parse $file: $@" if $@;
213 die "couldn't do $file: $!" unless defined $return;
214 die "couldn't run $file" unless $return;
215 }
216
217 @argvcopy = defined($configdata::config{perlargv}) ?
218 @{$configdata::config{perlargv}} : ();
219 die "Incorrect data to reconfigure, please do a normal configuration\n"
220 if (grep(/^reconf/,@argvcopy));
221 $ENV{CROSS_COMPILE} = $configdata::config{cross_compile_prefix}
222 if defined($configdata::config{cross_compile_prefix});
223 $ENV{CC} = $configdata::config{cc}
224 if defined($configdata::config{cc});
ea241958
RL
225 $ENV{CXX} = $configdata::config{cxx}
226 if defined($configdata::config{cxx});
ee4cdb7f
RL
227 $ENV{BUILDFILE} = $configdata::config{build_file}
228 if defined($configdata::config{build_file});
229 $ENV{$local_config_envname} = $configdata::config{local_config_dir}
230 if defined($configdata::config{local_config_dir});
231
232 print "Reconfiguring with: ", join(" ",@argvcopy), "\n";
233 print " CROSS_COMPILE = ",$ENV{CROSS_COMPILE},"\n"
234 if $ENV{CROSS_COMPILE};
235 print " CC = ",$ENV{CC},"\n" if $ENV{CC};
ea241958 236 print " CXX = ",$ENV{CXX},"\n" if $ENV{CXX};
ee4cdb7f
RL
237 print " BUILDFILE = ",$ENV{BUILDFILE},"\n" if $ENV{BUILDFILE};
238 print " $local_config_envname = ",$ENV{$local_config_envname},"\n"
239 if $ENV{$local_config_envname};
240 } else {
241 die "Insufficient data to reconfigure, please do a normal configuration\n";
242 }
243}
244
245$config{perlargv} = [ @argvcopy ];
246
107b5792
RL
247# Collect version numbers
248$config{version} = "unknown";
249$config{version_num} = "unknown";
250$config{shlib_version_number} = "unknown";
251$config{shlib_version_history} = "unknown";
252
253collect_information(
9fe2bb77 254 collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
107b5792
RL
255 qr/OPENSSL.VERSION.TEXT.*OpenSSL (\S+) / => sub { $config{version} = $1; },
256 qr/OPENSSL.VERSION.NUMBER.*(0x\S+)/ => sub { $config{version_num}=$1 },
257 qr/SHLIB_VERSION_NUMBER *"([^"]+)"/ => sub { $config{shlib_version_number}=$1 },
258 qr/SHLIB_VERSION_HISTORY *"([^"]*)"/ => sub { $config{shlib_version_history}=$1 }
259 );
260if ($config{shlib_version_history} ne "") { $config{shlib_version_history} .= ":"; }
261
262($config{major}, $config{minor})
263 = ($config{version} =~ /^([0-9]+)\.([0-9\.]+)/);
264($config{shlib_major}, $config{shlib_minor})
265 = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/);
266die "erroneous version information in opensslv.h: ",
267 "$config{major}, $config{minor}, $config{shlib_major}, $config{shlib_minor}\n"
268 if ($config{major} eq "" || $config{minor} eq ""
269 || $config{shlib_major} eq "" || $config{shlib_minor} eq "");
270
271# Collect target configurations
272
85152ca4 273my $pattern = catfile(dirname($0), "Configurations", "*.conf");
97855556 274foreach (sort glob($pattern)) {
f09e7ca9
RS
275 &read_config($_);
276}
d02b48c6 277
b5293d4c
RL
278if (defined $ENV{$local_config_envname}) {
279 if ($^O eq 'VMS') {
280 # VMS environment variables are logical names,
281 # which can be used as is
282 $pattern = $local_config_envname . ':' . '*.conf';
283 } else {
284 $pattern = catfile($ENV{$local_config_envname}, '*.conf');
285 }
286
97855556 287 foreach (sort glob($pattern)) {
b5293d4c
RL
288 &read_config($_);
289 }
290}
291
291e94df 292
35a498e4 293print "Configuring OpenSSL version $config{version} ($config{version_num})\n";
107b5792 294
291e94df
RL
295$config{prefix}="";
296$config{openssldir}="";
7d130f68 297$config{processor}="";
107b5792 298$config{libdir}="";
642a6138 299$config{cross_compile_prefix}="";
107b5792 300$config{fipslibdir}="/usr/local/ssl/fips-2.0/lib/";
1ab2f7f1 301my $nofipscanistercheck=0;
107b5792 302$config{baseaddr}="0xFB00000";
9c62a279 303my $auto_threads=1; # enable threads automatically? true by default
0396479d 304my $default_ranlib;
107b5792
RL
305$config{fips}=0;
306
307# Top level directories to build
342a1a23 308$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ];
107b5792
RL
309# crypto/ subdirectories to build
310$config{sdirs} = [
311 "objects",
2d0b4412 312 "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2",
107b5792
RL
313 "des", "aes", "rc2", "rc4", "rc5", "idea", "bf", "cast", "camellia", "seed", "chacha", "modes",
314 "bn", "ec", "rsa", "dsa", "dh", "dso", "engine",
315 "buffer", "bio", "stack", "lhash", "rand", "err",
316 "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "comp", "ocsp", "ui",
dba31777 317 "cms", "ts", "srp", "cmac", "ct", "async", "kdf"
107b5792 318 ];
cfa76979
RL
319# test/ subdirectories to build
320$config{tdirs} = [ "ossl_shim" ];
99aab161 321
6b01bed2 322# Known TLS and DTLS protocols
84a68336 323my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);
6b01bed2
VD
324my @dtls = qw(dtls1 dtls1_2);
325
8483a003 326# Explicitly known options that are possible to disable. They can
8b527be2
RL
327# be regexps, and will be used like this: /^no-${option}$/
328# For developers: keep it sorted alphabetically
329
330my @disablables = (
c91a0a83 331 "afalgeng",
c38bb727 332 "asan",
8b527be2 333 "asm",
52739e40 334 "async",
b184e3ef 335 "autoalginit",
498abff0 336 "autoerrinit",
8b527be2 337 "bf",
2d0b4412 338 "blake2",
8b527be2
RL
339 "camellia",
340 "capieng",
341 "cast",
48f14845 342 "chacha",
8b527be2
RL
343 "cmac",
344 "cms",
345 "comp",
3e45d393 346 "crypto-mdebug",
ef8ca6bd 347 "crypto-mdebug-backtrace",
8b527be2
RL
348 "ct",
349 "deprecated",
350 "des",
351 "dgram",
352 "dh",
353 "dsa",
354 "dso",
a5ecdc6a 355 "dtls",
343ec2b0 356 "dynamic-engine",
8b527be2
RL
357 "ec",
358 "ec2m",
6b01bed2
VD
359 "ecdh",
360 "ecdsa",
8b527be2 361 "ec_nistp_64_gcc_128",
b31feae6 362 "egd",
8b527be2 363 "engine",
1288f26f 364 "err",
02f7114a 365 "filenames",
f59d0131
KR
366 "fuzz-libfuzzer",
367 "fuzz-afl",
168c3b73 368 "gost",
8b527be2 369 "heartbeats",
8b527be2
RL
370 "hw(-.+)?",
371 "idea",
09aa263a 372 "makedepend",
8b527be2
RL
373 "md2",
374 "md4",
8b527be2 375 "mdc2",
29df3061 376 "msan",
fa22f98f 377 "multiblock",
8b527be2
RL
378 "nextprotoneg",
379 "ocb",
380 "ocsp",
ae48242c 381 "pic",
48f14845 382 "poly1305",
8b527be2
RL
383 "posix-io",
384 "psk",
385 "rc2",
386 "rc4",
387 "rc5",
388 "rdrand",
389 "rfc3779",
8b527be2 390 "rmd160",
8b527be2 391 "scrypt",
8b527be2
RL
392 "sctp",
393 "seed",
8b527be2
RL
394 "shared",
395 "sock",
396 "srp",
397 "srtp",
398 "sse2",
399 "ssl",
8b527be2
RL
400 "ssl-trace",
401 "static-engine",
402 "stdio",
8b527be2
RL
403 "threads",
404 "tls",
1288f26f 405 "ts",
c38bb727 406 "ubsan",
1288f26f 407 "ui",
8b527be2
RL
408 "unit-test",
409 "whirlpool",
8b1a5af3 410 "weak-ssl-ciphers",
8b527be2
RL
411 "zlib",
412 "zlib-dynamic",
413 );
6b01bed2
VD
414foreach my $proto ((@tls, @dtls))
415 {
416 push(@disablables, $proto);
417 push(@disablables, "$proto-method");
418 }
8b527be2 419
2b1343b9
MC
420my %deprecated_disablables = (
421 "ssl2" => undef,
422 "buf-freelists" => undef,
423 "ripemd" => "rmd160"
e80381e1
RL
424 );
425
c9a112f5
BM
426# All of the following is disabled by default (RC5 was enabled before 0.9.8):
427
9e04edf2 428our %disabled = ( # "what" => "comment"
c38bb727 429 "asan" => "default",
a9c27fe1
BK
430 "crypto-mdebug" => "default",
431 "crypto-mdebug-backtrace" => "default",
9e04edf2 432 "ec_nistp_64_gcc_128" => "default",
8b1a5af3 433 "egd" => "default",
f59d0131
KR
434 "fuzz-libfuzzer" => "default",
435 "fuzz-afl" => "default",
a9c27fe1 436 "heartbeats" => "default",
8b1a5af3 437 "md2" => "default",
29df3061 438 "msan" => "default",
8b1a5af3
MC
439 "rc5" => "default",
440 "sctp" => "default",
8b1a5af3 441 "ssl-trace" => "default",
9829b5ab
KR
442 "ssl3" => "default",
443 "ssl3-method" => "default",
c38bb727 444 "ubsan" => "default",
84a68336
MC
445 #TODO(TLS1.3): Temporarily disabled while this is a WIP
446 "tls1_3" => "default",
8b1a5af3
MC
447 "unit-test" => "default",
448 "weak-ssl-ciphers" => "default",
449 "zlib" => "default",
450 "zlib-dynamic" => "default",
9e04edf2 451 );
c9a112f5 452
c569e206
RL
453# Note: => pair form used for aesthetics, not to truly make a hash table
454my @disable_cascades = (
455 # "what" => [ "cascade", ... ]
7d130f68 456 sub { $config{processor} eq "386" }
c569e206
RL
457 => [ "sse2" ],
458 "ssl" => [ "ssl3" ],
459 "ssl3-method" => [ "ssl3" ],
460 "zlib" => [ "zlib-dynamic" ],
c569e206 461 "des" => [ "mdc2" ],
9e4d6fbf 462 "ec" => [ "ecdsa", "ecdh" ],
c569e206 463
3fd4d211 464 "dgram" => [ "dtls", "sctp" ],
505f74ca 465 "sock" => [ "dgram" ],
c569e206
RL
466 "dtls" => [ @dtls ],
467
468 # SSL 3.0, (D)TLS 1.0 and TLS 1.1 require MD5 and SHA
469 "md5" => [ "ssl", "tls1", "tls1_1", "dtls1" ],
470 "sha" => [ "ssl", "tls1", "tls1_1", "dtls1" ],
471
472 # Additionally, SSL 3.0 requires either RSA or DSA+DH
473 sub { $disabled{rsa}
474 && ($disabled{dsa} || $disabled{dh}); }
475 => [ "ssl" ],
476
477 # (D)TLS 1.0 and TLS 1.1 also require either RSA or DSA+DH
478 # or ECDSA + ECDH. (D)TLS 1.2 has this requirement as well.
479 # (XXX: We don't support PSK-only builds).
480 sub { $disabled{rsa}
481 && ($disabled{dsa} || $disabled{dh})
482 && ($disabled{ecdsa} || $disabled{ecdh}); }
84a68336 483 => [ "tls1", "tls1_1", "tls1_2", "tls1_3",
c569e206
RL
484 "dtls1", "dtls1_2" ],
485
486 "tls" => [ @tls ],
487
488 # SRP and HEARTBEATS require TLSEXT
489 "tlsext" => [ "srp", "heartbeats" ],
ef8ca6bd
RL
490
491 "crypto-mdebug" => [ "crypto-mdebug-backtrace" ],
343ec2b0
RL
492
493 # Without DSO, we can't load dynamic engines, so don't build them dynamic
494 "dso" => [ "dynamic-engine" ],
ae48242c
RL
495
496 # Without position independent code, there can be no shared libraries or DSOs
00698061
RL
497 "pic" => [ "shared" ],
498 "shared" => [ "dynamic-engine" ],
c91a0a83 499 "engine" => [ "afalgeng" ],
d90a6beb
MC
500
501 # no-autoalginit is only useful when building non-shared
502 "autoalginit" => [ "shared", "apps" ],
503
25d498c1 504 "stdio" => [ "apps", "capieng" ],
d90a6beb 505 "apps" => [ "tests" ],
b8ce6dda 506 "comp" => [ "zlib" ],
686c86a4 507 sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
29df3061
EK
508
509 sub { !$disabled{"msan"} } => [ "asm" ],
c569e206
RL
510 );
511
512# Avoid protocol support holes. Also disable all versions below N, if version
513# N is disabled while N+1 is enabled.
514#
515my @list = (reverse @tls);
516while ((my $first, my $second) = (shift @list, shift @list)) {
517 last unless @list;
518 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
519 => [ @list ] );
520 unshift @list, $second;
521}
522my @list = (reverse @dtls);
523while ((my $first, my $second) = (shift @list, shift @list)) {
524 last unless @list;
525 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
526 => [ @list ] );
527 unshift @list, $second;
528}
529
7a762197 530# Explicit "no-..." options will be collected in %disabled along with the defaults.
e4ef2e25 531# To remove something from %disabled, use "enable-foo".
7a762197
BM
532# For symmetry, "disable-foo" is a synonym for "no-foo".
533
d0590fe6 534my $no_sse2=0;
b6e4dac2 535
462ba4f6 536&usage if ($#ARGV < 0);
d02b48c6 537
bcb1977b
RL
538my $user_cflags="";
539my @user_defines=();
7d130f68
RL
540$config{openssl_api_defines}=[];
541$config{openssl_algorithm_defines}=[];
542$config{openssl_thread_defines}=[];
543$config{openssl_sys_defines}=[];
544$config{openssl_other_defines}=[];
fe05264e
RL
545my $libs="";
546my $target="";
3fa04f0d 547$config{options}="";
8864f0de 548$config{build_type} = "release";
c59cb511 549
fe05264e 550my %unsupported_options = ();
e80381e1 551my %deprecated_options = ();
fad599f7 552while (@argvcopy)
16b6081e 553 {
fad599f7 554 $_ = shift @argvcopy;
7c55e22c
RL
555 # VMS is a case insensitive environment, and depending on settings
556 # out of our control, we may receive options uppercased. Let's
557 # downcase at least the part before any equal sign.
558 if ($^O eq "VMS")
559 {
560 s/^([^=]*)/lc($1)/e;
561 }
fe05264e 562 s /^-no-/no-/; # some people just can't read the instructions
c9a112f5 563
fe05264e
RL
564 # rewrite some options in "enable-..." form
565 s /^-?-?shared$/enable-shared/;
566 s /^sctp$/enable-sctp/;
567 s /^threads$/enable-threads/;
568 s /^zlib$/enable-zlib/;
569 s /^zlib-dynamic$/enable-zlib-dynamic/;
c9a112f5 570
e4ef2e25 571 if (/^(no|disable|enable)-(.+)$/)
2b1343b9
MC
572 {
573 my $word = $2;
574 if (!exists $deprecated_disablables{$word}
575 && !grep { $word =~ /^${_}$/ } @disablables)
576 {
577 $unsupported_options{$_} = 1;
578 next;
579 }
580 }
581 if (/^no-(.+)$/ || /^disable-(.+)$/)
582 {
e4ef2e25
RS
583 foreach my $proto ((@tls, @dtls))
584 {
585 if ($1 eq "$proto-method")
586 {
587 $disabled{"$proto"} = "option($proto-method)";
588 last;
589 }
590 }
591 if ($1 eq "dtls")
592 {
593 foreach my $proto (@dtls)
594 {
595 $disabled{$proto} = "option(dtls)";
596 }
c5c7700c 597 $disabled{"dtls"} = "option(dtls)";
e4ef2e25
RS
598 }
599 elsif ($1 eq "ssl")
600 {
601 # Last one of its kind
602 $disabled{"ssl3"} = "option(ssl)";
603 }
604 elsif ($1 eq "tls")
605 {
606 # XXX: Tests will fail if all SSL/TLS
607 # protocols are disabled.
608 foreach my $proto (@tls)
609 {
610 $disabled{$proto} = "option(tls)";
611 }
612 }
343ec2b0
RL
613 elsif ($1 eq "static-engine")
614 {
19ab5790 615 delete $disabled{"dynamic-engine"};
343ec2b0
RL
616 }
617 elsif ($1 eq "dynamic-engine")
618 {
19ab5790 619 $disabled{"dynamic-engine"} = "option";
343ec2b0 620 }
2b1343b9
MC
621 elsif (exists $deprecated_disablables{$1})
622 {
623 $deprecated_options{$_} = 1;
624 if (defined $deprecated_disablables{$1})
625 {
626 $disabled{$deprecated_disablables{$1}} = "option";
627 }
628 }
e4ef2e25
RS
629 else
630 {
631 $disabled{$1} = "option";
632 }
9c62a279
RL
633 # No longer an automatic choice
634 $auto_threads = 0 if ($1 eq "threads");
fe05264e 635 }
e4ef2e25 636 elsif (/^enable-(.+)$/)
fe05264e 637 {
343ec2b0
RL
638 if ($1 eq "static-engine")
639 {
19ab5790 640 $disabled{"dynamic-engine"} = "option";
343ec2b0
RL
641 }
642 elsif ($1 eq "dynamic-engine")
643 {
19ab5790 644 delete $disabled{"dynamic-engine"};
343ec2b0 645 }
25004db7
RL
646 elsif ($1 eq "zlib-dynamic")
647 {
648 delete $disabled{"zlib"};
649 }
fe05264e 650 my $algo = $1;
fe05264e 651 delete $disabled{$algo};
c9a112f5 652
9c62a279
RL
653 # No longer an automatic choice
654 $auto_threads = 0 if ($1 eq "threads");
fe05264e
RL
655 }
656 elsif (/^--strict-warnings$/)
657 {
658 $strict_warnings = 1;
659 }
660 elsif (/^--debug$/)
661 {
8864f0de 662 $config{build_type} = "debug";
fe05264e
RL
663 }
664 elsif (/^--release$/)
665 {
8864f0de 666 $config{build_type} = "release";
fe05264e
RL
667 }
668 elsif (/^386$/)
7d130f68 669 { $config{processor}=386; }
fe05264e
RL
670 elsif (/^fips$/)
671 {
107b5792 672 $config{fips}=1;
fe05264e
RL
673 }
674 elsif (/^rsaref$/)
675 {
676 # No RSAref support any more since it's not needed.
677 # The check for the option is there so scripts aren't
678 # broken
679 }
680 elsif (/^nofipscanistercheck$/)
681 {
107b5792 682 $config{fips} = 1;
fe05264e
RL
683 $nofipscanistercheck = 1;
684 }
685 elsif (/^[-+]/)
686 {
45c6e23c 687 if (/^--prefix=(.*)$/)
fe05264e 688 {
291e94df 689 $config{prefix}=$1;
5482dac9
RL
690 die "Directory given with --prefix MUST be absolute\n"
691 unless file_name_is_absolute($config{prefix});
c9a112f5 692 }
fe05264e 693 elsif (/^--api=(.*)$/)
0c28f277 694 {
107b5792 695 $config{api}=$1;
0c28f277 696 }
fe05264e 697 elsif (/^--libdir=(.*)$/)
9e43c6b5 698 {
107b5792 699 $config{libdir}=$1;
9e43c6b5 700 }
fe05264e 701 elsif (/^--openssldir=(.*)$/)
9e43c6b5 702 {
291e94df 703 $config{openssldir}=$1;
9e43c6b5 704 }
fe05264e 705 elsif (/^--with-zlib-lib=(.*)$/)
9fdb2cc5 706 {
20a5819f 707 $withargs{zlib_lib}=$1;
7d8bb912 708 }
fe05264e 709 elsif (/^--with-zlib-include=(.*)$/)
3eb0ed6d 710 {
da430a55 711 $withargs{zlib_include}=$1;
462ba4f6 712 }
f59d0131
KR
713 elsif (/^--with-fuzzer-lib=(.*)$/)
714 {
715 $withargs{fuzzer_lib}=$1;
716 }
717 elsif (/^--with-fuzzer-include=(.*)$/)
718 {
719 $withargs{fuzzer_include}=$1;
720 }
fe05264e 721 elsif (/^--with-fipslibdir=(.*)$/)
1ab2f7f1 722 {
107b5792 723 $config{fipslibdir}="$1/";
1ab2f7f1 724 }
fe05264e 725 elsif (/^--with-baseaddr=(.*)$/)
462ba4f6 726 {
107b5792 727 $config{baseaddr}="$1";
3eb0ed6d 728 }
fe05264e 729 elsif (/^--cross-compile-prefix=(.*)$/)
e5f3045f 730 {
642a6138 731 $config{cross_compile_prefix}=$1;
e5f3045f 732 }
fe05264e 733 elsif (/^--config=(.*)$/)
d02b48c6 734 {
fe05264e 735 read_config $1;
c59cb511 736 }
fe05264e 737 elsif (/^-[lL](.*)$/ or /^-Wl,/)
c9a112f5 738 {
fe05264e 739 $libs.=$_." ";
d02b48c6 740 }
fad599f7
RL
741 elsif (/^-rpath$/ or /^-R$/)
742 # -rpath is the OSF1 rpath flag
743 # -R is the old Solaris rpath flag
744 {
745 my $rpath = shift(@argvcopy) || "";
746 $rpath .= " " if $rpath ne "";
747 $libs.=$_." ".$rpath;
748 }
9d46752d
AP
749 elsif (/^-static$/)
750 {
751 $libs.=$_." ";
047d97af 752 $disabled{"dso"} = "forced";
9d46752d
AP
753 $disabled{"pic"} = "forced";
754 $disabled{"shared"} = "forced";
755 $disabled{"threads"} = "forced";
756 }
bcb1977b
RL
757 elsif (/^-D(.*)$/)
758 {
759 push @user_defines, $1;
760 }
fe05264e
RL
761 else # common if (/^[-+]/), just pass down...
762 {
763 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
2b91ec75 764 $user_cflags.=" ".$_;
fe05264e
RL
765 }
766 }
fe05264e
RL
767 else
768 {
769 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
770 $target=$_;
771 }
772 unless ($_ eq $target || /^no-/ || /^disable-/)
773 {
774 # "no-..." follows later after implied disactivations
8483a003 775 # have been derived. (Don't take this too seriously,
fe05264e
RL
776 # we really only write OPTIONS to the Makefile out of
777 # nostalgia.)
778
3fa04f0d
RL
779 if ($config{options} eq "")
780 { $config{options} = $_; }
fe05264e 781 else
3fa04f0d 782 { $config{options} .= " ".$_; }
fbabb752 783 }
489eb740 784
107b5792
RL
785 if (defined($config{api}) && !exists $apitable->{$config{api}}) {
786 die "***** Unsupported api compatibility level: $config{api}\n",
98186eb4
VD
787 }
788
e80381e1
RL
789 if (keys %deprecated_options)
790 {
791 warn "***** Deprecated options: ",
792 join(", ", keys %deprecated_options), "\n";
793 }
489eb740
RL
794 if (keys %unsupported_options)
795 {
796 die "***** Unsupported options: ",
797 join(", ", keys %unsupported_options), "\n";
798 }
fbabb752 799 }
b6e4dac2 800
342a1a23
RL
801if ($libs =~ /(^|\s)-Wl,-rpath,/
802 && !$disabled{shared}
803 && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
804 die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
805 "***** any of asan, msan or ubsan\n";
806}
807
107b5792 808if ($config{fips})
a7a14a23 809 {
c569e206 810 delete $disabled{"shared"} if ($disabled{"shared"} =~ /^default/);
6b01bed2 811 }
107b5792
RL
812else
813 {
814 @{$config{dirs}} = grep !/^fips$/, @{$config{dirs}};
815 }
c9a112f5 816
c569e206
RL
817my @tocheckfor = (keys %disabled);
818while (@tocheckfor) {
819 my %new_tocheckfor = ();
820 my @cascade_copy = (@disable_cascades);
821 while (@cascade_copy) {
822 my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
823 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
2110febb 824 foreach(grep { !defined($disabled{$_}) } @$descendents) {
01d99976 825 $new_tocheckfor{$_} = 1; $disabled{$_} = "forced";
2110febb 826 }
ef236ec3 827 }
c569e206
RL
828 }
829 @tocheckfor = (keys %new_tocheckfor);
830}
edc032b5 831
d63c12c6 832our $die = sub { die @_; };
436a376b 833if ($target eq "TABLE") {
d63c12c6 834 local $die = sub { warn @_; };
00ae96ca
RL
835 foreach (sort keys %table) {
836 print_table_entry($_, "TABLE");
837 }
838 exit 0;
436a376b
BM
839}
840
10a926c1 841if ($target eq "LIST") {
00ae96ca
RL
842 foreach (sort keys %table) {
843 print $_,"\n" unless $table{$_}->{template};
844 }
845 exit 0;
10a926c1
UM
846}
847
aaf878cc 848if ($target eq "HASH") {
d63c12c6 849 local $die = sub { warn @_; };
00ae96ca
RL
850 print "%table = (\n";
851 foreach (sort keys %table) {
852 print_table_entry($_, "HASH");
853 }
854 exit 0;
aaf878cc
RL
855}
856
00ae96ca 857# Backward compatibility?
49e04548 858if ($target =~ m/^CygWin32(-.*)$/) {
00ae96ca 859 $target = "Cygwin".$1;
49e04548
RL
860}
861
c9a112f5
BM
862foreach (sort (keys %disabled))
863 {
3fa04f0d 864 $config{options} .= " no-$_";
c9a112f5
BM
865
866 printf " no-%-12s %-10s", $_, "[$disabled{$_}]";
867
868 if (/^dso$/)
721f9058 869 { }
c9a112f5 870 elsif (/^threads$/)
22bfe05e 871 { }
c9a112f5 872 elsif (/^shared$/)
84af1bae 873 { }
ae48242c
RL
874 elsif (/^pic$/)
875 { }
c9a112f5 876 elsif (/^zlib$/)
36a30909 877 { }
19ab5790 878 elsif (/^dynamic-engine$/)
fbf002bb 879 { }
09aa263a
RL
880 elsif (/^makedepend$/)
881 { }
c9a112f5
BM
882 elsif (/^zlib-dynamic$/)
883 { }
c9a112f5
BM
884 elsif (/^sse2$/)
885 { $no_sse2 = 1; }
107b5792 886 elsif (/^engine$/)
1288f26f
RS
887 {
888 @{$config{dirs}} = grep !/^engines$/, @{$config{dirs}};
889 @{$config{sdirs}} = grep !/^engine$/, @{$config{sdirs}};
890 push @{$config{openssl_other_defines}}, "OPENSSL_NO_ENGINE";
3e2dd30d 891 print " OPENSSL_NO_ENGINE (skip engines)";
1288f26f 892 }
c9a112f5
BM
893 else
894 {
3e2dd30d 895 my ($WHAT, $what);
c9a112f5 896
3e2dd30d
RL
897 ($WHAT = $what = $_) =~ tr/[\-a-z]/[_A-Z]/;
898
899 # Fix up C macro end names
900 $WHAT = "RMD160" if $what eq "ripemd";
901
902 # fix-up crypto/directory name(s)
903 $what = "ripemd" if $what eq "rmd160";
904 $what = "whrlpool" if $what eq "whirlpool";
905
66fe388a
RL
906 if ($what ne "async" && $what ne "err"
907 && grep { $_ eq $what } @{$config{sdirs}})
c9a112f5 908 {
3e2dd30d
RL
909 push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$WHAT";
910 @{$config{sdirs}} = grep { $_ ne $what} @{$config{sdirs}};
fce0ba5f 911
3e2dd30d 912 print " OPENSSL_NO_$WHAT (skip dir)";
c9a112f5
BM
913 }
914 else
915 {
3e2dd30d
RL
916 push @{$config{openssl_other_defines}}, "OPENSSL_NO_$WHAT";
917 print " OPENSSL_NO_$WHAT";
2a4af947 918
3e2dd30d 919 if (/^err$/) { push @user_defines, "OPENSSL_NO_ERR"; }
c9a112f5
BM
920 }
921 }
922
923 print "\n";
924 }
925
9e0724a1 926print "Configuring for $target\n";
9e0724a1
RL
927# Support for legacy targets having a name starting with 'debug-'
928my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
929if ($d) {
8864f0de 930 $config{build_type} = "debug";
9e0724a1
RL
931
932 # If we do not find debug-foo in the table, the target is set to foo.
933 if (!$table{$target}) {
934 $target = $t;
935 }
936}
291e94df 937$config{target} = $target;
79302211 938my %target = resolve_config($target);
9e0724a1
RL
939
940&usage if (!%target || $target{template});
941
ee9b0bbb
RL
942my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
943$config{conf_files} = [ sort keys %conf_files ];
d2b2221a 944%target = ( %{$table{DEFAULTS}}, %target );
79302211 945
ea241958 946$target{cxxflags}=$target{cflags} unless defined $target{cxxflags};
107b5792 947$target{exe_extension}="";
f99f91f1
RL
948$target{exe_extension}=".exe" if ($config{target} eq "DJGPP"
949 || $config{target} =~ /^(?:Cygwin|mingw)/);
107b5792 950$target{exe_extension}=".pm" if ($config{target} =~ /vos/);
462ba4f6 951
e987f9f2
RL
952($target{shared_extension_simple}=$target{shared_extension})
953 =~ s|\.\$\(SHLIB_MAJOR\)\.\$\(SHLIB_MINOR\)||;
954$target{dso_extension}=$target{shared_extension_simple};
955($target{shared_import_extension}=$target{shared_extension_simple}.".a")
956 if ($config{target} =~ /^(?:Cygwin|mingw)/);
957
958
642a6138
RL
959$config{cross_compile_prefix} = $ENV{'CROSS_COMPILE'}
960 if $config{cross_compile_prefix} eq "";
f99f41cf 961
b0a1e8bf 962# Allow overriding the names of some tools. USE WITH CARE
d513369b
RL
963# Note: only Unix cares about HASHBANGPERL... that explains
964# the default string.
758baa3d 965$config{perl} = ($^O ne "VMS" ? $^X : "perl");
d513369b
RL
966$config{hashbangperl} =
967 $ENV{'HASHBANGPERL'} || $ENV{'PERL'} || "/usr/bin/env perl";
b0a1e8bf 968$target{cc} = $ENV{'CC'} || $target{cc} || "cc";
83bd048e 969$target{cxx} = $ENV{'CXX'} || $target{cxx} || "c++";
f58a0acb 970$target{ranlib} = $ENV{'RANLIB'} || $target{ranlib} ||
656bbdc6 971 (which("$config{cross_compile_prefix}ranlib") ?
f58a0acb 972 "\$(CROSS_COMPILE)ranlib" : "true");
b0a1e8bf
RL
973$target{ar} = $ENV{'AR'} || $target{ar} || "ar";
974$target{nm} = $ENV{'NM'} || $target{nm} || "nm";
8f41ff2d
RL
975$target{rc} =
976 $ENV{'RC'} || $ENV{'WINDRES'} || $target{rc} || "windres";
aaf878cc 977
8b5156d1
RL
978# Allow overriding the build file name
979$target{build_file} = $ENV{BUILDFILE} || $target{build_file} || "Makefile";
980
981# Cache information necessary for reconfiguration
a66234bc 982$config{cc} = $target{cc};
ea241958 983$config{cxx} = $target{cxx};
8b5156d1 984$config{build_file} = $target{build_file};
a66234bc 985
bcb1977b
RL
986# For cflags, lflags, plib_lflags, ex_libs and defines, add the debug_
987# or release_ attributes.
aaf878cc 988# Do it in such a way that no spurious space is appended (hence the grep).
2952b9b8
RL
989$config{defines} = [];
990$config{cflags} = "";
ea241958 991$config{cxxflags} = "";
2952b9b8
RL
992$config{ex_libs} = "";
993$config{shared_ldflag} = "";
bd5192b1 994
291e94df
RL
995# Make sure build_scheme is consistent.
996$target{build_scheme} = [ $target{build_scheme} ]
997 if ref($target{build_scheme}) ne "ARRAY";
998
ddf1847d
RL
999my ($builder, $builder_platform, @builder_opts) =
1000 @{$target{build_scheme}};
1001
488e2b0f
RL
1002push @{$config{defines}}, "NDEBUG" if $config{build_type} eq "release";
1003
68ab559a 1004if ($target =~ /^mingw/ && `$target{cc} --target-help 2>&1` =~ m/-mno-cygwin/m)
cbecd29a 1005 {
68ab559a 1006 $config{cflags} .= " -mno-cygwin";
2952b9b8 1007 $config{shared_ldflag} .= " -mno-cygwin";
cbecd29a
AP
1008 }
1009
00b0d663 1010if ($target =~ /linux.*-mips/ && !$disabled{asm} && $user_cflags !~ /-m(ips|arch=)/) {
63d8834c 1011 # minimally required architecture flags for assembly modules
107b5792
RL
1012 $config{cflags}="-mips2 $config{cflags}" if ($target =~ /mips32/);
1013 $config{cflags}="-mips3 $config{cflags}" if ($target =~ /mips64/);
63d8834c
AP
1014}
1015
2964ba8c 1016my $no_shared_warn=0;
14bcdb08 1017my $no_user_cflags=0;
bcb1977b 1018my $no_user_defines=0;
2964ba8c 1019
bc2aadad
GT
1020# The DSO code currently always implements all functions so that no
1021# applications will have to worry about that from a compilation point
1022# of view. However, the "method"s may return zero unless that platform
1023# has support compiled in for them. Currently each method is enabled
1024# by a define "DSO_<name>" ... we translate the "dso_scheme" config
1025# string entry into using the following logic;
721f9058 1026if (!$disabled{dso} && $target{dso_scheme} ne "")
bc2aadad 1027 {
291e94df
RL
1028 $target{dso_scheme} =~ tr/[a-z]/[A-Z]/;
1029 if ($target{dso_scheme} eq "DLFCN")
bc2aadad 1030 {
2952b9b8 1031 unshift @{$config{defines}}, "DSO_DLFCN", "HAVE_DLFCN_H";
bc2aadad 1032 }
291e94df 1033 elsif ($target{dso_scheme} eq "DLFCN_NO_H")
bc2aadad 1034 {
2952b9b8 1035 unshift @{$config{defines}}, "DSO_DLFCN";
bc2aadad
GT
1036 }
1037 else
1038 {
2952b9b8 1039 unshift @{$config{defines}}, "DSO_$target{dso_scheme}";
bc2aadad
GT
1040 }
1041 }
9ec0126e 1042
1740c162 1043$config{ex_libs}="$libs$config{ex_libs}" if ($libs ne "");
d02b48c6 1044
00b0d663 1045if ($disabled{asm})
dfeab068 1046 {
2952b9b8
RL
1047 if ($config{fips})
1048 {
1049 @{$config{defines}} = grep !/^[BL]_ENDIAN$/, @{$config{defines}};
1050 @{$target{defines}} = grep !/^[BL]_ENDIAN$/, @{$target{defines}};
1051 }
dfeab068 1052 }
6f7ac8e1 1053
9c62a279
RL
1054# If threads aren't disabled, check how possible they are
1055unless ($disabled{threads}) {
1056 if ($auto_threads) {
1057 # Enabled by default, disable it forcibly if unavailable
1058 if ($target{thread_scheme} eq "(unknown)") {
1059 $disabled{threads} = "unavailable";
1060 }
1061 } else {
8483a003 1062 # The user chose to enable threads explicitly, let's see
9c62a279
RL
1063 # if there's a chance that's possible
1064 if ($target{thread_scheme} eq "(unknown)") {
1065 # If the user asked for "threads" and we don't have internal
1066 # knowledge how to do it, [s]he is expected to provide any
1067 # system-dependent compiler options that are necessary. We
1068 # can't truly check that the given options are correct, but
1069 # we expect the user to know what [s]He is doing.
1070 if ($no_user_cflags && $no_user_defines) {
1071 die "You asked for multi-threading support, but didn't\n"
1072 ,"provide any system-specific compiler options\n";
1073 }
1074 }
1075 }
1076}
1077
1078# If threads still aren't disabled, add a C macro to ensure the source
1079# code knows about it. Any other flag is taken care of by the configs.
1080unless($disabled{threads}) {
1081 foreach (("defines", "openssl_thread_defines")) {
1082 push @{$config{$_}}, "OPENSSL_THREADS";
1083 }
1084}
e452de9d 1085
98186eb4
VD
1086# With "deprecated" disable all deprecated features.
1087if (defined($disabled{"deprecated"})) {
107b5792 1088 $config{api} = $maxapi;
98186eb4 1089}
07c4c14c 1090
291e94df 1091if ($target{shared_target} eq "")
6f7ac8e1 1092 {
ae48242c 1093 $no_shared_warn = 1
84af1bae 1094 if ((!$disabled{shared} || !$disabled{"dynamic-engine"})
ae48242c 1095 && !$config{fips});
84af1bae 1096 $disabled{shared} = "no-shared-target";
ae48242c
RL
1097 $disabled{pic} = $disabled{shared} = $disabled{"dynamic-engine"} =
1098 "no-shared-target";
6f7ac8e1 1099 }
b436a982 1100
19ab5790 1101if ($disabled{"dynamic-engine"}) {
343ec2b0
RL
1102 push @{$config{defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
1103 $config{dynamic_engines} = 0;
19ab5790
RL
1104} else {
1105 push @{$config{defines}}, "OPENSSL_NO_STATIC_ENGINE";
1106 $config{dynamic_engines} = 1;
343ec2b0 1107}
ecd45314 1108
f59d0131 1109unless ($disabled{"fuzz-libfuzzer"}) {
c38bb727
BL
1110 $config{cflags} .= "-fsanitize-coverage=edge,indirect-calls ";
1111}
1112
1113unless ($disabled{asan}) {
1114 $config{cflags} .= "-fsanitize=address ";
1115}
1116
1117unless ($disabled{ubsan}) {
f430ba31 1118 # -DPEDANTIC or -fnosanitize=alignment may also be required on some
c38bb727
BL
1119 # platforms.
1120 $config{cflags} .= "-fsanitize=undefined -fno-sanitize-recover=all ";
1121}
1122
29df3061
EK
1123unless ($disabled{msan}) {
1124 $config{cflags} .= "-fsanitize=memory ";
1125}
1126
65cc6d5c 1127unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
29df3061 1128 && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
c38bb727
BL
1129 $config{cflags} .= "-fno-omit-frame-pointer -g ";
1130}
c313e32a
AP
1131#
1132# Platform fix-ups
1133#
ae48242c
RL
1134
1135# This saves the build files from having to check
1136if ($disabled{pic})
1137 {
1138 $target{shared_cflag} = $target{shared_ldflag} =
1139 $target{shared_rcflag} = "";
1140 }
4f16039e
RL
1141else
1142 {
1143 push @{$config{defines}}, "OPENSSL_PIC";
1144 }
ae48242c 1145
291e94df 1146if ($target{sys_id} ne "")
cf1b7d96 1147 {
642a6138 1148 push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
cf1b7d96
RL
1149 }
1150
00b0d663 1151unless ($disabled{asm}) {
d2b2221a 1152 $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
9fe2bb77 1153 $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
f8c469de 1154
9e0724a1 1155 # bn-586 is the only one implementing bn_*_part_words
bcb1977b
RL
1156 push @{$config{defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
1157 push @{$config{defines}}, "OPENSSL_IA32_SSE2" if (!$no_sse2 && $target{bn_asm_src} =~ /86/);
dfeab068 1158
bcb1977b
RL
1159 push @{$config{defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1160 push @{$config{defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1161 push @{$config{defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
5ac7bde7 1162
107b5792 1163 if ($config{fips}) {
7d130f68 1164 push @{$config{openssl_other_defines}}, "OPENSSL_FIPS";
9e0724a1 1165 }
1ab2f7f1 1166
9fe2bb77 1167 if ($target{sha1_asm_src}) {
bcb1977b
RL
1168 push @{$config{defines}}, "SHA1_ASM" if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1169 push @{$config{defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1170 push @{$config{defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
9e0724a1 1171 }
216e8d91
RL
1172 if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
1173 push @{$config{defines}}, "RC4_ASM";
1174 }
9fe2bb77 1175 if ($target{md5_asm_src}) {
bcb1977b 1176 push @{$config{defines}}, "MD5_ASM";
9e0724a1 1177 }
d2b2221a 1178 $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
9fe2bb77 1179 if ($target{rmd160_asm_src}) {
bcb1977b 1180 push @{$config{defines}}, "RMD160_ASM";
9e0724a1 1181 }
9fe2bb77 1182 if ($target{aes_asm_src}) {
bcb1977b 1183 push @{$config{defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
9fe2bb77 1184 # aes-ctr.fake is not a real file, only indication that assembler
874a3757 1185 # module implements AES_ctr32_encrypt...
bcb1977b 1186 push @{$config{defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
9fe2bb77 1187 # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
bcb1977b 1188 push @{$config{defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
9fe2bb77 1189 $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($no_sse2);
bcb1977b
RL
1190 push @{$config{defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1191 push @{$config{defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
9e0724a1 1192 }
9fe2bb77 1193 if ($target{wp_asm_src} =~ /mmx/) {
46d4d865 1194 if ($config{processor} eq "386") {
d2b2221a 1195 $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
46d4d865 1196 } elsif (!$disabled{"whirlpool"}) {
2952b9b8 1197 push @{$config{defines}}, "WHIRLPOOL_ASM";
46d4d865 1198 }
9e0724a1 1199 }
9fe2bb77 1200 if ($target{modes_asm_src} =~ /ghash-/) {
bcb1977b 1201 push @{$config{defines}}, "GHASH_ASM";
9e0724a1 1202 }
9fe2bb77 1203 if ($target{ec_asm_src} =~ /ecp_nistz256/) {
bcb1977b 1204 push @{$config{defines}}, "ECP_NISTZ256_ASM";
9e0724a1 1205 }
9fe2bb77 1206 if ($target{poly1305_asm_src} ne "") {
bcb1977b 1207 push @{$config{defines}}, "POLY1305_ASM";
9e0724a1
RL
1208 }
1209}
d02b48c6 1210
8ed40b83 1211my $ecc = $target{cc};
09aa263a 1212if ($^O ne "VMS" && !$disabled{makedepend}) {
a583fc45
RL
1213 # Is the compiler gcc or clang? $ecc is used below to see if
1214 # error-checking can be turned on.
1215 my $ccpcc = "$config{cross_compile_prefix}$target{cc}";
d0db7ee0
AP
1216 open(PIPE, "$ccpcc --version 2>&1 |");
1217 my $lines = 2;
a583fc45 1218 while ( <PIPE> ) {
30752dd7
RL
1219 # Find the version number and save the major.
1220 m|(?:.*)\b(\d+)\.\d+\.\d+\b(?:.*)|;
39affe19 1221 my $compiler_major = $1;
30752dd7
RL
1222 # We know that GNU C version 3 and up as well as all clang
1223 # versions support dependency generation
39affe19 1224 $config{makedepprog} = $ccpcc
35c11bfc 1225 if (/clang/ || (/gcc/ && $compiler_major >= 3));
a583fc45
RL
1226 $ecc = "clang" if /clang/;
1227 $ecc = "gcc" if /gcc/;
d0db7ee0 1228 last if ($config{makedepprog} || !$lines--);
a583fc45
RL
1229 }
1230 close(PIPE);
09aa263a 1231
656bbdc6 1232 $config{makedepprog} = which('makedepend') unless $config{makedepprog};
09aa263a 1233 $disabled{makedepend} = "unavailable" unless $config{makedepprog};
f1f07a23 1234}
8ed40b83 1235
7d130f68 1236
09aa263a 1237
7d130f68
RL
1238# Deal with bn_ops ###################################################
1239
7d130f68 1240$config{bn_ll} =0;
7d130f68
RL
1241$config{export_var_as_fn} =0;
1242my $def_int="unsigned int";
1243$config{rc4_int} =$def_int;
b4f35e5e 1244($config{b64l},$config{b64},$config{b32})=(0,0,1);
7d130f68 1245
94af0cd7 1246my $count = 0;
7d130f68 1247foreach (sort split(/\s+/,$target{bn_ops})) {
94af0cd7
RS
1248 $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1249 $config{export_var_as_fn}=1 if $_ eq 'EXPORT_VAR_AS_FN';
1250 $config{bn_ll}=1 if $_ eq 'BN_LLONG';
1251 $config{rc4_int}="unsigned char" if $_ eq 'RC4_CHAR';
1252 ($config{b64l},$config{b64},$config{b32})
1253 =(0,1,0) if $_ eq 'SIXTY_FOUR_BIT';
1254 ($config{b64l},$config{b64},$config{b32})
1255 =(1,0,0) if $_ eq 'SIXTY_FOUR_BIT_LONG';
1256 ($config{b64l},$config{b64},$config{b32})
1257 =(0,0,1) if $_ eq 'THIRTY_TWO_BIT';
7d130f68 1258}
94af0cd7
RS
1259die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1260 if $count > 1;
7d130f68
RL
1261
1262
1263# Hack cflags for better warnings (dev option) #######################
1264
1ed0c662
RL
1265# "Stringify" the C flags string. This permits it to be made part of a string
1266# and works as well on command lines.
01d99976 1267$config{cflags} =~ s/([\\\"])/\\$1/g;
b436a982 1268
107b5792
RL
1269if (defined($config{api})) {
1270 $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
bcb1977b 1271 my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
bcb1977b 1272 push @{$config{defines}}, $apiflag;
98186eb4
VD
1273}
1274
0c28f277
DSH
1275if ($strict_warnings)
1276 {
1277 my $wopt;
f1f07a23
RS
1278 die "ERROR --strict-warnings requires gcc or clang"
1279 unless $ecc eq 'gcc' || $ecc eq 'clang';
0c28f277
DSH
1280 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1281 {
d918f9cb 1282 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
0c28f277 1283 }
190c8c60
BL
1284 if ($ecc eq "clang")
1285 {
1286 foreach $wopt (split /\s+/, $clang_devteam_warn)
1287 {
d918f9cb 1288 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
190c8c60
BL
1289 }
1290 }
ef8ca6bd
RL
1291 }
1292
1293unless ($disabled{"crypto-mdebug-backtrace"})
1294 {
1295 foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
a1d3f3d1 1296 {
d918f9cb 1297 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(?:^|\s)$wopt(?:\s|$)/)
ef8ca6bd
RL
1298 }
1299 if ($target =~ /^BSD-/)
1300 {
1301 $config{ex_libs} .= " -lexecinfo";
291e94df 1302 }
0c28f277
DSH
1303 }
1304
63994098
RL
1305if ($user_cflags ne "") { $config{cflags}="$config{cflags}$user_cflags"; }
1306else { $no_user_cflags=1; }
1307if (@user_defines) { $config{defines}=[ @{$config{defines}}, @user_defines ]; }
1308else { $no_user_defines=1; }
1309
1310# ALL MODIFICATIONS TO %config and %target MUST BE DONE FROM HERE ON
1311
c91a0a83
EK
1312unless ($disabled{afalgeng}) {
1313 $config{afalgeng}="";
79fff39d
RL
1314 if ($target =~ m/^linux/) {
1315 my $minver = 4*10000 + 1*100 + 0;
1316 if ($config{cross_compile_prefix} eq "") {
1317 my $verstr = `uname -r`;
1318 my ($ma, $mi1, $mi2) = split("\\.", $verstr);
1319 ($mi2) = $mi2 =~ /(\d+)/;
1320 my $ver = $ma*10000 + $mi1*100 + $mi2;
1321 if ($ver < $minver) {
c91a0a83 1322 $disabled{afalgeng} = "too-old-kernel";
79fff39d
RL
1323 } else {
1324 push @{$config{engdirs}}, "afalg";
1325 }
68dc37c1
MC
1326 } else {
1327 $disabled{afalgeng} = "cross-compiling";
6cba4a66 1328 }
79fff39d 1329 } else {
c91a0a83 1330 $disabled{afalgeng} = "not-linux";
7f458a48 1331 }
1332}
8da00a38 1333
c91a0a83 1334push @{$config{openssl_other_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
7f458a48 1335
9fe2bb77
RL
1336# If we use the unified build, collect information from build.info files
1337my %unified_info = ();
1338
2b6b606c 1339my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
ddf1847d 1340if ($builder eq "unified") {
9fe2bb77
RL
1341 use lib catdir(dirname(__FILE__),"util");
1342 use with_fallback qw(Text::Template);
1343
9fe2bb77 1344 sub cleandir {
2e963849 1345 my $base = shift;
9fe2bb77 1346 my $dir = shift;
2e963849
RL
1347 my $relativeto = shift || ".";
1348
1349 $dir = catdir($base,$dir) unless isabsolute($dir);
9fe2bb77 1350
ec182ef0
RL
1351 # Make sure the directories we're building in exists
1352 mkpath($dir);
1353
2e963849 1354 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
9fe2bb77
RL
1355 #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1356 return $res;
1357 }
1358
1359 sub cleanfile {
2e963849 1360 my $base = shift;
9fe2bb77 1361 my $file = shift;
2e963849
RL
1362 my $relativeto = shift || ".";
1363
1364 $file = catfile($base,$file) unless isabsolute($file);
1365
9fe2bb77
RL
1366 my $d = dirname($file);
1367 my $f = basename($file);
1368
ec182ef0
RL
1369 # Make sure the directories we're building in exists
1370 mkpath($d);
1371
2e963849 1372 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
9fe2bb77
RL
1373 #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1374 return $res;
1375 }
1376
1967a42e
RL
1377 # Store the name of the template file we will build the build file from
1378 # in %config. This may be useful for the build file itself.
1379 my @build_file_template_names =
1380 ( $builder_platform."-".$target{build_file}.".tmpl",
1381 $target{build_file}.".tmpl" );
1382 my @build_file_templates = ();
1383
1384 # First, look in the user provided directory, if given
1385 if (defined $ENV{$local_config_envname}) {
1386 @build_file_templates =
1387 map {
1388 if ($^O eq 'VMS') {
1389 # VMS environment variables are logical names,
1390 # which can be used as is
1391 $local_config_envname . ':' . $_;
1392 } else {
1393 catfile($ENV{$local_config_envname}, $_);
1394 }
1395 }
1396 @build_file_template_names;
1397 }
1398 # Then, look in our standard directory
1399 push @build_file_templates,
1400 ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
1401 @build_file_template_names );
1402
1403 my $build_file_template;
1404 for $_ (@build_file_templates) {
1405 $build_file_template = $_;
1406 last if -f $build_file_template;
1407
1408 $build_file_template = undef;
1409 }
1410 if (!defined $build_file_template) {
1411 die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
1412 }
1413 $config{build_file_templates}
1414 = [ $build_file_template,
1415 cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
1416 $blddir) ];
1417
9fe2bb77
RL
1418 my @build_infos = ( [ ".", "build.info" ] );
1419 foreach (@{$config{dirs}}) {
1420 push @build_infos, [ $_, "build.info" ]
1421 if (-f catfile($srcdir, $_, "build.info"));
1422 }
1423 foreach (@{$config{sdirs}}) {
1424 push @build_infos, [ catdir("crypto", $_), "build.info" ]
1425 if (-f catfile($srcdir, "crypto", $_, "build.info"));
1426 }
1427 foreach (@{$config{engdirs}}) {
1428 push @build_infos, [ catdir("engines", $_), "build.info" ]
1429 if (-f catfile($srcdir, "engines", $_, "build.info"));
1430 }
cfa76979
RL
1431 foreach (@{$config{tdirs}}) {
1432 push @build_infos, [ catdir("test", $_), "build.info" ]
1433 if (-f catfile($srcdir, "test", $_, "build.info"));
1434 }
9fe2bb77 1435
2e0956ba
RL
1436 $config{build_infos} = [ ];
1437
9fe2bb77
RL
1438 foreach (@build_infos) {
1439 my $sourced = catdir($srcdir, $_->[0]);
1440 my $buildd = catdir($blddir, $_->[0]);
1441
dca99383 1442 mkpath($buildd);
9fe2bb77
RL
1443
1444 my $f = $_->[1];
1445 # The basic things we're trying to build
1446 my @programs = ();
7f5af797 1447 my @programs_install = ();
9fe2bb77 1448 my @libraries = ();
7f5af797 1449 my @libraries_install = ();
9fe2bb77 1450 my @engines = ();
7f5af797 1451 my @engines_install = ();
9fe2bb77 1452 my @scripts = ();
7f5af797 1453 my @scripts_install = ();
9fe2bb77 1454 my @extra = ();
8a67946e 1455 my @overrides = ();
9fe2bb77
RL
1456 my @intermediates = ();
1457 my @rawlines = ();
1458
1459 my %ordinals = ();
1460 my %sources = ();
2a08d1a0 1461 my %shared_sources = ();
9fe2bb77
RL
1462 my %includes = ();
1463 my %depends = ();
1464 my %renames = ();
1465 my %sharednames = ();
ae4c7450 1466 my %generate = ();
9fe2bb77 1467
2e0956ba 1468 push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
9fe2bb77
RL
1469 my $template = Text::Template->new(TYPE => 'FILE',
1470 SOURCE => catfile($sourced, $f));
1471 die "Something went wrong with $sourced/$f: $!\n" unless $template;
1472 my @text =
1473 split /^/m,
1474 $template->fill_in(HASH => { config => \%config,
1475 target => \%target,
9e04edf2 1476 disabled => \%disabled,
f59d0131 1477 withargs => \%withargs,
9fe2bb77
RL
1478 builddir => abs2rel($buildd, $blddir),
1479 sourcedir => abs2rel($sourced, $blddir),
1480 buildtop => abs2rel($blddir, $blddir),
1481 sourcetop => abs2rel($srcdir, $blddir) },
1482 DELIMITERS => [ "{-", "-}" ]);
1483
1484 # The top item of this stack has the following values
1485 # -2 positive already run and we found ELSE (following ELSIF should fail)
1486 # -1 positive already run (skip until ENDIF)
1487 # 0 negatives so far (if we're at a condition, check it)
1488 # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1489 # 2 positive ELSE (following ELSIF should fail)
1490 my @skip = ();
1491 collect_information(
1492 collect_from_array([ @text ],
1493 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1494 $l1 =~ s/\\$//; $l1.$l2 }),
1495 # Info we're looking for
1496 qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
635bd409 1497 => sub {
c5798e0e 1498 if (! @skip || $skip[$#skip] > 0) {
635bd409
RL
1499 push @skip, !! $1;
1500 } else {
1501 push @skip, -1;
1502 }
1503 },
9fe2bb77
RL
1504 qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1505 => sub { die "ELSIF out of scope" if ! @skip;
1506 die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1507 $skip[$#skip] = -1 if $skip[$#skip] != 0;
1508 $skip[$#skip] = !! $1
1509 if $skip[$#skip] == 0; },
1510 qr/^\s*ELSE\s*$/
1511 => sub { die "ELSE out of scope" if ! @skip;
1512 $skip[$#skip] = -2 if $skip[$#skip] != 0;
1513 $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1514 qr/^\s*ENDIF\s*$/
1515 => sub { die "ENDIF out of scope" if ! @skip;
1516 pop @skip; },
7f5af797
RL
1517 qr/^\s*PROGRAMS(_NO_INST)?\s*=\s*(.*)\s*$/
1518 => sub {
1519 if (!@skip || $skip[$#skip] > 0) {
1520 my $install = $1;
1521 my @x = tokenize($2);
1522 push @programs, @x;
1523 push @programs_install, @x unless $install;
1524 }
1525 },
1526 qr/^\s*LIBS(_NO_INST)?\s*=\s*(.*)\s*$/
1527 => sub {
1528 if (!@skip || $skip[$#skip] > 0) {
1529 my $install = $1;
1530 my @x = tokenize($2);
1531 push @libraries, @x;
1532 push @libraries_install, @x unless $install;
1533 }
1534 },
1535 qr/^\s*ENGINES(_NO_INST)?\s*=\s*(.*)\s*$/
1536 => sub {
1537 if (!@skip || $skip[$#skip] > 0) {
1538 my $install = $1;
1539 my @x = tokenize($2);
1540 push @engines, @x;
1541 push @engines_install, @x unless $install;
1542 }
1543 },
1544 qr/^\s*SCRIPTS(_NO_INST)?\s*=\s*(.*)\s*$/
1545 => sub {
1546 if (!@skip || $skip[$#skip] > 0) {
1547 my $install = $1;
1548 my @x = tokenize($2);
1549 push @scripts, @x;
1550 push @scripts_install, @x unless $install;
1551 }
1552 },
9fe2bb77 1553 qr/^\s*EXTRA\s*=\s*(.*)\s*$/
ce959812 1554 => sub { push @extra, tokenize($1)
9fe2bb77 1555 if !@skip || $skip[$#skip] > 0 },
8a67946e 1556 qr/^\s*OVERRIDES\s*=\s*(.*)\s*$/
ce959812 1557 => sub { push @overrides, tokenize($1)
8a67946e 1558 if !@skip || $skip[$#skip] > 0 },
9fe2bb77
RL
1559
1560 qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
ce959812 1561 => sub { push @{$ordinals{$1}}, tokenize($2)
9fe2bb77
RL
1562 if !@skip || $skip[$#skip] > 0 },
1563 qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1564 => sub { push @{$sources{$1}}, tokenize($2)
9fe2bb77 1565 if !@skip || $skip[$#skip] > 0 },
2a08d1a0 1566 qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1567 => sub { push @{$shared_sources{$1}}, tokenize($2)
2a08d1a0 1568 if !@skip || $skip[$#skip] > 0 },
9fe2bb77 1569 qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1570 => sub { push @{$includes{$1}}, tokenize($2)
9fe2bb77 1571 if !@skip || $skip[$#skip] > 0 },
4f858293 1572 qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
ce959812 1573 => sub { push @{$depends{$1}}, tokenize($2)
9fe2bb77 1574 if !@skip || $skip[$#skip] > 0 },
ae4c7450
RL
1575 qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1576 => sub { push @{$generate{$1}}, $2
1577 if !@skip || $skip[$#skip] > 0 },
9fe2bb77 1578 qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1579 => sub { push @{$renames{$1}}, tokenize($2)
9fe2bb77
RL
1580 if !@skip || $skip[$#skip] > 0 },
1581 qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
ce959812 1582 => sub { push @{$sharednames{$1}}, tokenize($2)
9fe2bb77
RL
1583 if !@skip || $skip[$#skip] > 0 },
1584 qr/^\s*BEGINRAW\[((?:\\.|[^\\\]])+)\]\s*$/
1585 => sub {
1586 my $lineiterator = shift;
1587 my $target_kind = $1;
1588 while (defined $lineiterator->()) {
04f171c0 1589 s|\R$||;
9fe2bb77
RL
1590 if (/^\s*ENDRAW\[((?:\\.|[^\\\]])+)\]\s*$/) {
1591 die "ENDRAW doesn't match BEGINRAW"
1592 if $1 ne $target_kind;
1593 last;
1594 }
1595 next if @skip && $skip[$#skip] <= 0;
1596 push @rawlines, $_
1597 if ($target_kind eq $target{build_file}
ddf1847d 1598 || $target_kind eq $target{build_file}."(".$builder_platform.")");
9fe2bb77
RL
1599 }
1600 },
ab6e147c 1601 qr/^\s*(?:#.*)?$/ => sub { },
2b6b606c
RL
1602 "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
1603 "BEFORE" => sub {
1604 if ($buildinfo_debug) {
1605 print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
1606 print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1607 }
1608 },
1609 "AFTER" => sub {
1610 if ($buildinfo_debug) {
1611 print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
1612 }
1613 },
9fe2bb77
RL
1614 );
1615 die "runaway IF?" if (@skip);
1616
1617 foreach (keys %renames) {
1618 die "$_ renamed to more than one thing: "
1619 ,join(" ", @{$renames{$_}}),"\n"
1620 if scalar @{$renames{$_}} > 1;
2e963849
RL
1621 my $dest = cleanfile($buildd, $_, $blddir);
1622 my $to = cleanfile($buildd, $renames{$_}->[0], $blddir);
9fe2bb77
RL
1623 die "$dest renamed to more than one thing: "
1624 ,$unified_info{rename}->{$dest}, $to
1625 unless !defined($unified_info{rename}->{$dest})
1626 or $unified_info{rename}->{$dest} eq $to;
1627 $unified_info{rename}->{$dest} = $to;
1628 }
1629
1630 foreach (@programs) {
2e963849 1631 my $program = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1632 if ($unified_info{rename}->{$program}) {
1633 $program = $unified_info{rename}->{$program};
1634 }
1635 $unified_info{programs}->{$program} = 1;
1636 }
1637
7f5af797
RL
1638 foreach (@programs_install) {
1639 my $program = cleanfile($buildd, $_, $blddir);
1640 if ($unified_info{rename}->{$program}) {
1641 $program = $unified_info{rename}->{$program};
1642 }
1643 $unified_info{install}->{programs}->{$program} = 1;
1644 }
1645
9fe2bb77 1646 foreach (@libraries) {
2e963849 1647 my $library = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1648 if ($unified_info{rename}->{$library}) {
1649 $library = $unified_info{rename}->{$library};
1650 }
1651 $unified_info{libraries}->{$library} = 1;
1652 }
1653
7f5af797
RL
1654 foreach (@libraries_install) {
1655 my $library = cleanfile($buildd, $_, $blddir);
1656 if ($unified_info{rename}->{$library}) {
1657 $library = $unified_info{rename}->{$library};
1658 }
1659 $unified_info{install}->{libraries}->{$library} = 1;
1660 }
1661
343ec2b0 1662 die <<"EOF" if scalar @engines and !$config{dynamic_engines};
19ab5790 1663ENGINES can only be used if configured with 'dynamic-engine'.
9fe2bb77
RL
1664This is usually a fault in a build.info file.
1665EOF
1666 foreach (@engines) {
2e963849 1667 my $library = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1668 if ($unified_info{rename}->{$library}) {
1669 $library = $unified_info{rename}->{$library};
1670 }
1671 $unified_info{engines}->{$library} = 1;
1672 }
1673
7f5af797
RL
1674 foreach (@engines_install) {
1675 my $library = cleanfile($buildd, $_, $blddir);
1676 if ($unified_info{rename}->{$library}) {
1677 $library = $unified_info{rename}->{$library};
1678 }
1679 $unified_info{install}->{engines}->{$library} = 1;
1680 }
1681
9fe2bb77 1682 foreach (@scripts) {
2e963849 1683 my $script = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1684 if ($unified_info{rename}->{$script}) {
1685 $script = $unified_info{rename}->{$script};
1686 }
1687 $unified_info{scripts}->{$script} = 1;
1688 }
1689
7f5af797
RL
1690 foreach (@scripts_install) {
1691 my $script = cleanfile($buildd, $_, $blddir);
1692 if ($unified_info{rename}->{$script}) {
1693 $script = $unified_info{rename}->{$script};
1694 }
1695 $unified_info{install}->{scripts}->{$script} = 1;
1696 }
1697
9fe2bb77 1698 foreach (@extra) {
2e963849 1699 my $extra = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1700 $unified_info{extra}->{$extra} = 1;
1701 }
1702
8a67946e
RL
1703 foreach (@overrides) {
1704 my $override = cleanfile($buildd, $_, $blddir);
1705 $unified_info{overrides}->{$override} = 1;
1706 }
1707
9fe2bb77
RL
1708 push @{$unified_info{rawlines}}, @rawlines;
1709
84af1bae 1710 unless ($disabled{shared}) {
9fe2bb77
RL
1711 # Check sharednames.
1712 foreach (keys %sharednames) {
2e963849 1713 my $dest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1714 if ($unified_info{rename}->{$dest}) {
1715 $dest = $unified_info{rename}->{$dest};
1716 }
1717 die "shared_name for $dest with multiple values: "
1718 ,join(" ", @{$sharednames{$_}}),"\n"
1719 if scalar @{$sharednames{$_}} > 1;
2e963849 1720 my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir);
9fe2bb77
RL
1721 die "shared_name found for a library $dest that isn't defined\n"
1722 unless $unified_info{libraries}->{$dest};
1723 die "shared_name for $dest with multiple values: "
1724 ,$unified_info{sharednames}->{$dest}, ", ", $to
1725 unless !defined($unified_info{sharednames}->{$dest})
1726 or $unified_info{sharednames}->{$dest} eq $to;
1727 $unified_info{sharednames}->{$dest} = $to;
1728 }
1729
1730 # Additionally, we set up sharednames for libraries that don't
1731 # have any, as themselves.
1732 foreach (keys %{$unified_info{libraries}}) {
1733 if (!defined $unified_info{sharednames}->{$_}) {
1734 $unified_info{sharednames}->{$_} = $_
1735 }
1736 }
1737 }
1738
1739 foreach (keys %ordinals) {
1740 my $dest = $_;
2e963849 1741 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1742 if ($unified_info{rename}->{$ddest}) {
1743 $ddest = $unified_info{rename}->{$ddest};
1744 }
1745 foreach (@{$ordinals{$dest}}) {
1746 my %known_ordinals =
1747 (
1748 crypto =>
6928b617 1749 cleanfile($sourced, catfile("util", "libcrypto.num"), $blddir),
9fe2bb77 1750 ssl =>
6928b617 1751 cleanfile($sourced, catfile("util", "libssl.num"), $blddir)
9fe2bb77
RL
1752 );
1753 my $o = $known_ordinals{$_};
1754 die "Ordinals for $ddest defined more than once\n"
1755 if $unified_info{ordinals}->{$ddest};
1756 $unified_info{ordinals}->{$ddest} = [ $_, $o ];
1757 }
1758 }
1759
1760 foreach (keys %sources) {
1761 my $dest = $_;
2e963849 1762 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1763 if ($unified_info{rename}->{$ddest}) {
1764 $ddest = $unified_info{rename}->{$ddest};
1765 }
1766 foreach (@{$sources{$dest}}) {
2e963849 1767 my $s = cleanfile($sourced, $_, $blddir);
9fe2bb77
RL
1768
1769 # If it isn't in the source tree, we assume it's generated
1770 # in the build tree
1771 if (! -f $s) {
2e963849 1772 $s = cleanfile($buildd, $_, $blddir);
9fe2bb77 1773 }
ea241958
RL
1774 # We recognise C++, C and asm files
1775 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
1776 my $o = $_;
1777 $o =~ s/\.[csS]$/.o/; # C and assembler
1778 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2e963849 1779 $o = cleanfile($buildd, $o, $blddir);
9fe2bb77
RL
1780 $unified_info{sources}->{$ddest}->{$o} = 1;
1781 $unified_info{sources}->{$o}->{$s} = 1;
1782 } else {
1783 $unified_info{sources}->{$ddest}->{$s} = 1;
1784 }
1785 }
1786 }
1787
2a08d1a0
RL
1788 foreach (keys %shared_sources) {
1789 my $dest = $_;
1790 my $ddest = cleanfile($buildd, $_, $blddir);
1791 if ($unified_info{rename}->{$ddest}) {
1792 $ddest = $unified_info{rename}->{$ddest};
1793 }
1794 foreach (@{$shared_sources{$dest}}) {
1795 my $s = cleanfile($sourced, $_, $blddir);
1796
1797 # If it isn't in the source tree, we assume it's generated
1798 # in the build tree
1799 if (! -f $s) {
1800 $s = cleanfile($buildd, $_, $blddir);
1801 }
ea241958
RL
1802 # We recognise C++, C and asm files
1803 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
1804 my $o = $_;
1805 $o =~ s/\.[csS]$/.o/; # C and assembler
1806 $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
2a08d1a0
RL
1807 $o = cleanfile($buildd, $o, $blddir);
1808 $unified_info{shared_sources}->{$ddest}->{$o} = 1;
1809 $unified_info{sources}->{$o}->{$s} = 1;
1810 } else {
1811 die "unrecognised source file type for shared library: $s\n";
1812 }
1813 }
1814 }
1815
ae4c7450
RL
1816 foreach (keys %generate) {
1817 my $dest = $_;
1818 my $ddest = cleanfile($buildd, $_, $blddir);
1819 if ($unified_info{rename}->{$ddest}) {
1820 $ddest = $unified_info{rename}->{$ddest};
1821 }
1822 die "more than one generator for $dest: "
1823 ,join(" ", @{$generate{$_}}),"\n"
1824 if scalar @{$generate{$_}} > 1;
1825 my @generator = split /\s+/, $generate{$dest}->[0];
1826 $generator[0] = cleanfile($sourced, $generator[0], $blddir),
1827 $unified_info{generate}->{$ddest} = [ @generator ];
1828 }
1829
9fe2bb77
RL
1830 foreach (keys %depends) {
1831 my $dest = $_;
4f858293 1832 my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
8d34daf0
RL
1833
1834 # If the destination doesn't exist in source, it can only be
1835 # a generated file in the build tree.
4f858293 1836 if ($ddest ne "" && ! -f $ddest) {
8d34daf0
RL
1837 $ddest = cleanfile($buildd, $_, $blddir);
1838 if ($unified_info{rename}->{$ddest}) {
1839 $ddest = $unified_info{rename}->{$ddest};
1840 }
9fe2bb77
RL
1841 }
1842 foreach (@{$depends{$dest}}) {
2e963849 1843 my $d = cleanfile($sourced, $_, $blddir);
9fe2bb77 1844
e737d7b1
RL
1845 # If we know it's generated, or assume it is because we can't
1846 # find it in the source tree, we set file we depend on to be
1847 # in the build tree rather than the source tree, and assume
1848 # and that there are lines to build it in a BEGINRAW..ENDRAW
1849 # section or in the Makefile template.
1850 if (! -f $d
da1f2104
RL
1851 || (grep { $d eq $_ }
1852 map { cleanfile($srcdir, $_, $blddir) }
4f858293 1853 grep { /\.h$/ } keys %{$unified_info{generate}})) {
2e963849 1854 $d = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1855 }
1856 # Take note if the file to depend on is being renamed
1857 if ($unified_info{rename}->{$d}) {
1858 $d = $unified_info{rename}->{$d};
1859 }
1860 $unified_info{depends}->{$ddest}->{$d} = 1;
8d34daf0
RL
1861 # If we depend on a header file or a perl module, let's make
1862 # sure it can get included
4f858293 1863 if ($dest ne "" && $d =~ /\.(h|pm)$/) {
9fe2bb77 1864 my $i = dirname($d);
4748f890
RL
1865 push @{$unified_info{includes}->{$ddest}->{source}}, $i
1866 unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}->{source}};
9fe2bb77
RL
1867 }
1868 }
1869 }
1870
1871 foreach (keys %includes) {
1872 my $dest = $_;
8d34daf0
RL
1873 my $ddest = cleanfile($sourced, $_, $blddir);
1874
1875 # If the destination doesn't exist in source, it can only be
1876 # a generated file in the build tree.
1877 if (! -f $ddest) {
1878 $ddest = cleanfile($buildd, $_, $blddir);
1879 if ($unified_info{rename}->{$ddest}) {
1880 $ddest = $unified_info{rename}->{$ddest};
1881 }
9fe2bb77
RL
1882 }
1883 foreach (@{$includes{$dest}}) {
4748f890
RL
1884 my $is = cleandir($sourced, $_, $blddir);
1885 my $ib = cleandir($buildd, $_, $blddir);
1886 push @{$unified_info{includes}->{$ddest}->{source}}, $is
1887 unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
1888 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
1889 unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
9fe2bb77
RL
1890 }
1891 }
1892 }
1893
1894 ### Make unified_info a bit more efficient
1895 # One level structures
8a67946e 1896 foreach (("programs", "libraries", "engines", "scripts", "extra", "overrides")) {
9fe2bb77
RL
1897 $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
1898 }
1899 # Two level structures
7f5af797 1900 foreach my $l1 (("install", "sources", "shared_sources", "ldadd", "depends")) {
9fe2bb77
RL
1901 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
1902 $unified_info{$l1}->{$l2} =
1903 [ sort keys %{$unified_info{$l1}->{$l2}} ];
1904 }
1905 }
4748f890
RL
1906 # Includes
1907 foreach my $dest (sort keys %{$unified_info{includes}}) {
1908 if (defined($unified_info{includes}->{$dest}->{build})) {
1909 my @source_includes =
1910 ( @{$unified_info{includes}->{$dest}->{source}} );
1911 $unified_info{includes}->{$dest} =
1912 [ @{$unified_info{includes}->{$dest}->{build}} ];
1913 foreach my $inc (@source_includes) {
1914 push @{$unified_info{includes}->{$dest}}, $inc
1915 unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
1916 }
1917 } else {
1918 $unified_info{includes}->{$dest} =
1919 [ @{$unified_info{includes}->{$dest}->{source}} ];
1920 }
1921 }
9fe2bb77
RL
1922}
1923
1924# For the schemes that need it, we provide the old *_obj configs
1925# from the *_asm_obj ones
3a55c92b 1926foreach (grep /_(asm|aux)_src$/, keys %target) {
9fe2bb77 1927 my $src = $_;
3a55c92b 1928 (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
ea241958
RL
1929 $target{$obj} = $target{$src};
1930 $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
1931 $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
9fe2bb77
RL
1932}
1933
291e94df
RL
1934# Write down our configuration where it fits #########################
1935
1936open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
1937print OUT <<"EOF";
1938package configdata;
1939
1940use strict;
1941use warnings;
1942
1943use Exporter;
1944#use vars qw(\@ISA \@EXPORT);
1945our \@ISA = qw(Exporter);
3850f8cb 1946our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
291e94df
RL
1947
1948EOF
1949print OUT "our %config = (\n";
1950foreach (sort keys %config) {
1951 if (ref($config{$_}) eq "ARRAY") {
1952 print OUT " ", $_, " => [ ", join(", ",
1953 map { quotify("perl", $_) }
1954 @{$config{$_}}), " ],\n";
1955 } else {
1956 print OUT " ", $_, " => ", quotify("perl", $config{$_}), ",\n"
1957 }
1958}
1959print OUT <<"EOF";
1960);
1961
1962EOF
1963print OUT "our %target = (\n";
1964foreach (sort keys %target) {
1965 if (ref($target{$_}) eq "ARRAY") {
1966 print OUT " ", $_, " => [ ", join(", ",
1967 map { quotify("perl", $_) }
1968 @{$target{$_}}), " ],\n";
1969 } else {
1970 print OUT " ", $_, " => ", quotify("perl", $target{$_}), ",\n"
1971 }
1972}
1973print OUT <<"EOF";
1974);
1975
96d2d7bc
RL
1976EOF
1977print OUT "our \%available_protocols = (\n";
1978print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
1979print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
1980print OUT <<"EOF";
1981);
1982
3850f8cb
RL
1983EOF
1984print OUT "our \@disablables = (\n";
1985foreach (@disablables) {
1986 print OUT " ", quotify("perl", $_), ",\n";
1987}
1988print OUT <<"EOF";
1989);
1990
96d2d7bc
RL
1991EOF
1992print OUT "our \%disabled = (\n";
1993foreach (sort keys %disabled) {
1994 print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
1995}
1996print OUT <<"EOF";
1997);
1998
291e94df 1999EOF
107b5792
RL
2000print OUT "our %withargs = (\n";
2001foreach (sort keys %withargs) {
2002 if (ref($withargs{$_}) eq "ARRAY") {
2003 print OUT " ", $_, " => [ ", join(", ",
2004 map { quotify("perl", $_) }
2005 @{$withargs{$_}}), " ],\n";
2006 } else {
2007 print OUT " ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
2008 }
2009}
2010print OUT <<"EOF";
2011);
edd4d402 2012
107b5792 2013EOF
ddf1847d 2014if ($builder eq "unified") {
9fe2bb77
RL
2015 my $recurse;
2016 $recurse = sub {
2017 my $indent = shift;
2018 foreach (@_) {
2019 if (ref $_ eq "ARRAY") {
2020 print OUT " "x$indent, "[\n";
2021 foreach (@$_) {
2022 $recurse->($indent + 4, $_);
2023 }
2024 print OUT " "x$indent, "],\n";
2025 } elsif (ref $_ eq "HASH") {
2026 my %h = %$_;
2027 print OUT " "x$indent, "{\n";
2028 foreach (sort keys %h) {
2029 if (ref $h{$_} eq "") {
2030 print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
2031 } else {
2032 print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
2033 $recurse->($indent + 8, $h{$_});
2034 }
2035 }
2036 print OUT " "x$indent, "},\n";
2037 } else {
2038 print OUT " "x$indent, quotify("perl", $_), ",\n";
2039 }
2040 }
2041 };
2042 print OUT "our %unified_info = (\n";
2043 foreach (sort keys %unified_info) {
2044 if (ref $unified_info{$_} eq "") {
2045 print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
2046 } else {
2047 print OUT " "x4, quotify("perl", $_), " =>\n";
2048 $recurse->(8, $unified_info{$_});
2049 }
2050 }
2051 print OUT <<"EOF";
2052);
2053
2054EOF
2055}
2056print OUT "1;\n";
d02b48c6 2057close(OUT);
f2d4be3b 2058
141d7325
RS
2059print "\n";
2060print "PROCESSOR =$config{processor}\n" if $config{processor};
2061print "PERL =$config{perl}\n";
758baa3d 2062print "PERLVERSION =$Config{version} for $Config{archname}\n";
141d7325 2063print "HASHBANGPERL =$config{hashbangperl}\n";
f58a0acb 2064print "CC =$config{cross_compile_prefix}$target{cc}\n";
2952b9b8 2065print "CFLAG =$target{cflags} $config{cflags}\n";
ea241958
RL
2066print "CXX =$config{cross_compile_prefix}$target{cxx}\n"
2067 if defined $target{cxx};
2068print "CXXFLAG =$target{cxxflags} $config{cxxflags}\n"
2069 if defined $target{cxx};
2952b9b8 2070print "DEFINES =",join(" ", @{$target{defines}}, @{$config{defines}}),"\n";
141d7325
RS
2071#print "RANLIB =", $target{ranlib} eq '$(CROSS_COMPILE)ranlib' ?
2072# "$config{cross_compile_prefix}ranlib" :
2073# "$target{ranlib}", "\n";
2952b9b8 2074print "EX_LIBS =$target{ex_libs} $config{ex_libs}\n";
cba5068d 2075
88087414 2076my %builders = (
9fe2bb77 2077 unified => sub {
ddf1847d 2078 run_dofile(catfile($blddir, $target{build_file}),
1967a42e 2079 @{$config{build_file_templates}});
9fe2bb77 2080 },
88087414
RL
2081 );
2082
ddf1847d 2083$builders{$builder}->($builder_platform, @builder_opts);
fce0ba5f 2084
9c62a279 2085print <<"EOF" if ($disabled{threads} eq "unavailable");
5f8d5c96
BM
2086
2087The library could not be configured for supporting multi-threaded
2088applications as the compiler options required on this system are not known.
ff1b7e09 2089See file INSTALL for details if you need multi-threading.
ec577822
BM
2090EOF
2091
76ffb43d 2092print <<"EOF" if ($no_shared_warn);
2964ba8c 2093
ae48242c
RL
2094The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
2095platform, so we will pretend you gave the option 'no-pic', which also disables
2096'shared' and 'dynamic-engine'. If you know how to implement shared libraries
2097or position independent code, please let us know (but please first make sure
2098you have tried with a current version of OpenSSL).
2e31ef03
RS
2099EOF
2100
ddc606c9
RL
2101print <<"EOF" if (-f catfile($srcdir, "configdata.pm") && $srcdir ne $blddir);
2102
2103WARNING: there are indications that another build was made in the source
2104directory. This build may have picked up artifacts from that build, the
2105safest course of action is to clean the source directory and redo this
2106configuration.
2107EOF
2108
d02b48c6
RE
2109exit(0);
2110
bd5192b1
RL
2111######################################################################
2112#
2113# Helpers and utility functions
2114#
2115
2116# Configuration file reading #########################################
2117
1f2e1cd5
RL
2118# Note: All of the helper functions are for lazy evaluation. They all
2119# return a CODE ref, which will return the intended value when evaluated.
2120# Thus, whenever there's mention of a returned value, it's about that
2121# intended value.
2122
bd5192b1 2123# Helper function to implement conditional inheritance depending on the
00b0d663 2124# value of $disabled{asm}. Used in inherit_from values as follows:
bd5192b1
RL
2125#
2126# inherit_from => [ "template", asm("asm_tmpl") ]
2127#
2128sub asm {
2129 my @x = @_;
2130 sub {
00b0d663 2131 $disabled{asm} ? () : @x;
bd5192b1
RL
2132 }
2133}
2134
1f2e1cd5
RL
2135# Helper function to implement conditional value variants, with a default
2136# plus additional values based on the value of $config{build_type}.
2137# Arguments are given in hash table form:
2138#
2139# picker(default => "Basic string: ",
2140# debug => "debug",
2141# release => "release")
2142#
2143# When configuring with --debug, the resulting string will be
2144# "Basic string: debug", and when not, it will be "Basic string: release"
2145#
2146# This can be used to create variants of sets of flags according to the
2147# build type:
2148#
2149# cflags => picker(default => "-Wall",
2150# debug => "-g -O0",
2151# release => "-O3")
2152#
2153sub picker {
2154 my %opts = @_;
2155 return sub { add($opts{default} || (),
2156 $opts{$config{build_type}} || ())->(); }
2157}
2158
2159# Helper function to combine several values of different types into one.
2160# This is useful if you want to combine a string with the result of a
2161# lazy function, such as:
2162#
2163# cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
2164#
2165sub combine {
2166 my @stuff = @_;
2167 return sub { add(@stuff)->(); }
2168}
2169
2170# Helper function to implement conditional values depending on the value
2171# of $disabled{threads}. Can be used as follows:
2172#
2173# cflags => combine("-Wall", threads("-pthread"))
2174#
2175sub threads {
2176 my @flags = @_;
2177 return sub { add($disabled{threads} ? () : @flags)->(); }
2178}
2179
2180
2181
9c62a279 2182our $add_called = 0;
88087414
RL
2183# Helper function to implement adding values to already existing configuration
2184# values. It handles elements that are ARRAYs, CODEs and scalars
2185sub _add {
2186 my $separator = shift;
2187
bcb1977b
RL
2188 # If there's any ARRAY in the collection of values OR the separator
2189 # is undef, we will return an ARRAY of combined values, otherwise a
2190 # string of joined values with $separator as the separator.
2191 my $found_array = !defined($separator);
88087414
RL
2192
2193 my @values =
2194 map {
b0b92a5b
RL
2195 my $res = $_;
2196 while (ref($res) eq "CODE") {
2197 $res = $res->();
2198 }
2199 if (defined($res)) {
2200 if (ref($res) eq "ARRAY") {
2201 $found_array = 1;
2202 @$res;
2203 } else {
2204 $res;
2205 }
88087414 2206 } else {
b0b92a5b 2207 ();
88087414
RL
2208 }
2209 } (@_);
2210
9c62a279
RL
2211 $add_called = 1;
2212
88087414
RL
2213 if ($found_array) {
2214 [ @values ];
2215 } else {
b0b92a5b 2216 join($separator, grep { defined($_) && $_ ne "" } @values);
88087414
RL
2217 }
2218}
2219sub add_before {
bdcd83e1
RL
2220 my $separator = " ";
2221 if (ref($_[$#_]) eq "HASH") {
2222 my $opts = pop;
2223 $separator = $opts->{separator};
2224 }
88087414
RL
2225 my @x = @_;
2226 sub { _add($separator, @x, @_) };
2227}
2228sub add {
bdcd83e1
RL
2229 my $separator = " ";
2230 if (ref($_[$#_]) eq "HASH") {
2231 my $opts = pop;
2232 $separator = $opts->{separator};
2233 }
88087414
RL
2234 my @x = @_;
2235 sub { _add($separator, @_, @x) };
2236}
2237
bd5192b1
RL
2238# configuration reader, evaluates the input file as a perl script and expects
2239# it to fill %targets with target configurations. Those are then added to
2240# %table.
2241sub read_config {
2242 my $fname = shift;
2243 open(CONFFILE, "< $fname")
2244 or die "Can't open configuration file '$fname'!\n";
2245 my $x = $/;
2246 undef $/;
2247 my $content = <CONFFILE>;
2248 $/ = $x;
2249 close(CONFFILE);
2250 my %targets = ();
2251 {
ee9b0bbb
RL
2252 # Protect certain tables from tampering
2253 local %table = %::table;
bd5192b1
RL
2254
2255 eval $content;
2256 warn $@ if $@;
2257 }
2258
2259 # For each target, check that it's configured with a hash table.
2260 foreach (keys %targets) {
2261 if (ref($targets{$_}) ne "HASH") {
2262 if (ref($targets{$_}) eq "") {
2263 warn "Deprecated target configuration for $_, ignoring...\n";
2264 } else {
2265 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
2266 }
2267 delete $targets{$_};
ee9b0bbb
RL
2268 } else {
2269 $targets{$_}->{_conf_fname_int} = add([ $fname ]);
2270 }
bd5192b1
RL
2271 }
2272
2273 %table = (%table, %targets);
2274
2275}
2276
8483a003
F
2277# configuration resolver. Will only resolve all the lazy evaluation
2278# codeblocks for the chosen target and all those it inherits from,
bd5192b1
RL
2279# recursively
2280sub resolve_config {
2281 my $target = shift;
2282 my @breadcrumbs = @_;
2283
c4718849 2284# my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
9c62a279 2285
bd5192b1
RL
2286 if (grep { $_ eq $target } @breadcrumbs) {
2287 die "inherit_from loop! target backtrace:\n "
2288 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
2289 }
2290
2291 if (!defined($table{$target})) {
2292 warn "Warning! target $target doesn't exist!\n";
2293 return ();
2294 }
2295 # Recurse through all inheritances. They will be resolved on the
2296 # fly, so when this operation is done, they will all just be a
2297 # bunch of attributes with string values.
2298 # What we get here, though, are keys with references to lists of
2299 # the combined values of them all. We will deal with lists after
2300 # this stage is done.
2301 my %combined_inheritance = ();
2302 if ($table{$target}->{inherit_from}) {
2303 my @inherit_from =
2304 map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2305 foreach (@inherit_from) {
2306 my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2307
2308 # 'template' is a marker that's considered private to
2309 # the config that had it.
2310 delete $inherited_config{template};
2311
2110febb 2312 foreach (keys %inherited_config) {
bd5192b1
RL
2313 if (!$combined_inheritance{$_}) {
2314 $combined_inheritance{$_} = [];
2315 }
2316 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2110febb 2317 }
bd5192b1
RL
2318 }
2319 }
2320
2321 # We won't need inherit_from in this target any more, since we've
2322 # resolved all the inheritances that lead to this
2323 delete $table{$target}->{inherit_from};
2324
2325 # Now is the time to deal with those lists. Here's the place to
2326 # decide what shall be done with those lists, all based on the
2327 # values of the target we're currently dealing with.
2328 # - If a value is a coderef, it will be executed with the list of
2329 # inherited values as arguments.
2330 # - If the corresponding key doesn't have a value at all or is the
8483a003 2331 # empty string, the inherited value list will be run through the
bd5192b1
RL
2332 # default combiner (below), and the result becomes this target's
2333 # value.
2334 # - Otherwise, this target's value is assumed to be a string that
2335 # will simply override the inherited list of values.
a26d8be9 2336 my $default_combiner = add();
bd5192b1
RL
2337
2338 my %all_keys =
2339 map { $_ => 1 } (keys %combined_inheritance,
2340 keys %{$table{$target}});
b0b92a5b
RL
2341
2342 sub process_values {
2343 my $object = shift;
2344 my $inherited = shift; # Always a [ list ]
2345 my $target = shift;
2346 my $entry = shift;
2347
9c62a279
RL
2348 $add_called = 0;
2349
b0b92a5b
RL
2350 while(ref($object) eq "CODE") {
2351 $object = $object->(@$inherited);
2352 }
2353 if (!defined($object)) {
2354 return ();
2355 }
2356 elsif (ref($object) eq "ARRAY") {
9c62a279 2357 local $add_called; # To make sure recursive calls don't affect it
b0b92a5b
RL
2358 return [ map { process_values($_, $inherited, $target, $entry) }
2359 @$object ];
2360 } elsif (ref($object) eq "") {
2361 return $object;
2362 } else {
2363 die "cannot handle reference type ",ref($object)
2364 ," found in target ",$target," -> ",$entry,"\n";
2365 }
2366 }
2367
bd5192b1 2368 foreach (sort keys %all_keys) {
9c62a279 2369 my $previous = $combined_inheritance{$_};
bd5192b1
RL
2370
2371 # Current target doesn't have a value for the current key?
2372 # Assign it the default combiner, the rest of this loop body
2373 # will handle it just like any other coderef.
2374 if (!exists $table{$target}->{$_}) {
2375 $table{$target}->{$_} = $default_combiner;
2376 }
2377
b0b92a5b
RL
2378 $table{$target}->{$_} = process_values($table{$target}->{$_},
2379 $combined_inheritance{$_},
2380 $target, $_);
2381 unless(defined($table{$target}->{$_})) {
2382 delete $table{$target}->{$_};
2383 }
c4718849
RL
2384# if ($extra_checks &&
2385# $previous && !($add_called || $previous ~~ $table{$target}->{$_})) {
2386# warn "$_ got replaced in $target\n";
2387# }
bd5192b1
RL
2388 }
2389
2390 # Finally done, return the result.
2391 return %{$table{$target}};
2392}
2393
462ba4f6 2394sub usage
d02b48c6 2395 {
462ba4f6 2396 print STDERR $usage;
10a926c1 2397 print STDERR "\npick os/compiler from:\n";
1641cb60 2398 my $j=0;
6457ad15 2399 my $i;
10a926c1 2400 my $k=0;
6457ad15 2401 foreach $i (sort keys %table)
d02b48c6 2402 {
bd5192b1 2403 next if $table{$i}->{template};
462ba4f6 2404 next if $i =~ /^debug/;
10a926c1
UM
2405 $k += length($i) + 1;
2406 if ($k > 78)
2407 {
2408 print STDERR "\n";
2409 $k=length($i);
2410 }
2411 print STDERR $i . " ";
462ba4f6
UM
2412 }
2413 foreach $i (sort keys %table)
2414 {
bd5192b1 2415 next if $table{$i}->{template};
462ba4f6 2416 next if $i !~ /^debug/;
10a926c1
UM
2417 $k += length($i) + 1;
2418 if ($k > 78)
2419 {
2420 print STDERR "\n";
2421 $k=length($i);
2422 }
2423 print STDERR $i . " ";
d02b48c6 2424 }
10a926c1 2425 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 2426 exit(1);
d02b48c6
RE
2427 }
2428
01d99976 2429sub run_dofile
107b5792 2430{
107b5792 2431 my $out = shift;
9fe2bb77 2432 my @templates = @_;
107b5792 2433
ced2c2c5
RS
2434 unlink $out || warn "Can't remove $out, $!"
2435 if -f $out;
9fe2bb77
RL
2436 foreach (@templates) {
2437 die "Can't open $_, $!" unless -f $_;
2438 }
f879d5ff
RL
2439 my $perlcmd = (quotify("maybeshell", $config{perl}))[0];
2440 my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
9fe2bb77
RL
2441 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2442 system($cmd);
107b5792
RL
2443 exit 1 if $? != 0;
2444 rename("$out.new", $out) || die "Can't rename $out.new, $!";
2445}
2446
656bbdc6
AP
2447sub which
2448{
2449 my ($name)=@_;
2450
2451 if (eval { require IPC::Cmd; 1; }) {
2452 IPC::Cmd->import();
2453 return scalar IPC::Cmd::can_run($name);
2454 } else {
2455 # if there is $directories component in splitpath,
2456 # then it's not something to test with $PATH...
2457 return $name if (File::Spec->splitpath($name))[1];
2458
2459 foreach (File::Spec->path()) {
2460 my $fullpath = catfile($_, "$name$target{exe_extension}");
2461 if (-f $fullpath and -x $fullpath) {
2462 return $fullpath;
2463 }
2464 }
2465 }
2466}
2467
00ae96ca
RL
2468# Configuration printer ##############################################
2469
2470sub print_table_entry
2471{
2472 my $target = shift;
2473 my %target = resolve_config($target);
2474 my $type = shift;
2475
2476 # Don't print the templates
2477 return if $target{template};
2478
2479 my @sequence = (
f0bd4686 2480 "sys_id",
00ae96ca
RL
2481 "cc",
2482 "cflags",
bcb1977b 2483 "defines",
f0bd4686
RL
2484 "unistd",
2485 "ld",
00ae96ca 2486 "lflags",
0c0d78b8 2487 "loutflag",
c86ddbe6 2488 "plib_lflags",
1740c162 2489 "ex_libs",
00ae96ca 2490 "bn_ops",
0c0d78b8
RL
2491 "apps_aux_src",
2492 "cpuid_asm_src",
2493 "uplink_aux_src",
2494 "bn_asm_src",
2495 "ec_asm_src",
2496 "des_asm_src",
2497 "aes_asm_src",
2498 "bf_asm_src",
2499 "md5_asm_src",
2500 "cast_asm_src",
2501 "sha1_asm_src",
2502 "rc4_asm_src",
2503 "rmd160_asm_src",
2504 "rc5_asm_src",
2505 "wp_asm_src",
2506 "cmll_asm_src",
2507 "modes_asm_src",
2508 "padlock_asm_src",
2509 "chacha_asm_src",
2510 "poly1035_asm_src",
9c62a279 2511 "thread_scheme",
00ae96ca
RL
2512 "perlasm_scheme",
2513 "dso_scheme",
2514 "shared_target",
2515 "shared_cflag",
0c0d78b8 2516 "shared_defines",
00ae96ca 2517 "shared_ldflag",
64c443e3 2518 "shared_rcflag",
00ae96ca 2519 "shared_extension",
e987f9f2 2520 "dso_extension",
f0bd4686
RL
2521 "obj_extension",
2522 "exe_extension",
00ae96ca 2523 "ranlib",
f0bd4686 2524 "ar",
00ae96ca 2525 "arflags",
0c0d78b8
RL
2526 "aroutflag",
2527 "rc",
2528 "rcflags",
2529 "rcoutflag",
2530 "mt",
2531 "mtflags",
2532 "mtinflag",
2533 "mtoutflag",
00ae96ca 2534 "multilib",
f0bd4686 2535 "build_scheme",
00ae96ca
RL
2536 );
2537
2538 if ($type eq "TABLE") {
2539 print "\n";
2540 print "*** $target\n";
cb212f23
RL
2541 foreach (@sequence) {
2542 if (ref($target{$_}) eq "ARRAY") {
2543 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
2544 } else {
2545 printf "\$%-12s = %s\n", $_, $target{$_};
2546 }
2547 }
00ae96ca
RL
2548 } elsif ($type eq "HASH") {
2549 my $largest =
2550 length((sort { length($a) <=> length($b) } @sequence)[-1]);
2551 print " '$target' => {\n";
2552 foreach (@sequence) {
2553 if ($target{$_}) {
cb212f23
RL
2554 if (ref($target{$_}) eq "ARRAY") {
2555 print " '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
2556 } else {
2557 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
2558 }
00ae96ca
RL
2559 }
2560 }
2561 print " },\n";
2562 }
2563}
2564
2565# Utility routines ###################################################
2566
2e963849
RL
2567# On VMS, if the given file is a logical name, File::Spec::Functions
2568# will consider it an absolute path. There are cases when we want a
2569# purely syntactic check without checking the environment.
2570sub isabsolute {
2571 my $file = shift;
2572
2573 # On non-platforms, we just use file_name_is_absolute().
2574 return file_name_is_absolute($file) unless $^O eq "VMS";
2575
2576 # If the file spec includes a device or a directpry spec,
2577 # file_name_is_absolute() is perfectly safe.
2578 return file_name_is_absolute($file) if $file =~ m|[:\[]|;
2579
2580 # Here, we know the given file spec isn't absolute
2581 return 0;
2582}
2583
ec182ef0
RL
2584# Makes a directory absolute and cleans out /../ in paths like foo/../bar
2585# On some platforms, this uses rel2abs(), while on others, realpath() is used.
2586# realpath() requires that at least all path components except the last is an
2587# existing directory. On VMS, the last component of the directory spec must
2588# exist.
2589sub absolutedir {
2590 my $dir = shift;
2591
2592 # realpath() is quite buggy on VMS. It uses LIB$FID_TO_NAME, which
2593 # will return the volume name for the device, no matter what. Also,
2594 # it will return an incorrect directory spec if the argument is a
2595 # directory that doesn't exist.
2596 if ($^O eq "VMS") {
2597 return rel2abs($dir);
2598 }
2599
2600 # We use realpath() on Unix, since no other will properly clean out
2601 # a directory spec.
2602 use Cwd qw/realpath/;
2603
2604 return realpath($dir);
2605}
2606
fe05264e
RL
2607sub quotify {
2608 my %processors = (
2609 perl => sub { my $x = shift;
2610 $x =~ s/([\\\$\@"])/\\$1/g;
2611 return '"'.$x.'"'; },
f879d5ff
RL
2612 maybeshell => sub { my $x = shift;
2613 (my $y = $x) =~ s/([\\\"])/\\$1/g;
2614 if ($x ne $y || $x =~ m|\s|) {
2615 return '"'.$y.'"';
2616 } else {
2617 return $x;
2618 }
2619 },
fe05264e
RL
2620 );
2621 my $for = shift;
2622 my $processor =
2623 defined($processors{$for}) ? $processors{$for} : sub { shift; };
2624
2110febb 2625 return map { $processor->($_); } @_;
fe05264e 2626}
107b5792 2627
9fe2bb77
RL
2628# collect_from_file($filename, $line_concat_cond_re, $line_concat)
2629# $filename is a file name to read from
2630# $line_concat_cond_re is a regexp detecting a line continuation ending
2631# $line_concat is a CODEref that takes care of concatenating two lines
2632sub collect_from_file {
2633 my $filename = shift;
2634 my $line_concat_cond_re = shift;
2635 my $line_concat = shift;
2636
2637 open my $fh, $filename || die "unable to read $filename: $!\n";
2638 return sub {
2639 my $saved_line = "";
2640 $_ = "";
2641 while (<$fh>) {
04f171c0 2642 s|\R$||;
9fe2bb77
RL
2643 if (defined $line_concat) {
2644 $_ = $line_concat->($saved_line, $_);
2645 $saved_line = "";
2646 }
2647 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2648 $saved_line = $_;
2649 next;
2650 }
2651 return $_;
2652 }
2653 die "$filename ending with continuation line\n" if $_;
2654 close $fh;
2655 return undef;
2656 }
2657}
2658
2659# collect_from_array($array, $line_concat_cond_re, $line_concat)
2660# $array is an ARRAYref of lines
2661# $line_concat_cond_re is a regexp detecting a line continuation ending
2662# $line_concat is a CODEref that takes care of concatenating two lines
2663sub collect_from_array {
2664 my $array = shift;
2665 my $line_concat_cond_re = shift;
2666 my $line_concat = shift;
2667 my @array = (@$array);
2668
2669 return sub {
2670 my $saved_line = "";
2671 $_ = "";
2672 while (defined($_ = shift @array)) {
04f171c0 2673 s|\R$||;
9fe2bb77
RL
2674 if (defined $line_concat) {
2675 $_ = $line_concat->($saved_line, $_);
2676 $saved_line = "";
2677 }
2678 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2679 $saved_line = $_;
2680 next;
2681 }
2682 return $_;
2683 }
2684 die "input text ending with continuation line\n" if $_;
2685 return undef;
2686 }
2687}
2688
2689# collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
2690# $lineiterator is a CODEref that delivers one line at a time.
107b5792
RL
2691# All following arguments are regex/CODEref pairs, where the regexp detects a
2692# line and the CODEref does something with the result of the regexp.
2693sub collect_information {
9fe2bb77 2694 my $lineiterator = shift;
107b5792
RL
2695 my %collectors = @_;
2696
9fe2bb77 2697 while(defined($_ = $lineiterator->())) {
04f171c0 2698 s|\R$||;
9fe2bb77 2699 my $found = 0;
2b6b606c
RL
2700 if ($collectors{"BEFORE"}) {
2701 $collectors{"BEFORE"}->($_);
2702 }
9fe2bb77 2703 foreach my $re (keys %collectors) {
2b6b606c 2704 if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
9fe2bb77
RL
2705 $collectors{$re}->($lineiterator);
2706 $found = 1;
2707 };
2708 }
2709 if ($collectors{"OTHERWISE"}) {
2710 $collectors{"OTHERWISE"}->($lineiterator, $_)
2711 unless $found || !defined $collectors{"OTHERWISE"};
2712 }
2b6b606c
RL
2713 if ($collectors{"AFTER"}) {
2714 $collectors{"AFTER"}->($_);
2715 }
107b5792 2716 }
107b5792 2717}
ce959812
RL
2718
2719# tokenize($line)
2720# $line is a line of text to split up into tokens
2721# returns a list of tokens
2722#
2723# Tokens are divided by spaces. If the tokens include spaces, they
2724# have to be quoted with single or double quotes. Double quotes
2725# inside a double quoted token must be escaped. Escaping is done
2726# with backslash.
2727# Basically, the same quoting rules apply for " and ' as in any
2728# Unix shell.
2729sub tokenize {
2730 my $line = my $debug_line = shift;
2731 my @result = ();
2732
2733 while ($line =~ s|^\s+||, $line ne "") {
2734 my $token = "";
2735 while ($line ne "" && $line !~ m|^\s|) {
2736 if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
2737 $token .= $1;
2738 $line = $';
2739 } elsif ($line =~ m/^'([^']*)'/) {
2740 $token .= $1;
2741 $line = $';
2742 } elsif ($line =~ m/^(\S+)/) {
2743 $token .= $1;
2744 $line = $';
2745 }
2746 }
2747 push @result, $token;
2748 }
2749
2750 if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
2751 print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
2752 print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
2753 }
2754 return @result;
2755}