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