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