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