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