Home | History | Annotate | Line # | Download | only in dist
Configure revision 1.24.2.1
      1      1.18  christos #! /usr/bin/env perl
      2      1.18  christos # -*- mode: perl; -*-
      3      1.23  christos # Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved.
      4      1.18  christos #
      5      1.18  christos # Licensed under the OpenSSL license (the "License").  You may not use
      6      1.18  christos # this file except in compliance with the License.  You can obtain a copy
      7      1.18  christos # in the file LICENSE in the source distribution or at
      8      1.18  christos # https://www.openssl.org/source/license.html
      9      1.18  christos 
     10       1.1  christos ##  Configure -- OpenSSL source tree configuration script
     11       1.1  christos 
     12      1.18  christos use 5.10.0;
     13       1.1  christos use strict;
     14      1.21  christos use Config;
     15      1.19  christos use FindBin;
     16      1.19  christos use lib "$FindBin::Bin/util/perl";
     17      1.18  christos use File::Basename;
     18      1.18  christos use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
     19      1.18  christos use File::Path qw/mkpath/;
     20      1.19  christos use OpenSSL::Glob;
     21       1.1  christos 
     22       1.1  christos # see INSTALL for instructions.
     23       1.1  christos 
     24      1.20  christos my $orig_death_handler = $SIG{__DIE__};
     25      1.20  christos $SIG{__DIE__} = \&death_handler;
     26      1.20  christos 
     27      1.24  christos 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-egd] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--config=FILE] os/compiler[:flags]\n";
     28       1.1  christos 
     29       1.1  christos # Options:
     30       1.1  christos #
     31      1.18  christos # --config      add the given configuration file, which will be read after
     32      1.18  christos #               any "Configurations*" files that are found in the same
     33      1.18  christos #               directory as this script.
     34      1.18  christos # --prefix      prefix for the OpenSSL installation, which includes the
     35      1.18  christos #               directories bin, lib, include, share/man, share/doc/openssl
     36      1.18  christos #               This becomes the value of INSTALLTOP in Makefile
     37      1.18  christos #               (Default: /usr/local)
     38      1.18  christos # --openssldir  OpenSSL data area, such as openssl.cnf, certificates and keys.
     39      1.18  christos #               If it's a relative directory, it will be added on the directory
     40      1.18  christos #               given with --prefix.
     41      1.18  christos #               This becomes the value of OPENSSLDIR in Makefile and in C.
     42      1.18  christos #               (Default: PREFIX/ssl)
     43       1.1  christos #
     44      1.18  christos # --cross-compile-prefix Add specified prefix to binutils components.
     45       1.1  christos #
     46      1.18  christos # --api         One of 0.9.8, 1.0.0 or 1.1.0.  Do not compile support for
     47      1.18  christos #               interfaces deprecated as of the specified OpenSSL version.
     48       1.1  christos #
     49       1.1  christos # no-hw-xxx     do not compile support for specific crypto hardware.
     50       1.1  christos #               Generic OpenSSL-style methods relating to this support
     51       1.1  christos #               are always compiled but return NULL if the hardware
     52       1.1  christos #               support isn't compiled.
     53       1.1  christos # no-hw         do not compile support for any crypto hardware.
     54       1.1  christos # [no-]threads  [don't] try to create a library that is suitable for
     55       1.1  christos #               multithreaded applications (default is "threads" if we
     56       1.1  christos #               know how to do it)
     57      1.24  christos # [no-]shared   [don't] try to create shared libraries when supported.
     58      1.18  christos # [no-]pic      [don't] try to build position independent code when supported.
     59      1.18  christos #               If disabled, it also disables shared and dynamic-engine.
     60       1.1  christos # no-asm        do not use assembler
     61      1.18  christos # no-egd        do not compile support for the entropy-gathering daemon APIs
     62       1.1  christos # [no-]zlib     [don't] compile support for zlib compression.
     63      1.24  christos # zlib-dynamic  Like "zlib", but the zlib library is expected to be a shared
     64      1.24  christos #               library and will be loaded in run-time by the OpenSSL library.
     65       1.3  christos # sctp          include SCTP support
     66      1.15  christos # enable-weak-ssl-ciphers
     67      1.18  christos #               Enable weak ciphers that are disabled by default.
     68      1.18  christos # 386           generate 80386 code in assembly modules
     69      1.18  christos # no-sse2       disables IA-32 SSE2 code in assembly modules, the above
     70      1.18  christos #               mentioned '386' option implies this one
     71       1.1  christos # no-<cipher>   build without specified algorithm (rsa, idea, rc5, ...)
     72      1.18  christos # -<xxx> +<xxx> compiler options are passed through
     73      1.18  christos # -static       while -static is also a pass-through compiler option (and
     74      1.18  christos #               as such is limited to environments where it's actually
     75      1.18  christos #               meaningful), it triggers a number configuration options,
     76      1.24  christos #               namely no-pic, no-shared and no-threads. It is
     77      1.18  christos #               argued that the only reason to produce statically linked
     78      1.18  christos #               binaries (and in context it means executables linked with
     79      1.18  christos #               -static flag, and not just executables linked with static
     80      1.18  christos #               libcrypto.a) is to eliminate dependency on specific run-time,
     81      1.18  christos #               a.k.a. libc version. The mentioned config options are meant
     82      1.18  christos #               to achieve just that. Unfortunately on Linux it's impossible
     83      1.18  christos #               to eliminate the dependency completely for openssl executable
     84      1.18  christos #               because of getaddrinfo and gethostbyname calls, which can
     85      1.18  christos #               invoke dynamically loadable library facility anyway to meet
     86      1.18  christos #               the lookup requests. For this reason on Linux statically
     87      1.18  christos #               linked openssl executable has rather debugging value than
     88      1.18  christos #               production quality.
     89       1.1  christos #
     90      1.24  christos # BN_LLONG      use the type 'long long' in crypto/bn/bn.h
     91      1.24  christos # RC4_CHAR      use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
     92       1.1  christos # Following are set automatically by this script
     93       1.1  christos #
     94      1.24  christos # MD5_ASM       use some extra md5 assembler,
     95      1.24  christos # SHA1_ASM      use some extra sha1 assembler, must define L_ENDIAN for x86
     96      1.24  christos # RMD160_ASM    use some extra ripemd160 assembler,
     97      1.24  christos # SHA256_ASM    sha256_block is implemented in assembler
     98      1.24  christos # SHA512_ASM    sha512_block is implemented in assembler
     99      1.24  christos # AES_ASM       AES_[en|de]crypt is implemented in assembler
    100      1.24  christos 
    101      1.24  christos # Minimum warning options... any contributions to OpenSSL should at least
    102      1.24  christos # get past these.  Note that we only use these with C compilers, not with
    103      1.24  christos # C++ compilers.
    104       1.1  christos 
    105      1.18  christos # DEBUG_UNUSED enables __owur (warn unused result) checks.
    106      1.21  christos # -DPEDANTIC complements -pedantic and is meant to mask code that
    107      1.21  christos # is not strictly standard-compliant and/or implementation-specific,
    108      1.21  christos # e.g. inline assembly, disregards to alignment requirements, such
    109      1.21  christos # that -pedantic would complain about. Incidentally -DPEDANTIC has
    110      1.21  christos # to be used even in sanitized builds, because sanitizer too is
    111      1.21  christos # supposed to and does take notice of non-standard behaviour. Then
    112      1.21  christos # -pedantic with pre-C9x compiler would also complain about 'long
    113      1.21  christos # long' not being supported. As 64-bit algorithms are common now,
    114      1.21  christos # it grew impossible to resolve this without sizeable additional
    115      1.21  christos # code, so we just tell compiler to be pedantic about everything
    116      1.21  christos # but 'long long' type.
    117      1.21  christos 
    118      1.24  christos my @gcc_devteam_warn = qw(
    119      1.24  christos     -DDEBUG_UNUSED
    120      1.24  christos     -DPEDANTIC -pedantic -Wno-long-long
    121      1.24  christos     -Wall
    122      1.24  christos     -Wextra
    123      1.24  christos     -Wno-unused-parameter
    124      1.24  christos     -Wno-missing-field-initializers
    125      1.24  christos     -Wswitch
    126      1.24  christos     -Wsign-compare
    127      1.24  christos     -Wshadow
    128      1.24  christos     -Wformat
    129      1.24  christos     -Wtype-limits
    130      1.24  christos     -Wundef
    131      1.24  christos     -Werror
    132      1.24  christos     -Wmissing-prototypes
    133      1.24  christos     -Wstrict-prototypes
    134      1.24  christos );
    135      1.16       spz 
    136      1.16       spz # These are used in addition to $gcc_devteam_warn when the compiler is clang.
    137      1.16       spz # TODO(openssl-team): fix problems and investigate if (at least) the
    138      1.18  christos # following warnings can also be enabled:
    139      1.18  christos #       -Wcast-align
    140      1.21  christos #       -Wunreachable-code -- no, too ugly/compiler-specific
    141      1.18  christos #       -Wlanguage-extension-token -- no, we use asm()
    142      1.18  christos #       -Wunused-macros -- no, too tricky for BN and _XOPEN_SOURCE etc
    143      1.18  christos #       -Wextended-offsetof -- no, needed in CMS ASN1 code
    144      1.24  christos my @clang_devteam_warn = qw(
    145  1.24.2.1    martin     -Wno-unknown-warning-option
    146      1.24  christos     -Wswitch-default
    147      1.24  christos     -Wno-parentheses-equality
    148      1.24  christos     -Wno-language-extension-token
    149      1.24  christos     -Wno-extended-offsetof
    150      1.24  christos     -Wconditional-uninitialized
    151      1.24  christos     -Wincompatible-pointer-types-discards-qualifiers
    152      1.24  christos     -Wmissing-variable-declarations
    153      1.24  christos );
    154      1.18  christos 
    155      1.18  christos # This adds backtrace information to the memory leak info.  Is only used
    156      1.18  christos # when crypto-mdebug-backtrace is enabled.
    157      1.18  christos my $memleak_devteam_backtrace = "-rdynamic";
    158      1.14  christos 
    159       1.2       spz my $strict_warnings = 0;
    160       1.2       spz 
    161       1.1  christos # As for $BSDthreads. Idea is to maintain "collective" set of flags,
    162      1.18  christos # which would cover all BSD flavors. -pthread applies to them all,
    163       1.1  christos # but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
    164       1.1  christos # -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
    165       1.1  christos # which has to be accompanied by explicit -D_THREAD_SAFE and
    166       1.1  christos # sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
    167       1.1  christos # seems to be sufficient?
    168      1.18  christos our $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
    169      1.18  christos 
    170      1.18  christos #
    171      1.18  christos # API compatibility name to version number mapping.
    172      1.18  christos #
    173      1.18  christos my $maxapi = "1.1.0";           # API for "no-deprecated" builds
    174      1.18  christos my $apitable = {
    175      1.18  christos     "1.1.0" => "0x10100000L",
    176      1.18  christos     "1.0.0" => "0x10000000L",
    177      1.18  christos     "0.9.8" => "0x00908000L",
    178      1.18  christos };
    179      1.18  christos 
    180      1.18  christos our %table = ();
    181      1.18  christos our %config = ();
    182      1.18  christos our %withargs = ();
    183      1.21  christos our $now_printing;      # set to current entry's name in print_table_entry
    184      1.21  christos                         # (todo: right thing would be to encapsulate name
    185      1.21  christos                         # into %target [class] and make print_table_entry
    186      1.21  christos                         # a method)
    187      1.18  christos 
    188      1.18  christos # Forward declarations ###############################################
    189      1.18  christos 
    190      1.18  christos # read_config(filename)
    191      1.18  christos #
    192      1.18  christos # Reads a configuration file and populates %table with the contents
    193      1.18  christos # (which the configuration file places in %targets).
    194      1.18  christos sub read_config;
    195      1.18  christos 
    196      1.18  christos # resolve_config(target)
    197      1.18  christos #
    198      1.18  christos # Resolves all the late evaluations, inheritances and so on for the
    199      1.18  christos # chosen target and any target it inherits from.
    200      1.18  christos sub resolve_config;
    201      1.18  christos 
    202      1.18  christos 
    203      1.18  christos # Information collection #############################################
    204      1.18  christos 
    205      1.18  christos # Unified build supports separate build dir
    206      1.18  christos my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
    207      1.18  christos my $blddir = catdir(absolutedir("."));         # catdir ensures local syntax
    208      1.18  christos my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
    209      1.18  christos 
    210      1.18  christos my $local_config_envname = 'OPENSSL_LOCAL_CONFIG_DIR';
    211      1.18  christos 
    212      1.18  christos $config{sourcedir} = abs2rel($srcdir);
    213      1.18  christos $config{builddir} = abs2rel($blddir);
    214      1.18  christos 
    215      1.18  christos # Collect reconfiguration information if needed
    216      1.18  christos my @argvcopy=@ARGV;
    217      1.18  christos 
    218      1.18  christos if (grep /^reconf(igure)?$/, @argvcopy) {
    219      1.21  christos     die "reconfiguring with other arguments present isn't supported"
    220      1.21  christos         if scalar @argvcopy > 1;
    221      1.18  christos     if (-f "./configdata.pm") {
    222      1.24  christos         my $file = "./configdata.pm";
    223      1.24  christos         unless (my $return = do $file) {
    224      1.24  christos             die "couldn't parse $file: $@" if $@;
    225      1.18  christos             die "couldn't do $file: $!"    unless defined $return;
    226      1.18  christos             die "couldn't run $file"       unless $return;
    227      1.24  christos         }
    228      1.18  christos 
    229      1.24  christos         @argvcopy = defined($configdata::config{perlargv}) ?
    230      1.24  christos             @{$configdata::config{perlargv}} : ();
    231      1.24  christos         die "Incorrect data to reconfigure, please do a normal configuration\n"
    232      1.24  christos             if (grep(/^reconf/,@argvcopy));
    233      1.24  christos         $config{perlenv} = $configdata::config{perlenv} // {};
    234      1.18  christos     } else {
    235      1.24  christos         die "Insufficient data to reconfigure, please do a normal configuration\n";
    236      1.18  christos     }
    237      1.18  christos }
    238      1.18  christos 
    239      1.18  christos $config{perlargv} = [ @argvcopy ];
    240       1.1  christos 
    241      1.18  christos # Collect version numbers
    242      1.18  christos $config{version} = "unknown";
    243      1.18  christos $config{version_num} = "unknown";
    244      1.18  christos $config{shlib_version_number} = "unknown";
    245      1.18  christos $config{shlib_version_history} = "unknown";
    246      1.18  christos 
    247      1.18  christos collect_information(
    248      1.18  christos     collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
    249      1.18  christos     qr/OPENSSL.VERSION.TEXT.*OpenSSL (\S+) / => sub { $config{version} = $1; },
    250      1.24  christos     qr/OPENSSL.VERSION.NUMBER.*(0x\S+)/      => sub { $config{version_num}=$1 },
    251      1.24  christos     qr/SHLIB_VERSION_NUMBER *"([^"]+)"/      => sub { $config{shlib_version_number}=$1 },
    252      1.18  christos     qr/SHLIB_VERSION_HISTORY *"([^"]*)"/     => sub { $config{shlib_version_history}=$1 }
    253      1.18  christos     );
    254      1.18  christos if ($config{shlib_version_history} ne "") { $config{shlib_version_history} .= ":"; }
    255      1.18  christos 
    256      1.18  christos ($config{major}, $config{minor})
    257      1.18  christos     = ($config{version} =~ /^([0-9]+)\.([0-9\.]+)/);
    258      1.18  christos ($config{shlib_major}, $config{shlib_minor})
    259      1.18  christos     = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/);
    260      1.18  christos die "erroneous version information in opensslv.h: ",
    261      1.18  christos     "$config{major}, $config{minor}, $config{shlib_major}, $config{shlib_minor}\n"
    262      1.18  christos     if ($config{major} eq "" || $config{minor} eq ""
    263      1.24  christos         || $config{shlib_major} eq "" ||  $config{shlib_minor} eq "");
    264      1.18  christos 
    265      1.18  christos # Collect target configurations
    266      1.18  christos 
    267      1.18  christos my $pattern = catfile(dirname($0), "Configurations", "*.conf");
    268      1.18  christos foreach (sort glob($pattern)) {
    269      1.18  christos     &read_config($_);
    270      1.18  christos }
    271       1.1  christos 
    272      1.21  christos if (defined env($local_config_envname)) {
    273      1.18  christos     if ($^O eq 'VMS') {
    274      1.18  christos         # VMS environment variables are logical names,
    275      1.18  christos         # which can be used as is
    276      1.18  christos         $pattern = $local_config_envname . ':' . '*.conf';
    277      1.18  christos     } else {
    278      1.21  christos         $pattern = catfile(env($local_config_envname), '*.conf');
    279      1.18  christos     }
    280      1.18  christos 
    281      1.18  christos     foreach (sort glob($pattern)) {
    282      1.18  christos         &read_config($_);
    283      1.18  christos     }
    284      1.18  christos }
    285       1.1  christos 
    286      1.21  christos # Save away perl command information
    287      1.21  christos $config{perl_cmd} = $^X;
    288      1.21  christos $config{perl_version} = $Config{version};
    289      1.21  christos $config{perl_archname} = $Config{archname};
    290      1.18  christos 
    291      1.18  christos $config{prefix}="";
    292      1.18  christos $config{openssldir}="";
    293      1.18  christos $config{processor}="";
    294      1.18  christos $config{libdir}="";
    295      1.18  christos my $auto_threads=1;    # enable threads automatically? true by default
    296       1.1  christos my $default_ranlib;
    297       1.1  christos 
    298      1.18  christos # Top level directories to build
    299      1.18  christos $config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "util", "tools", "fuzz" ];
    300      1.18  christos # crypto/ subdirectories to build
    301      1.18  christos $config{sdirs} = [
    302      1.18  christos     "objects",
    303      1.21  christos     "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305", "blake2", "siphash", "sm3",
    304      1.21  christos     "des", "aes", "rc2", "rc4", "rc5", "idea", "aria", "bf", "cast", "camellia", "seed", "sm4", "chacha", "modes",
    305      1.21  christos     "bn", "ec", "rsa", "dsa", "dh", "sm2", "dso", "engine",
    306      1.18  christos     "buffer", "bio", "stack", "lhash", "rand", "err",
    307      1.18  christos     "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "comp", "ocsp", "ui",
    308      1.21  christos     "cms", "ts", "srp", "cmac", "ct", "async", "kdf", "store"
    309      1.18  christos     ];
    310      1.21  christos # test/ subdirectories to build
    311      1.21  christos $config{tdirs} = [ "ossl_shim" ];
    312      1.18  christos 
    313      1.18  christos # Known TLS and DTLS protocols
    314      1.21  christos my @tls = qw(ssl3 tls1 tls1_1 tls1_2 tls1_3);
    315      1.18  christos my @dtls = qw(dtls1 dtls1_2);
    316      1.18  christos 
    317      1.18  christos # Explicitly known options that are possible to disable.  They can
    318      1.18  christos # be regexps, and will be used like this: /^no-${option}$/
    319      1.18  christos # For developers: keep it sorted alphabetically
    320      1.18  christos 
    321      1.18  christos my @disablables = (
    322      1.18  christos     "afalgeng",
    323      1.21  christos     "aria",
    324      1.18  christos     "asan",
    325      1.18  christos     "asm",
    326      1.18  christos     "async",
    327      1.18  christos     "autoalginit",
    328      1.18  christos     "autoerrinit",
    329      1.21  christos     "autoload-config",
    330      1.18  christos     "bf",
    331      1.18  christos     "blake2",
    332      1.24  christos     "buildtest-c\\+\\+",
    333      1.18  christos     "camellia",
    334      1.18  christos     "capieng",
    335      1.18  christos     "cast",
    336      1.18  christos     "chacha",
    337      1.18  christos     "cmac",
    338      1.18  christos     "cms",
    339      1.18  christos     "comp",
    340      1.18  christos     "crypto-mdebug",
    341      1.18  christos     "crypto-mdebug-backtrace",
    342      1.18  christos     "ct",
    343      1.18  christos     "deprecated",
    344      1.18  christos     "des",
    345      1.21  christos     "devcryptoeng",
    346      1.18  christos     "dgram",
    347      1.18  christos     "dh",
    348      1.18  christos     "dsa",
    349      1.18  christos     "dtls",
    350      1.18  christos     "dynamic-engine",
    351      1.18  christos     "ec",
    352      1.18  christos     "ec2m",
    353      1.18  christos     "ecdh",
    354      1.18  christos     "ecdsa",
    355      1.18  christos     "ec_nistp_64_gcc_128",
    356      1.18  christos     "egd",
    357      1.18  christos     "engine",
    358      1.18  christos     "err",
    359      1.21  christos     "external-tests",
    360      1.18  christos     "filenames",
    361      1.18  christos     "fuzz-libfuzzer",
    362      1.18  christos     "fuzz-afl",
    363      1.18  christos     "gost",
    364      1.18  christos     "heartbeats",
    365      1.18  christos     "hw(-.+)?",
    366      1.18  christos     "idea",
    367      1.18  christos     "makedepend",
    368      1.18  christos     "md2",
    369      1.18  christos     "md4",
    370      1.18  christos     "mdc2",
    371      1.18  christos     "msan",
    372      1.18  christos     "multiblock",
    373      1.18  christos     "nextprotoneg",
    374      1.23  christos     "pinshared",
    375      1.18  christos     "ocb",
    376      1.18  christos     "ocsp",
    377      1.18  christos     "pic",
    378      1.18  christos     "poly1305",
    379      1.18  christos     "posix-io",
    380      1.18  christos     "psk",
    381      1.18  christos     "rc2",
    382      1.18  christos     "rc4",
    383      1.18  christos     "rc5",
    384      1.18  christos     "rdrand",
    385      1.18  christos     "rfc3779",
    386      1.18  christos     "rmd160",
    387      1.18  christos     "scrypt",
    388      1.18  christos     "sctp",
    389      1.18  christos     "seed",
    390      1.18  christos     "shared",
    391      1.21  christos     "siphash",
    392      1.21  christos     "sm2",
    393      1.21  christos     "sm3",
    394      1.21  christos     "sm4",
    395      1.18  christos     "sock",
    396      1.18  christos     "srp",
    397      1.18  christos     "srtp",
    398      1.18  christos     "sse2",
    399      1.18  christos     "ssl",
    400      1.18  christos     "ssl-trace",
    401      1.18  christos     "static-engine",
    402      1.18  christos     "stdio",
    403      1.21  christos     "tests",
    404      1.18  christos     "threads",
    405      1.18  christos     "tls",
    406      1.18  christos     "ts",
    407      1.18  christos     "ubsan",
    408      1.21  christos     "ui-console",
    409      1.18  christos     "unit-test",
    410      1.18  christos     "whirlpool",
    411      1.18  christos     "weak-ssl-ciphers",
    412      1.18  christos     "zlib",
    413      1.18  christos     "zlib-dynamic",
    414      1.18  christos     );
    415      1.18  christos foreach my $proto ((@tls, @dtls))
    416      1.24  christos         {
    417      1.24  christos         push(@disablables, $proto);
    418      1.24  christos         push(@disablables, "$proto-method") unless $proto eq "tls1_3";
    419      1.24  christos         }
    420      1.18  christos 
    421      1.18  christos my %deprecated_disablables = (
    422      1.18  christos     "ssl2" => undef,
    423      1.18  christos     "buf-freelists" => undef,
    424      1.21  christos     "ripemd" => "rmd160",
    425      1.21  christos     "ui" => "ui-console",
    426      1.24  christos     "dso" => "",                # Empty string means we're silent about it
    427      1.18  christos     );
    428       1.1  christos 
    429      1.21  christos # All of the following are disabled by default:
    430       1.1  christos 
    431      1.18  christos our %disabled = ( # "what"         => "comment"
    432      1.24  christos                   "asan"                => "default",
    433      1.24  christos                   "buildtest-c++"       => "default",
    434      1.24  christos                   "crypto-mdebug"       => "default",
    435      1.24  christos                   "crypto-mdebug-backtrace" => "default",
    436      1.24  christos                   "devcryptoeng"        => "default",
    437      1.24  christos                   "ec_nistp_64_gcc_128" => "default",
    438      1.24  christos                   "egd"                 => "default",
    439      1.24  christos                   "external-tests"      => "default",
    440      1.24  christos                   "fuzz-libfuzzer"      => "default",
    441      1.24  christos                   "fuzz-afl"            => "default",
    442      1.24  christos                   "heartbeats"          => "default",
    443      1.24  christos                   "md2"                 => "default",
    444      1.18  christos                   "msan"                => "default",
    445      1.24  christos                   "rc5"                 => "default",
    446      1.24  christos                   "sctp"                => "default",
    447      1.24  christos                   "ssl-trace"           => "default",
    448      1.24  christos                   "ssl3"                => "default",
    449      1.24  christos                   "ssl3-method"         => "default",
    450      1.24  christos                   "ubsan"               => "default",
    451      1.24  christos                   "unit-test"           => "default",
    452      1.24  christos                   "weak-ssl-ciphers"    => "default",
    453      1.24  christos                   "zlib"                => "default",
    454      1.24  christos                   "zlib-dynamic"        => "default",
    455      1.24  christos                 );
    456      1.18  christos 
    457      1.18  christos # Note: => pair form used for aesthetics, not to truly make a hash table
    458      1.18  christos my @disable_cascades = (
    459      1.24  christos     # "what"            => [ "cascade", ... ]
    460      1.18  christos     sub { $config{processor} eq "386" }
    461      1.24  christos                         => [ "sse2" ],
    462      1.24  christos     "ssl"               => [ "ssl3" ],
    463      1.24  christos     "ssl3-method"       => [ "ssl3" ],
    464      1.24  christos     "zlib"              => [ "zlib-dynamic" ],
    465      1.24  christos     "des"               => [ "mdc2" ],
    466      1.24  christos     "ec"                => [ "ecdsa", "ecdh" ],
    467      1.24  christos 
    468      1.24  christos     "dgram"             => [ "dtls", "sctp" ],
    469      1.24  christos     "sock"              => [ "dgram" ],
    470      1.24  christos     "dtls"              => [ @dtls ],
    471      1.18  christos     sub { 0 == scalar grep { !$disabled{$_} } @dtls }
    472      1.24  christos                         => [ "dtls" ],
    473      1.18  christos 
    474      1.24  christos     "tls"               => [ @tls ],
    475      1.18  christos     sub { 0 == scalar grep { !$disabled{$_} } @tls }
    476      1.24  christos                         => [ "tls" ],
    477      1.18  christos 
    478      1.18  christos     "crypto-mdebug"     => [ "crypto-mdebug-backtrace" ],
    479      1.18  christos 
    480      1.18  christos     # Without position independent code, there can be no shared libraries or DSOs
    481      1.18  christos     "pic"               => [ "shared" ],
    482      1.18  christos     "shared"            => [ "dynamic-engine" ],
    483      1.21  christos     "engine"            => [ "afalgeng", "devcryptoeng" ],
    484      1.18  christos 
    485      1.18  christos     # no-autoalginit is only useful when building non-shared
    486      1.18  christos     "autoalginit"       => [ "shared", "apps" ],
    487      1.18  christos 
    488      1.18  christos     "stdio"             => [ "apps", "capieng", "egd" ],
    489      1.18  christos     "apps"              => [ "tests" ],
    490      1.21  christos     "tests"             => [ "external-tests" ],
    491      1.21  christos     "comp"              => [ "zlib" ],
    492      1.21  christos     "ec"                => [ "tls1_3", "sm2" ],
    493      1.21  christos     "sm3"               => [ "sm2" ],
    494      1.18  christos     sub { !$disabled{"unit-test"} } => [ "heartbeats" ],
    495      1.18  christos 
    496      1.18  christos     sub { !$disabled{"msan"} } => [ "asm" ],
    497      1.18  christos     );
    498      1.18  christos 
    499      1.18  christos # Avoid protocol support holes.  Also disable all versions below N, if version
    500      1.18  christos # N is disabled while N+1 is enabled.
    501      1.18  christos #
    502      1.18  christos my @list = (reverse @tls);
    503      1.18  christos while ((my $first, my $second) = (shift @list, shift @list)) {
    504      1.18  christos     last unless @list;
    505      1.18  christos     push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
    506      1.24  christos                               => [ @list ] );
    507      1.18  christos     unshift @list, $second;
    508      1.18  christos }
    509      1.18  christos my @list = (reverse @dtls);
    510      1.18  christos while ((my $first, my $second) = (shift @list, shift @list)) {
    511      1.18  christos     last unless @list;
    512      1.18  christos     push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
    513      1.24  christos                               => [ @list ] );
    514      1.18  christos     unshift @list, $second;
    515      1.18  christos }
    516       1.1  christos 
    517       1.1  christos # Explicit "no-..." options will be collected in %disabled along with the defaults.
    518      1.18  christos # To remove something from %disabled, use "enable-foo".
    519       1.1  christos # For symmetry, "disable-foo" is a synonym for "no-foo".
    520       1.1  christos 
    521       1.1  christos &usage if ($#ARGV < 0);
    522       1.1  christos 
    523      1.21  christos # For the "make variables" CINCLUDES and CDEFINES, we support lists with
    524      1.21  christos # platform specific list separators.  Users from those platforms should
    525      1.21  christos # recognise those separators from how you set up the PATH to find executables.
    526      1.21  christos # The default is the Unix like separator, :, but as an exception, we also
    527      1.21  christos # support the space as separator.
    528      1.21  christos my $list_separator_re =
    529      1.21  christos     { VMS           => qr/(?<!\^),/,
    530      1.21  christos       MSWin32       => qr/(?<!\\);/ } -> {$^O} // qr/(?<!\\)[:\s]/;
    531      1.21  christos # All the "make variables" we support
    532      1.21  christos # Some get pre-populated for the sake of backward compatibility
    533      1.21  christos # (we supported those before the change to "make variable" support.
    534      1.21  christos my %user = (
    535      1.21  christos     AR          => env('AR'),
    536      1.21  christos     ARFLAGS     => [],
    537      1.21  christos     AS          => undef,
    538      1.21  christos     ASFLAGS     => [],
    539      1.21  christos     CC          => env('CC'),
    540      1.24  christos     CFLAGS      => [ env('CFLAGS') || () ],
    541      1.21  christos     CXX         => env('CXX'),
    542      1.24  christos     CXXFLAGS    => [ env('CXXFLAGS') || () ],
    543      1.21  christos     CPP         => undef,
    544      1.24  christos     CPPFLAGS    => [ env('CPPFLAGS') || () ],  # -D, -I, -Wp,
    545      1.21  christos     CPPDEFINES  => [],  # Alternative for -D
    546      1.21  christos     CPPINCLUDES => [],  # Alternative for -I
    547      1.21  christos     CROSS_COMPILE => env('CROSS_COMPILE'),
    548      1.21  christos     HASHBANGPERL=> env('HASHBANGPERL') || env('PERL'),
    549      1.21  christos     LD          => undef,
    550      1.24  christos     LDFLAGS     => [ env('LDFLAGS') || () ],  # -L, -Wl,
    551      1.24  christos     LDLIBS      => [ env('LDLIBS') || () ],  # -l
    552      1.21  christos     MT          => undef,
    553      1.21  christos     MTFLAGS     => [],
    554      1.21  christos     PERL        => env('PERL') || ($^O ne "VMS" ? $^X : "perl"),
    555      1.21  christos     RANLIB      => env('RANLIB'),
    556      1.21  christos     RC          => env('RC') || env('WINDRES'),
    557      1.24  christos     RCFLAGS     => [ env('RCFLAGS') || () ],
    558      1.21  christos     RM          => undef,
    559      1.21  christos    );
    560      1.21  christos # Info about what "make variables" may be prefixed with the cross compiler
    561      1.21  christos # prefix.  This should NEVER mention any such variable with a list for value.
    562      1.21  christos my @user_crossable = qw ( AR AS CC CXX CPP LD MT RANLIB RC );
    563      1.21  christos # The same but for flags given as Configure options.  These are *additional*
    564      1.21  christos # input, as opposed to the VAR=string option that override the corresponding
    565      1.21  christos # config target attributes
    566      1.21  christos my %useradd = (
    567      1.21  christos     CPPDEFINES  => [],
    568      1.21  christos     CPPINCLUDES => [],
    569      1.21  christos     CPPFLAGS    => [],
    570      1.21  christos     CFLAGS      => [],
    571      1.21  christos     CXXFLAGS    => [],
    572      1.21  christos     LDFLAGS     => [],
    573      1.21  christos     LDLIBS      => [],
    574      1.24  christos     RCFLAGS     => [],
    575      1.21  christos    );
    576      1.21  christos 
    577      1.21  christos my %user_synonyms = (
    578      1.21  christos     HASHBANGPERL=> 'PERL',
    579      1.21  christos     RC          => 'WINDRES',
    580      1.21  christos    );
    581      1.21  christos 
    582      1.21  christos # Some target attributes have been renamed, this is the translation table
    583      1.21  christos my %target_attr_translate =(
    584      1.21  christos     ar          => 'AR',
    585      1.21  christos     as          => 'AS',
    586      1.21  christos     cc          => 'CC',
    587      1.21  christos     cxx         => 'CXX',
    588      1.21  christos     cpp         => 'CPP',
    589      1.21  christos     hashbangperl => 'HASHBANGPERL',
    590      1.21  christos     ld          => 'LD',
    591      1.21  christos     mt          => 'MT',
    592      1.21  christos     ranlib      => 'RANLIB',
    593      1.21  christos     rc          => 'RC',
    594      1.21  christos     rm          => 'RM',
    595      1.21  christos    );
    596      1.21  christos 
    597      1.21  christos # Initialisers coming from 'config' scripts
    598      1.21  christos $config{defines} = [ split(/$list_separator_re/, env('__CNF_CPPDEFINES')) ];
    599      1.21  christos $config{includes} = [ split(/$list_separator_re/, env('__CNF_CPPINCLUDES')) ];
    600      1.21  christos $config{cppflags} = [ env('__CNF_CPPFLAGS') || () ];
    601      1.21  christos $config{cflags} = [ env('__CNF_CFLAGS') || () ];
    602      1.21  christos $config{cxxflags} = [ env('__CNF_CXXFLAGS') || () ];
    603      1.21  christos $config{lflags} = [ env('__CNF_LDFLAGS') || () ];
    604      1.21  christos $config{ex_libs} = [ env('__CNF_LDLIBS') || () ];
    605      1.21  christos 
    606      1.18  christos $config{openssl_api_defines}=[];
    607      1.18  christos $config{openssl_algorithm_defines}=[];
    608      1.18  christos $config{openssl_thread_defines}=[];
    609      1.18  christos $config{openssl_sys_defines}=[];
    610      1.18  christos $config{openssl_other_defines}=[];
    611      1.18  christos $config{options}="";
    612      1.18  christos $config{build_type} = "release";
    613      1.21  christos my $target="";
    614      1.18  christos 
    615      1.21  christos my %cmdvars = ();               # Stores FOO='blah' type arguments
    616      1.18  christos my %unsupported_options = ();
    617      1.18  christos my %deprecated_options = ();
    618      1.21  christos # If you change this, update apps/version.c
    619      1.21  christos my @known_seed_sources = qw(getrandom devrandom os egd none rdcpu librandom);
    620      1.21  christos my @seed_sources = ();
    621      1.18  christos while (@argvcopy)
    622      1.24  christos         {
    623      1.24  christos         $_ = shift @argvcopy;
    624      1.21  christos 
    625      1.24  christos         # Support env variable assignments among the options
    626      1.24  christos         if (m|^(\w+)=(.+)?$|)
    627      1.24  christos                 {
    628      1.24  christos                 $cmdvars{$1} = $2;
    629      1.24  christos                 # Every time a variable is given as a configuration argument,
    630      1.24  christos                 # it acts as a reset if the variable.
    631      1.24  christos                 if (exists $user{$1})
    632      1.24  christos                         {
    633      1.24  christos                         $user{$1} = ref $user{$1} eq "ARRAY" ? [] : undef;
    634      1.24  christos                         }
    635      1.24  christos                 #if (exists $useradd{$1})
    636      1.24  christos                 #       {
    637      1.24  christos                 #       $useradd{$1} = [];
    638      1.24  christos                 #       }
    639      1.24  christos                 next;
    640      1.24  christos                 }
    641      1.24  christos 
    642      1.24  christos         # VMS is a case insensitive environment, and depending on settings
    643      1.24  christos         # out of our control, we may receive options uppercased.  Let's
    644      1.24  christos         # downcase at least the part before any equal sign.
    645      1.24  christos         if ($^O eq "VMS")
    646      1.24  christos                 {
    647      1.24  christos                 s/^([^=]*)/lc($1)/e;
    648      1.24  christos                 }
    649      1.24  christos 
    650      1.24  christos         # some people just can't read the instructions, clang people have to...
    651      1.24  christos         s/^-no-(?!integrated-as)/no-/;
    652      1.24  christos 
    653      1.24  christos         # rewrite some options in "enable-..." form
    654      1.24  christos         s /^-?-?shared$/enable-shared/;
    655      1.24  christos         s /^sctp$/enable-sctp/;
    656      1.24  christos         s /^threads$/enable-threads/;
    657      1.24  christos         s /^zlib$/enable-zlib/;
    658      1.24  christos         s /^zlib-dynamic$/enable-zlib-dynamic/;
    659      1.18  christos 
    660      1.18  christos         if (/^(no|disable|enable)-(.+)$/)
    661      1.18  christos                 {
    662      1.18  christos                 my $word = $2;
    663      1.18  christos                 if (!exists $deprecated_disablables{$word}
    664      1.18  christos                         && !grep { $word =~ /^${_}$/ } @disablables)
    665      1.18  christos                         {
    666      1.18  christos                         $unsupported_options{$_} = 1;
    667      1.18  christos                         next;
    668      1.18  christos                         }
    669      1.18  christos                 }
    670      1.18  christos         if (/^no-(.+)$/ || /^disable-(.+)$/)
    671      1.18  christos                 {
    672      1.18  christos                 foreach my $proto ((@tls, @dtls))
    673      1.18  christos                         {
    674      1.18  christos                         if ($1 eq "$proto-method")
    675      1.18  christos                                 {
    676      1.18  christos                                 $disabled{"$proto"} = "option($proto-method)";
    677      1.18  christos                                 last;
    678      1.18  christos                                 }
    679      1.18  christos                         }
    680      1.18  christos                 if ($1 eq "dtls")
    681      1.18  christos                         {
    682      1.18  christos                         foreach my $proto (@dtls)
    683      1.18  christos                                 {
    684      1.18  christos                                 $disabled{$proto} = "option(dtls)";
    685      1.18  christos                                 }
    686      1.18  christos                         $disabled{"dtls"} = "option(dtls)";
    687      1.18  christos                         }
    688      1.18  christos                 elsif ($1 eq "ssl")
    689      1.18  christos                         {
    690      1.18  christos                         # Last one of its kind
    691      1.18  christos                         $disabled{"ssl3"} = "option(ssl)";
    692      1.18  christos                         }
    693      1.18  christos                 elsif ($1 eq "tls")
    694      1.18  christos                         {
    695      1.18  christos                         # XXX: Tests will fail if all SSL/TLS
    696      1.18  christos                         # protocols are disabled.
    697      1.18  christos                         foreach my $proto (@tls)
    698      1.18  christos                                 {
    699      1.18  christos                                 $disabled{$proto} = "option(tls)";
    700      1.18  christos                                 }
    701      1.18  christos                         }
    702      1.18  christos                 elsif ($1 eq "static-engine")
    703      1.18  christos                         {
    704      1.18  christos                         delete $disabled{"dynamic-engine"};
    705      1.18  christos                         }
    706      1.18  christos                 elsif ($1 eq "dynamic-engine")
    707      1.18  christos                         {
    708      1.18  christos                         $disabled{"dynamic-engine"} = "option";
    709      1.18  christos                         }
    710      1.18  christos                 elsif (exists $deprecated_disablables{$1})
    711      1.18  christos                         {
    712      1.24  christos                         if ($deprecated_disablables{$1} ne "")
    713      1.18  christos                                 {
    714      1.24  christos                                 $deprecated_options{$_} = 1;
    715      1.24  christos                                 if (defined $deprecated_disablables{$1})
    716      1.24  christos                                         {
    717      1.24  christos                                         $disabled{$deprecated_disablables{$1}} = "option";
    718      1.24  christos                                         }
    719      1.18  christos                                 }
    720      1.18  christos                         }
    721      1.18  christos                 else
    722      1.18  christos                         {
    723      1.18  christos                         $disabled{$1} = "option";
    724      1.18  christos                         }
    725      1.24  christos                 # No longer an automatic choice
    726      1.24  christos                 $auto_threads = 0 if ($1 eq "threads");
    727      1.24  christos                 }
    728      1.24  christos         elsif (/^enable-(.+)$/)
    729      1.24  christos                 {
    730      1.18  christos                 if ($1 eq "static-engine")
    731      1.18  christos                         {
    732      1.18  christos                         $disabled{"dynamic-engine"} = "option";
    733      1.18  christos                         }
    734      1.18  christos                 elsif ($1 eq "dynamic-engine")
    735      1.18  christos                         {
    736      1.18  christos                         delete $disabled{"dynamic-engine"};
    737      1.18  christos                         }
    738      1.18  christos                 elsif ($1 eq "zlib-dynamic")
    739      1.18  christos                         {
    740      1.18  christos                         delete $disabled{"zlib"};
    741      1.18  christos                         }
    742      1.24  christos                 my $algo = $1;
    743      1.24  christos                 delete $disabled{$algo};
    744      1.24  christos 
    745      1.24  christos                 # No longer an automatic choice
    746      1.24  christos                 $auto_threads = 0 if ($1 eq "threads");
    747      1.24  christos                 }
    748      1.24  christos         elsif (/^--strict-warnings$/)
    749      1.24  christos                 {
    750      1.24  christos                 # Pretend that our strict flags is a C flag, and replace it
    751      1.24  christos                 # with the proper flags later on
    752      1.24  christos                 push @{$useradd{CFLAGS}}, '--ossl-strict-warnings';
    753      1.24  christos                 $strict_warnings=1;
    754      1.24  christos                 }
    755      1.24  christos         elsif (/^--debug$/)
    756      1.24  christos                 {
    757      1.24  christos                 $config{build_type} = "debug";
    758      1.24  christos                 }
    759      1.24  christos         elsif (/^--release$/)
    760      1.24  christos                 {
    761      1.24  christos                 $config{build_type} = "release";
    762      1.24  christos                 }
    763      1.24  christos         elsif (/^386$/)
    764      1.24  christos                 { $config{processor}=386; }
    765      1.24  christos         elsif (/^fips$/)
    766      1.24  christos                 {
    767      1.24  christos                 die "FIPS mode not supported\n";
    768      1.24  christos                 }
    769      1.24  christos         elsif (/^rsaref$/)
    770      1.24  christos                 {
    771      1.24  christos                 # No RSAref support any more since it's not needed.
    772      1.24  christos                 # The check for the option is there so scripts aren't
    773      1.24  christos                 # broken
    774      1.24  christos                 }
    775      1.24  christos         elsif (/^nofipscanistercheck$/)
    776      1.24  christos                 {
    777      1.24  christos                 die "FIPS mode not supported\n";
    778      1.24  christos                 }
    779      1.24  christos         elsif (/^[-+]/)
    780      1.24  christos                 {
    781      1.24  christos                 if (/^--prefix=(.*)$/)
    782      1.24  christos                         {
    783      1.24  christos                         $config{prefix}=$1;
    784      1.24  christos                         die "Directory given with --prefix MUST be absolute\n"
    785      1.24  christos                                 unless file_name_is_absolute($config{prefix});
    786      1.24  christos                         }
    787      1.24  christos                 elsif (/^--api=(.*)$/)
    788      1.24  christos                         {
    789      1.24  christos                         $config{api}=$1;
    790      1.24  christos                         }
    791      1.24  christos                 elsif (/^--libdir=(.*)$/)
    792      1.24  christos                         {
    793      1.24  christos                         $config{libdir}=$1;
    794      1.24  christos                         }
    795      1.24  christos                 elsif (/^--openssldir=(.*)$/)
    796      1.24  christos                         {
    797      1.24  christos                         $config{openssldir}=$1;
    798      1.24  christos                         }
    799      1.24  christos                 elsif (/^--with-zlib-lib=(.*)$/)
    800      1.24  christos                         {
    801      1.24  christos                         $withargs{zlib_lib}=$1;
    802      1.24  christos                         }
    803      1.24  christos                 elsif (/^--with-zlib-include=(.*)$/)
    804      1.24  christos                         {
    805      1.24  christos                         $withargs{zlib_include}=$1;
    806      1.24  christos                         }
    807      1.24  christos                 elsif (/^--with-fuzzer-lib=(.*)$/)
    808      1.24  christos                         {
    809      1.24  christos                         $withargs{fuzzer_lib}=$1;
    810      1.24  christos                         }
    811      1.24  christos                 elsif (/^--with-fuzzer-include=(.*)$/)
    812      1.24  christos                         {
    813      1.24  christos                         $withargs{fuzzer_include}=$1;
    814      1.24  christos                         }
    815      1.24  christos                 elsif (/^--with-rand-seed=(.*)$/)
    816      1.24  christos                         {
    817      1.24  christos                         foreach my $x (split(m|,|, $1))
    818      1.24  christos                             {
    819      1.24  christos                             die "Unknown --with-rand-seed choice $x\n"
    820      1.24  christos                                 if ! grep { $x eq $_ } @known_seed_sources;
    821      1.24  christos                             push @seed_sources, $x;
    822      1.24  christos                             }
    823      1.24  christos                         }
    824      1.24  christos                 elsif (/^--cross-compile-prefix=(.*)$/)
    825      1.24  christos                         {
    826      1.24  christos                         $user{CROSS_COMPILE}=$1;
    827      1.24  christos                         }
    828      1.24  christos                 elsif (/^--config=(.*)$/)
    829      1.24  christos                         {
    830      1.24  christos                         read_config $1;
    831      1.24  christos                         }
    832      1.24  christos                 elsif (/^-l(.*)$/)
    833      1.24  christos                         {
    834      1.24  christos                         push @{$useradd{LDLIBS}}, $_;
    835      1.24  christos                         }
    836      1.24  christos                 elsif (/^-framework$/)
    837      1.24  christos                         {
    838      1.24  christos                         push @{$useradd{LDLIBS}}, $_, shift(@argvcopy);
    839      1.24  christos                         }
    840      1.24  christos                 elsif (/^-L(.*)$/ or /^-Wl,/)
    841      1.24  christos                         {
    842      1.24  christos                         push @{$useradd{LDFLAGS}}, $_;
    843      1.24  christos                         }
    844      1.24  christos                 elsif (/^-rpath$/ or /^-R$/)
    845      1.24  christos                         # -rpath is the OSF1 rpath flag
    846      1.24  christos                         # -R is the old Solaris rpath flag
    847      1.24  christos                         {
    848      1.24  christos                         my $rpath = shift(@argvcopy) || "";
    849      1.24  christos                         $rpath .= " " if $rpath ne "";
    850      1.24  christos                         push @{$useradd{LDFLAGS}}, $_, $rpath;
    851      1.24  christos                         }
    852      1.24  christos                 elsif (/^-static$/)
    853      1.24  christos                         {
    854      1.24  christos                         push @{$useradd{LDFLAGS}}, $_;
    855      1.24  christos                         }
    856      1.24  christos                 elsif (/^-D(.*)$/)
    857      1.24  christos                         {
    858      1.24  christos                         push @{$useradd{CPPDEFINES}}, $1;
    859      1.24  christos                         }
    860      1.24  christos                 elsif (/^-I(.*)$/)
    861      1.24  christos                         {
    862      1.24  christos                         push @{$useradd{CPPINCLUDES}}, $1;
    863      1.24  christos                         }
    864      1.24  christos                 elsif (/^-Wp,$/)
    865      1.24  christos                         {
    866      1.24  christos                         push @{$useradd{CPPFLAGS}}, $1;
    867      1.24  christos                         }
    868      1.24  christos                 else    # common if (/^[-+]/), just pass down...
    869      1.24  christos                         {
    870      1.24  christos                         $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
    871      1.24  christos                         push @{$useradd{CFLAGS}}, $_;
    872      1.24  christos                         push @{$useradd{CXXFLAGS}}, $_;
    873      1.24  christos                         }
    874      1.24  christos                 }
    875      1.24  christos         else
    876      1.24  christos                 {
    877      1.24  christos                 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
    878      1.24  christos                 $target=$_;
    879      1.24  christos                 }
    880      1.24  christos         unless ($_ eq $target || /^no-/ || /^disable-/)
    881      1.24  christos                 {
    882      1.24  christos                 # "no-..." follows later after implied deactivations
    883      1.24  christos                 # have been derived.  (Don't take this too seriously,
    884      1.24  christos                 # we really only write OPTIONS to the Makefile out of
    885      1.24  christos                 # nostalgia.)
    886      1.18  christos 
    887      1.24  christos                 if ($config{options} eq "")
    888      1.24  christos                         { $config{options} = $_; }
    889      1.24  christos                 else
    890      1.24  christos                         { $config{options} .= " ".$_; }
    891      1.24  christos                 }
    892      1.24  christos         }
    893       1.1  christos 
    894      1.20  christos if (defined($config{api}) && !exists $apitable->{$config{api}}) {
    895      1.24  christos         die "***** Unsupported api compatibility level: $config{api}\n",
    896      1.20  christos }
    897       1.1  christos 
    898      1.20  christos if (keys %deprecated_options)
    899      1.24  christos         {
    900      1.24  christos         warn "***** Deprecated options: ",
    901      1.24  christos                 join(", ", keys %deprecated_options), "\n";
    902      1.24  christos         }
    903      1.20  christos if (keys %unsupported_options)
    904      1.24  christos         {
    905      1.24  christos         die "***** Unsupported options: ",
    906      1.24  christos                 join(", ", keys %unsupported_options), "\n";
    907      1.24  christos         }
    908       1.1  christos 
    909      1.21  christos # If any %useradd entry has been set, we must check that the "make
    910      1.21  christos # variables" haven't been set.  We start by checking of any %useradd entry
    911      1.21  christos # is set.
    912      1.21  christos if (grep { scalar @$_ > 0 } values %useradd) {
    913      1.21  christos     # Hash of env / make variables names.  The possible values are:
    914      1.21  christos     # 1 - "make vars"
    915      1.21  christos     # 2 - %useradd entry set
    916      1.21  christos     # 3 - both set
    917      1.21  christos     my %detected_vars =
    918      1.21  christos         map { my $v = 0;
    919      1.21  christos               $v += 1 if $cmdvars{$_};
    920      1.21  christos               $v += 2 if @{$useradd{$_}};
    921      1.21  christos               $_ => $v }
    922      1.21  christos         keys %useradd;
    923      1.21  christos 
    924      1.21  christos     # If any of the corresponding "make variables" is set, we error
    925      1.21  christos     if (grep { $_ & 1 } values %detected_vars) {
    926      1.21  christos         my $names = join(', ', grep { $detected_vars{$_} > 0 }
    927      1.21  christos                                sort keys %detected_vars);
    928      1.21  christos         die <<"_____";
    929      1.21  christos ***** Mixing make variables and additional compiler/linker flags as
    930      1.21  christos ***** configure command line option is not permitted.
    931      1.21  christos ***** Affected make variables: $names
    932      1.21  christos _____
    933      1.21  christos     }
    934      1.21  christos }
    935      1.21  christos 
    936      1.21  christos # Check through all supported command line variables to see if any of them
    937      1.21  christos # were set, and canonicalise the values we got.  If no compiler or linker
    938      1.21  christos # flag or anything else that affects %useradd was set, we also check the
    939      1.21  christos # environment for values.
    940      1.21  christos my $anyuseradd =
    941      1.21  christos     grep { defined $_ && (ref $_ ne 'ARRAY' || @$_) } values %useradd;
    942      1.21  christos foreach (keys %user) {
    943      1.21  christos     my $value = $cmdvars{$_};
    944      1.21  christos     $value //= env($_) unless $anyuseradd;
    945      1.21  christos     $value //=
    946      1.21  christos         defined $user_synonyms{$_} ? $cmdvars{$user_synonyms{$_}} : undef;
    947      1.21  christos     $value //= defined $user_synonyms{$_} ? env($user_synonyms{$_}) : undef
    948      1.21  christos         unless $anyuseradd;
    949      1.21  christos 
    950      1.21  christos     if (defined $value) {
    951      1.21  christos         if (ref $user{$_} eq 'ARRAY') {
    952      1.21  christos             $user{$_} = [ split /$list_separator_re/, $value ];
    953      1.21  christos         } elsif (!defined $user{$_}) {
    954      1.21  christos             $user{$_} = $value;
    955      1.21  christos         }
    956      1.21  christos     }
    957      1.21  christos }
    958      1.21  christos 
    959      1.21  christos if (grep { /-rpath\b/ } ($user{LDFLAGS} ? @{$user{LDFLAGS}} : ())
    960      1.18  christos     && !$disabled{shared}
    961      1.18  christos     && !($disabled{asan} && $disabled{msan} && $disabled{ubsan})) {
    962      1.18  christos     die "***** Cannot simultaneously use -rpath, shared libraries, and\n",
    963      1.24  christos         "***** any of asan, msan or ubsan\n";
    964      1.18  christos }
    965       1.1  christos 
    966      1.24  christos sub disable {
    967      1.24  christos     my $disable_type = shift;
    968      1.24  christos 
    969      1.24  christos     for (@_) {
    970      1.24  christos         $disabled{$_} = $disable_type;
    971      1.24  christos     }
    972      1.24  christos 
    973      1.24  christos     my @tocheckfor = (@_ ? @_ : keys %disabled);
    974      1.24  christos     while (@tocheckfor) {
    975      1.24  christos         my %new_tocheckfor = ();
    976      1.24  christos         my @cascade_copy = (@disable_cascades);
    977      1.24  christos         while (@cascade_copy) {
    978      1.24  christos             my ($test, $descendents) =
    979      1.24  christos                 (shift @cascade_copy, shift @cascade_copy);
    980      1.24  christos             if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
    981      1.24  christos                 foreach (grep { !defined($disabled{$_}) } @$descendents) {
    982      1.24  christos                     $new_tocheckfor{$_} = 1; $disabled{$_} = "cascade";
    983      1.24  christos                 }
    984      1.24  christos             }
    985      1.24  christos         }
    986      1.24  christos         @tocheckfor = (keys %new_tocheckfor);
    987      1.18  christos     }
    988      1.18  christos }
    989      1.24  christos disable();                     # First cascade run
    990       1.2       spz 
    991      1.18  christos our $die = sub { die @_; };
    992       1.1  christos if ($target eq "TABLE") {
    993      1.18  christos     local $die = sub { warn @_; };
    994      1.18  christos     foreach (sort keys %table) {
    995      1.24  christos         print_table_entry($_, "TABLE");
    996      1.18  christos     }
    997      1.18  christos     exit 0;
    998       1.1  christos }
    999       1.1  christos 
   1000       1.1  christos if ($target eq "LIST") {
   1001      1.18  christos     foreach (sort keys %table) {
   1002      1.24  christos         print $_,"\n" unless $table{$_}->{template};
   1003      1.18  christos     }
   1004      1.18  christos     exit 0;
   1005      1.18  christos }
   1006      1.18  christos 
   1007      1.18  christos if ($target eq "HASH") {
   1008      1.18  christos     local $die = sub { warn @_; };
   1009      1.18  christos     print "%table = (\n";
   1010      1.18  christos     foreach (sort keys %table) {
   1011      1.24  christos         print_table_entry($_, "HASH");
   1012      1.18  christos     }
   1013      1.18  christos     exit 0;
   1014       1.1  christos }
   1015       1.1  christos 
   1016      1.21  christos print "Configuring OpenSSL version $config{version} ($config{version_num}) ";
   1017      1.21  christos print "for $target\n";
   1018      1.21  christos 
   1019      1.21  christos if (scalar(@seed_sources) == 0) {
   1020      1.21  christos     print "Using os-specific seed configuration\n";
   1021      1.21  christos     push @seed_sources, 'os';
   1022      1.21  christos }
   1023      1.21  christos if (scalar(grep { $_ eq 'none' } @seed_sources) > 0) {
   1024      1.21  christos     die "Cannot seed with none and anything else" if scalar(@seed_sources) > 1;
   1025      1.21  christos     warn <<_____ if scalar(@seed_sources) == 1;
   1026      1.21  christos 
   1027      1.22  christos ============================== WARNING ===============================
   1028      1.22  christos You have selected the --with-rand-seed=none option, which effectively
   1029      1.22  christos disables automatic reseeding of the OpenSSL random generator.
   1030      1.22  christos All operations depending on the random generator such as creating keys
   1031      1.22  christos will not work unless the random generator is seeded manually by the
   1032      1.22  christos application.
   1033      1.22  christos 
   1034      1.22  christos Please read the 'Note on random number generation' section in the
   1035      1.22  christos INSTALL instructions and the RAND_DRBG(7) manual page for more details.
   1036      1.22  christos ============================== WARNING ===============================
   1037      1.22  christos 
   1038      1.21  christos _____
   1039      1.21  christos }
   1040      1.21  christos push @{$config{openssl_other_defines}},
   1041      1.21  christos      map { (my $x = $_) =~ tr|[\-a-z]|[_A-Z]|; "OPENSSL_RAND_SEED_$x" }
   1042      1.24  christos         @seed_sources;
   1043      1.21  christos 
   1044      1.18  christos # Backward compatibility?
   1045       1.1  christos if ($target =~ m/^CygWin32(-.*)$/) {
   1046      1.18  christos     $target = "Cygwin".$1;
   1047       1.1  christos }
   1048       1.1  christos 
   1049      1.18  christos # Support for legacy targets having a name starting with 'debug-'
   1050      1.18  christos my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
   1051      1.18  christos if ($d) {
   1052      1.18  christos     $config{build_type} = "debug";
   1053      1.18  christos 
   1054      1.18  christos     # If we do not find debug-foo in the table, the target is set to foo.
   1055      1.18  christos     if (!$table{$target}) {
   1056      1.24  christos         $target = $t;
   1057      1.18  christos     }
   1058      1.18  christos }
   1059      1.20  christos 
   1060      1.20  christos &usage if !$table{$target} || $table{$target}->{template};
   1061      1.20  christos 
   1062      1.18  christos $config{target} = $target;
   1063      1.18  christos my %target = resolve_config($target);
   1064      1.18  christos 
   1065      1.21  christos foreach (keys %target_attr_translate) {
   1066      1.21  christos     $target{$target_attr_translate{$_}} = $target{$_}
   1067      1.21  christos         if $target{$_};
   1068      1.21  christos     delete $target{$_};
   1069      1.21  christos }
   1070      1.21  christos 
   1071      1.21  christos %target = ( %{$table{DEFAULTS}}, %target );
   1072      1.21  christos 
   1073      1.18  christos my %conf_files = map { $_ => 1 } (@{$target{_conf_fname_int}});
   1074      1.18  christos $config{conf_files} = [ sort keys %conf_files ];
   1075      1.18  christos 
   1076      1.24  christos # Using sub disable within these loops may prove fragile, so we run
   1077      1.24  christos # a cascade afterwards
   1078      1.21  christos foreach my $feature (@{$target{disable}}) {
   1079      1.21  christos     if (exists $deprecated_disablables{$feature}) {
   1080      1.21  christos         warn "***** config $target disables deprecated feature $feature\n";
   1081      1.21  christos     } elsif (!grep { $feature eq $_ } @disablables) {
   1082      1.21  christos         die "***** config $target disables unknown feature $feature\n";
   1083      1.21  christos     }
   1084      1.21  christos     $disabled{$feature} = 'config';
   1085      1.21  christos }
   1086      1.21  christos foreach my $feature (@{$target{enable}}) {
   1087      1.23  christos     if ("default" eq ($disabled{$feature} // "")) {
   1088      1.21  christos         if (exists $deprecated_disablables{$feature}) {
   1089      1.21  christos             warn "***** config $target enables deprecated feature $feature\n";
   1090      1.21  christos         } elsif (!grep { $feature eq $_ } @disablables) {
   1091      1.21  christos             die "***** config $target enables unknown feature $feature\n";
   1092      1.21  christos         }
   1093      1.23  christos         delete $disabled{$feature};
   1094      1.21  christos     }
   1095      1.21  christos }
   1096      1.24  christos disable();                      # Run a cascade now
   1097      1.21  christos 
   1098      1.21  christos $target{CXXFLAGS}//=$target{CFLAGS} if $target{CXX};
   1099      1.21  christos $target{cxxflags}//=$target{cflags} if $target{CXX};
   1100      1.18  christos $target{exe_extension}="";
   1101      1.18  christos $target{exe_extension}=".exe" if ($config{target} eq "DJGPP"
   1102      1.18  christos                                   || $config{target} =~ /^(?:Cygwin|mingw)/);
   1103      1.18  christos $target{exe_extension}=".pm"  if ($config{target} =~ /vos/);
   1104      1.18  christos 
   1105      1.18  christos ($target{shared_extension_simple}=$target{shared_extension})
   1106      1.21  christos     =~ s|\.\$\(SHLIB_VERSION_NUMBER\)||
   1107      1.21  christos     unless defined($target{shared_extension_simple});
   1108      1.21  christos $target{dso_extension}//=$target{shared_extension_simple};
   1109      1.18  christos ($target{shared_import_extension}=$target{shared_extension_simple}.".a")
   1110      1.18  christos     if ($config{target} =~ /^(?:Cygwin|mingw)/);
   1111      1.18  christos 
   1112      1.21  christos # Fill %config with values from %user, and in case those are undefined or
   1113      1.21  christos # empty, use values from %target (acting as a default).
   1114      1.21  christos foreach (keys %user) {
   1115      1.21  christos     my $ref_type = ref $user{$_};
   1116      1.21  christos 
   1117      1.21  christos     # Temporary function.  Takes an intended ref type (empty string or "ARRAY")
   1118      1.21  christos     # and a value that's to be coerced into that type.
   1119      1.21  christos     my $mkvalue = sub {
   1120      1.21  christos         my $type = shift;
   1121      1.21  christos         my $value = shift;
   1122      1.21  christos         my $undef_p = shift;
   1123      1.21  christos 
   1124      1.21  christos         die "Too many arguments for \$mkvalue" if @_;
   1125      1.21  christos 
   1126      1.21  christos         while (ref $value eq 'CODE') {
   1127      1.21  christos             $value = $value->();
   1128      1.21  christos         }
   1129      1.21  christos 
   1130      1.21  christos         if ($type eq 'ARRAY') {
   1131      1.21  christos             return undef unless defined $value;
   1132      1.21  christos             return undef if ref $value ne 'ARRAY' && !$value;
   1133      1.21  christos             return undef if ref $value eq 'ARRAY' && !@$value;
   1134      1.21  christos             return [ $value ] unless ref $value eq 'ARRAY';
   1135      1.21  christos         }
   1136      1.21  christos         return undef unless $value;
   1137      1.21  christos         return $value;
   1138      1.21  christos     };
   1139      1.18  christos 
   1140      1.21  christos     $config{$_} =
   1141      1.21  christos         $mkvalue->($ref_type, $user{$_})
   1142      1.21  christos         || $mkvalue->($ref_type, $target{$_});
   1143      1.21  christos     delete $config{$_} unless defined $config{$_};
   1144      1.21  christos }
   1145      1.18  christos 
   1146      1.24  christos # Finish up %config by appending things the user gave us on the command line
   1147      1.24  christos # apart from "make variables"
   1148      1.24  christos foreach (keys %useradd) {
   1149      1.24  christos     # The must all be lists, so we assert that here
   1150      1.24  christos     die "internal error: \$useradd{$_} isn't an ARRAY\n"
   1151      1.24  christos         unless ref $useradd{$_} eq 'ARRAY';
   1152      1.24  christos 
   1153      1.24  christos     if (defined $config{$_}) {
   1154      1.24  christos         push @{$config{$_}}, @{$useradd{$_}};
   1155      1.24  christos     } else {
   1156      1.24  christos         $config{$_} = [ @{$useradd{$_}} ];
   1157      1.24  christos     }
   1158      1.24  christos }
   1159      1.24  christos # At this point, we can forget everything about %user and %useradd,
   1160      1.24  christos # because it's now all been merged into the corresponding $config entry
   1161      1.24  christos 
   1162      1.21  christos # Allow overriding the build file name
   1163      1.21  christos $config{build_file} = env('BUILDFILE') || $target{build_file} || "Makefile";
   1164      1.21  christos 
   1165      1.21  christos my %disabled_info = ();         # For configdata.pm
   1166      1.21  christos foreach my $what (sort keys %disabled) {
   1167      1.21  christos     $config{options} .= " no-$what";
   1168      1.21  christos 
   1169      1.24  christos     if (!grep { $what eq $_ } ( 'buildtest-c++', 'threads', 'shared', 'pic',
   1170      1.21  christos                                 'dynamic-engine', 'makedepend',
   1171      1.21  christos                                 'zlib-dynamic', 'zlib', 'sse2' )) {
   1172      1.21  christos         (my $WHAT = uc $what) =~ s|-|_|g;
   1173      1.21  christos 
   1174      1.21  christos         # Fix up C macro end names
   1175      1.21  christos         $WHAT = "RMD160" if $what eq "ripemd";
   1176      1.21  christos 
   1177      1.21  christos         # fix-up crypto/directory name(s)
   1178      1.21  christos         $what = "ripemd" if $what eq "rmd160";
   1179      1.21  christos         $what = "whrlpool" if $what eq "whirlpool";
   1180      1.18  christos 
   1181      1.21  christos         my $macro = $disabled_info{$what}->{macro} = "OPENSSL_NO_$WHAT";
   1182      1.21  christos 
   1183      1.21  christos         if ((grep { $what eq $_ } @{$config{sdirs}})
   1184      1.21  christos                 && $what ne 'async' && $what ne 'err') {
   1185      1.21  christos             @{$config{sdirs}} = grep { $what ne $_} @{$config{sdirs}};
   1186      1.21  christos             $disabled_info{$what}->{skipped} = [ catdir('crypto', $what) ];
   1187      1.21  christos 
   1188      1.21  christos             if ($what ne 'engine') {
   1189      1.21  christos                 push @{$config{openssl_algorithm_defines}}, $macro;
   1190      1.21  christos             } else {
   1191      1.21  christos                 @{$config{dirs}} = grep !/^engines$/, @{$config{dirs}};
   1192      1.21  christos                 push @{$disabled_info{engine}->{skipped}}, catdir('engines');
   1193      1.21  christos                 push @{$config{openssl_other_defines}}, $macro;
   1194      1.21  christos             }
   1195      1.21  christos         } else {
   1196      1.21  christos             push @{$config{openssl_other_defines}}, $macro;
   1197      1.21  christos         }
   1198      1.18  christos 
   1199      1.21  christos     }
   1200      1.21  christos }
   1201      1.18  christos 
   1202      1.18  christos # Make sure build_scheme is consistent.
   1203      1.18  christos $target{build_scheme} = [ $target{build_scheme} ]
   1204      1.18  christos     if ref($target{build_scheme}) ne "ARRAY";
   1205      1.18  christos 
   1206      1.18  christos my ($builder, $builder_platform, @builder_opts) =
   1207      1.18  christos     @{$target{build_scheme}};
   1208      1.18  christos 
   1209      1.18  christos foreach my $checker (($builder_platform."-".$target{build_file}."-checker.pm",
   1210      1.18  christos                       $builder_platform."-checker.pm")) {
   1211      1.18  christos     my $checker_path = catfile($srcdir, "Configurations", $checker);
   1212      1.18  christos     if (-f $checker_path) {
   1213      1.18  christos         my $fn = $ENV{CONFIGURE_CHECKER_WARN}
   1214      1.18  christos             ? sub { warn $@; } : sub { die $@; };
   1215      1.18  christos         if (! do $checker_path) {
   1216      1.18  christos             if ($@) {
   1217      1.18  christos                 $fn->($@);
   1218      1.18  christos             } elsif ($!) {
   1219      1.18  christos                 $fn->($!);
   1220      1.18  christos             } else {
   1221      1.18  christos                 $fn->("The detected tools didn't match the platform\n");
   1222      1.18  christos             }
   1223      1.18  christos         }
   1224      1.18  christos         last;
   1225      1.18  christos     }
   1226      1.18  christos }
   1227       1.1  christos 
   1228      1.18  christos push @{$config{defines}}, "NDEBUG"    if $config{build_type} eq "release";
   1229       1.1  christos 
   1230      1.21  christos if ($target =~ /^mingw/ && `$config{CC} --target-help 2>&1` =~ m/-mno-cygwin/m)
   1231      1.24  christos         {
   1232      1.24  christos         push @{$config{cflags}}, "-mno-cygwin";
   1233      1.24  christos         push @{$config{cxxflags}}, "-mno-cygwin" if $config{CXX};
   1234      1.24  christos         push @{$config{shared_ldflag}}, "-mno-cygwin";
   1235      1.24  christos         }
   1236       1.2       spz 
   1237      1.21  christos if ($target =~ /linux.*-mips/ && !$disabled{asm}
   1238      1.24  christos         && !grep { $_ !~ /-m(ips|arch=)/ } (@{$config{CFLAGS}})) {
   1239      1.24  christos         # minimally required architecture flags for assembly modules
   1240      1.24  christos         my $value;
   1241      1.24  christos         $value = '-mips2' if ($target =~ /mips32/);
   1242      1.24  christos         $value = '-mips3' if ($target =~ /mips64/);
   1243      1.24  christos         unshift @{$config{cflags}}, $value;
   1244      1.24  christos         unshift @{$config{cxxflags}}, $value if $config{CXX};
   1245      1.16       spz }
   1246      1.16       spz 
   1247      1.18  christos # If threads aren't disabled, check how possible they are
   1248      1.18  christos unless ($disabled{threads}) {
   1249      1.18  christos     if ($auto_threads) {
   1250      1.18  christos         # Enabled by default, disable it forcibly if unavailable
   1251      1.18  christos         if ($target{thread_scheme} eq "(unknown)") {
   1252      1.24  christos             disable("unavailable", 'threads');
   1253      1.18  christos         }
   1254      1.18  christos     } else {
   1255      1.18  christos         # The user chose to enable threads explicitly, let's see
   1256      1.18  christos         # if there's a chance that's possible
   1257      1.18  christos         if ($target{thread_scheme} eq "(unknown)") {
   1258      1.18  christos             # If the user asked for "threads" and we don't have internal
   1259      1.18  christos             # knowledge how to do it, [s]he is expected to provide any
   1260      1.18  christos             # system-dependent compiler options that are necessary.  We
   1261      1.18  christos             # can't truly check that the given options are correct, but
   1262      1.18  christos             # we expect the user to know what [s]He is doing.
   1263      1.24  christos             if (!@{$config{CFLAGS}} && !@{$config{CPPDEFINES}}) {
   1264      1.18  christos                 die "You asked for multi-threading support, but didn't\n"
   1265      1.18  christos                     ,"provide any system-specific compiler options\n";
   1266      1.18  christos             }
   1267      1.18  christos         }
   1268      1.18  christos     }
   1269      1.18  christos }
   1270      1.18  christos 
   1271      1.18  christos # If threads still aren't disabled, add a C macro to ensure the source
   1272      1.18  christos # code knows about it.  Any other flag is taken care of by the configs.
   1273      1.18  christos unless($disabled{threads}) {
   1274      1.21  christos     push @{$config{openssl_thread_defines}}, "OPENSSL_THREADS";
   1275      1.18  christos }
   1276       1.1  christos 
   1277      1.18  christos # With "deprecated" disable all deprecated features.
   1278      1.18  christos if (defined($disabled{"deprecated"})) {
   1279      1.18  christos         $config{api} = $maxapi;
   1280      1.18  christos }
   1281       1.1  christos 
   1282      1.21  christos my $no_shared_warn=0;
   1283      1.18  christos if ($target{shared_target} eq "")
   1284      1.24  christos         {
   1285      1.24  christos         $no_shared_warn = 1
   1286      1.24  christos             if (!$disabled{shared} || !$disabled{"dynamic-engine"});
   1287      1.24  christos         disable('no-shared-target', 'pic');
   1288      1.24  christos         }
   1289       1.1  christos 
   1290      1.18  christos if ($disabled{"dynamic-engine"}) {
   1291      1.21  christos         push @{$config{openssl_other_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
   1292      1.18  christos         $config{dynamic_engines} = 0;
   1293      1.18  christos } else {
   1294      1.21  christos         push @{$config{openssl_other_defines}}, "OPENSSL_NO_STATIC_ENGINE";
   1295      1.18  christos         $config{dynamic_engines} = 1;
   1296      1.18  christos }
   1297       1.1  christos 
   1298      1.18  christos unless ($disabled{asan}) {
   1299      1.21  christos     push @{$config{cflags}}, "-fsanitize=address";
   1300      1.18  christos }
   1301       1.1  christos 
   1302      1.18  christos unless ($disabled{ubsan}) {
   1303      1.18  christos     # -DPEDANTIC or -fnosanitize=alignment may also be required on some
   1304      1.18  christos     # platforms.
   1305      1.21  christos     push @{$config{cflags}}, "-fsanitize=undefined", "-fno-sanitize-recover=all";
   1306      1.18  christos }
   1307       1.1  christos 
   1308      1.18  christos unless ($disabled{msan}) {
   1309      1.21  christos   push @{$config{cflags}}, "-fsanitize=memory";
   1310      1.18  christos }
   1311       1.1  christos 
   1312      1.18  christos unless ($disabled{"fuzz-libfuzzer"} && $disabled{"fuzz-afl"}
   1313      1.18  christos         && $disabled{asan} && $disabled{ubsan} && $disabled{msan}) {
   1314      1.21  christos     push @{$config{cflags}}, "-fno-omit-frame-pointer", "-g";
   1315      1.21  christos     push @{$config{cxxflags}}, "-fno-omit-frame-pointer", "-g" if $config{CXX};
   1316      1.18  christos }
   1317       1.1  christos #
   1318       1.1  christos # Platform fix-ups
   1319       1.1  christos #
   1320       1.1  christos 
   1321      1.18  christos # This saves the build files from having to check
   1322      1.18  christos if ($disabled{pic})
   1323      1.24  christos         {
   1324      1.24  christos         foreach (qw(shared_cflag shared_cxxflag shared_cppflag
   1325      1.24  christos                     shared_defines shared_includes shared_ldflag
   1326      1.24  christos                     module_cflags module_cxxflags module_cppflags
   1327      1.24  christos                     module_defines module_includes module_lflags))
   1328      1.24  christos                 {
   1329      1.24  christos                 delete $config{$_};
   1330      1.24  christos                 $target{$_} = "";
   1331      1.24  christos                 }
   1332      1.24  christos         }
   1333      1.18  christos else
   1334      1.24  christos         {
   1335      1.24  christos         push @{$config{lib_defines}}, "OPENSSL_PIC";
   1336      1.24  christos         }
   1337       1.1  christos 
   1338      1.18  christos if ($target{sys_id} ne "")
   1339      1.24  christos         {
   1340      1.24  christos         push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
   1341      1.24  christos         }
   1342       1.1  christos 
   1343      1.18  christos unless ($disabled{asm}) {
   1344      1.18  christos     $target{cpuid_asm_src}=$table{DEFAULTS}->{cpuid_asm_src} if ($config{processor} eq "386");
   1345      1.21  christos     push @{$config{lib_defines}}, "OPENSSL_CPUID_OBJ" if ($target{cpuid_asm_src} ne "mem_clr.c");
   1346      1.21  christos 
   1347      1.18  christos     $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
   1348      1.18  christos 
   1349      1.18  christos     # bn-586 is the only one implementing bn_*_part_words
   1350      1.21  christos     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
   1351      1.21  christos     push @{$config{lib_defines}}, "OPENSSL_IA32_SSE2" if (!$disabled{sse2} && $target{bn_asm_src} =~ /86/);
   1352      1.18  christos 
   1353      1.21  christos     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
   1354      1.21  christos     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
   1355      1.21  christos     push @{$config{lib_defines}}, "OPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
   1356      1.23  christos     push @{$config{lib_defines}}, "BN_DIV3W" if ($target{bn_asm_src} =~ /-div3w/);
   1357      1.18  christos 
   1358      1.21  christos     if ($target{sha1_asm_src}) {
   1359      1.24  christos         push @{$config{lib_defines}}, "SHA1_ASM"   if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
   1360      1.24  christos         push @{$config{lib_defines}}, "SHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
   1361      1.24  christos         push @{$config{lib_defines}}, "SHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
   1362      1.18  christos     }
   1363      1.21  christos     if ($target{keccak1600_asm_src} ne $table{DEFAULTS}->{keccak1600_asm_src}) {
   1364      1.24  christos         push @{$config{lib_defines}}, "KECCAK1600_ASM";
   1365      1.18  christos     }
   1366      1.18  christos     if ($target{rc4_asm_src} ne $table{DEFAULTS}->{rc4_asm_src}) {
   1367      1.24  christos         push @{$config{lib_defines}}, "RC4_ASM";
   1368      1.18  christos     }
   1369      1.18  christos     if ($target{md5_asm_src}) {
   1370      1.24  christos         push @{$config{lib_defines}}, "MD5_ASM";
   1371      1.18  christos     }
   1372      1.18  christos     $target{cast_asm_src}=$table{DEFAULTS}->{cast_asm_src} unless $disabled{pic}; # CAST assembler is not PIC
   1373      1.18  christos     if ($target{rmd160_asm_src}) {
   1374      1.24  christos         push @{$config{lib_defines}}, "RMD160_ASM";
   1375      1.18  christos     }
   1376      1.18  christos     if ($target{aes_asm_src}) {
   1377      1.24  christos         push @{$config{lib_defines}}, "AES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
   1378      1.24  christos         # aes-ctr.fake is not a real file, only indication that assembler
   1379      1.24  christos         # module implements AES_ctr32_encrypt...
   1380      1.24  christos         push @{$config{lib_defines}}, "AES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
   1381      1.24  christos         # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
   1382      1.24  christos         push @{$config{lib_defines}}, "AES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
   1383      1.24  christos         $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($disabled{sse2});
   1384      1.24  christos         push @{$config{lib_defines}}, "VPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
   1385      1.24  christos         push @{$config{lib_defines}}, "BSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
   1386      1.18  christos     }
   1387      1.18  christos     if ($target{wp_asm_src} =~ /mmx/) {
   1388      1.18  christos         if ($config{processor} eq "386") {
   1389      1.24  christos             $target{wp_asm_src}=$table{DEFAULTS}->{wp_asm_src};
   1390      1.24  christos         } elsif (!$disabled{"whirlpool"}) {
   1391      1.24  christos             push @{$config{lib_defines}}, "WHIRLPOOL_ASM";
   1392      1.24  christos         }
   1393      1.18  christos     }
   1394      1.18  christos     if ($target{modes_asm_src} =~ /ghash-/) {
   1395      1.24  christos         push @{$config{lib_defines}}, "GHASH_ASM";
   1396      1.18  christos     }
   1397      1.18  christos     if ($target{ec_asm_src} =~ /ecp_nistz256/) {
   1398      1.24  christos         push @{$config{lib_defines}}, "ECP_NISTZ256_ASM";
   1399      1.21  christos     }
   1400      1.21  christos     if ($target{ec_asm_src} =~ /x25519/) {
   1401      1.24  christos         push @{$config{lib_defines}}, "X25519_ASM";
   1402      1.18  christos     }
   1403      1.18  christos     if ($target{padlock_asm_src} ne $table{DEFAULTS}->{padlock_asm_src}) {
   1404      1.24  christos         push @{$config{dso_defines}}, "PADLOCK_ASM";
   1405      1.18  christos     }
   1406      1.18  christos     if ($target{poly1305_asm_src} ne "") {
   1407      1.24  christos         push @{$config{lib_defines}}, "POLY1305_ASM";
   1408      1.18  christos     }
   1409      1.18  christos }
   1410       1.1  christos 
   1411      1.24  christos my %predefined_C = compiler_predefined($config{CROSS_COMPILE}.$config{CC});
   1412      1.24  christos my %predefined_CXX = $config{CXX}
   1413      1.24  christos     ? compiler_predefined($config{CROSS_COMPILE}.$config{CXX})
   1414      1.24  christos     : ();
   1415       1.1  christos 
   1416      1.21  christos # Check for makedepend capabilities.
   1417      1.21  christos if (!$disabled{makedepend}) {
   1418      1.21  christos     if ($config{target} =~ /^(VC|vms)-/) {
   1419      1.21  christos         # For VC- and vms- targets, there's nothing more to do here.  The
   1420      1.21  christos         # functionality is hard coded in the corresponding build files for
   1421      1.21  christos         # cl (Windows) and CC/DECC (VMS).
   1422      1.24  christos     } elsif (($predefined_C{__GNUC__} // -1) >= 3
   1423      1.24  christos              && !($predefined_C{__APPLE_CC__} && !$predefined_C{__clang__})) {
   1424      1.21  christos         # We know that GNU C version 3 and up as well as all clang
   1425      1.21  christos         # versions support dependency generation, but Xcode did not
   1426      1.21  christos         # handle $cc -M before clang support (but claims __GNUC__ = 3)
   1427      1.21  christos         $config{makedepprog} = "\$(CROSS_COMPILE)$config{CC}";
   1428      1.21  christos     } else {
   1429      1.21  christos         # In all other cases, we look for 'makedepend', and disable the
   1430      1.21  christos         # capability if not found.
   1431      1.21  christos         $config{makedepprog} = which('makedepend');
   1432      1.24  christos         disable('unavailable', 'makedepend') unless $config{makedepprog};
   1433      1.18  christos     }
   1434      1.21  christos }
   1435      1.18  christos 
   1436      1.24  christos if (!$disabled{asm} && !$predefined_C{__MACH__} && $^O ne 'VMS') {
   1437      1.21  christos     # probe for -Wa,--noexecstack option...
   1438      1.24  christos     if ($predefined_C{__clang__}) {
   1439      1.21  christos         # clang has builtin assembler, which doesn't recognize --help,
   1440      1.21  christos         # but it apparently recognizes the option in question on all
   1441      1.21  christos         # supported platforms even when it's meaningless. In other words
   1442      1.21  christos         # probe would fail, but probed option always accepted...
   1443      1.21  christos         push @{$config{cflags}}, "-Wa,--noexecstack", "-Qunused-arguments";
   1444      1.21  christos     } else {
   1445      1.21  christos         my $cc = $config{CROSS_COMPILE}.$config{CC};
   1446      1.21  christos         open(PIPE, "$cc -Wa,--help -c -o null.$$.o -x assembler /dev/null 2>&1 |");
   1447      1.21  christos         while(<PIPE>) {
   1448      1.21  christos             if (m/--noexecstack/) {
   1449      1.21  christos                 push @{$config{cflags}}, "-Wa,--noexecstack";
   1450      1.21  christos                 last;
   1451      1.21  christos             }
   1452      1.21  christos         }
   1453      1.21  christos         close(PIPE);
   1454      1.21  christos         unlink("null.$$.o");
   1455      1.18  christos     }
   1456      1.18  christos }
   1457       1.1  christos 
   1458      1.18  christos # Deal with bn_ops ###################################################
   1459       1.1  christos 
   1460      1.24  christos $config{bn_ll}                  =0;
   1461      1.24  christos $config{export_var_as_fn}       =0;
   1462      1.18  christos my $def_int="unsigned int";
   1463      1.24  christos $config{rc4_int}                =$def_int;
   1464      1.18  christos ($config{b64l},$config{b64},$config{b32})=(0,0,1);
   1465      1.18  christos 
   1466      1.18  christos my $count = 0;
   1467      1.18  christos foreach (sort split(/\s+/,$target{bn_ops})) {
   1468      1.18  christos     $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
   1469      1.18  christos     $config{export_var_as_fn}=1                 if $_ eq 'EXPORT_VAR_AS_FN';
   1470      1.24  christos     $config{bn_ll}=1                            if $_ eq 'BN_LLONG';
   1471      1.24  christos     $config{rc4_int}="unsigned char"            if $_ eq 'RC4_CHAR';
   1472      1.18  christos     ($config{b64l},$config{b64},$config{b32})
   1473      1.24  christos         =(0,1,0)                                if $_ eq 'SIXTY_FOUR_BIT';
   1474      1.18  christos     ($config{b64l},$config{b64},$config{b32})
   1475      1.24  christos         =(1,0,0)                                if $_ eq 'SIXTY_FOUR_BIT_LONG';
   1476      1.18  christos     ($config{b64l},$config{b64},$config{b32})
   1477      1.24  christos         =(0,0,1)                                if $_ eq 'THIRTY_TWO_BIT';
   1478      1.18  christos }
   1479      1.18  christos die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
   1480      1.18  christos     if $count > 1;
   1481       1.1  christos 
   1482       1.1  christos 
   1483      1.18  christos # Hack cflags for better warnings (dev option) #######################
   1484       1.1  christos 
   1485      1.21  christos # "Stringify" the C and C++ flags string.  This permits it to be made part of
   1486      1.21  christos # a string and works as well on command lines.
   1487      1.21  christos $config{cflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
   1488      1.21  christos                         @{$config{cflags}} ];
   1489      1.21  christos $config{cxxflags} = [ map { (my $x = $_) =~ s/([\\\"])/\\$1/g; $x }
   1490      1.21  christos                           @{$config{cxxflags}} ] if $config{CXX};
   1491       1.1  christos 
   1492      1.18  christos if (defined($config{api})) {
   1493      1.18  christos     $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
   1494      1.18  christos     my $apiflag = sprintf("OPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
   1495      1.18  christos     push @{$config{defines}}, $apiflag;
   1496      1.18  christos }
   1497      1.16       spz 
   1498      1.24  christos my @strict_warnings_collection=();
   1499       1.2       spz if ($strict_warnings)
   1500      1.24  christos         {
   1501      1.24  christos         my $wopt;
   1502      1.24  christos         my $gccver = $predefined_C{__GNUC__} // -1;
   1503      1.21  christos 
   1504      1.24  christos         warn "WARNING --strict-warnings requires gcc[>=4] or gcc-alike"
   1505      1.21  christos             unless $gccver >= 4;
   1506      1.24  christos         push @strict_warnings_collection, @gcc_devteam_warn;
   1507      1.24  christos         push @strict_warnings_collection, @clang_devteam_warn
   1508      1.24  christos             if (defined($predefined_C{__clang__}));
   1509      1.24  christos         }
   1510      1.24  christos 
   1511      1.24  christos if (grep { $_ eq '-static' } @{$config{LDFLAGS}}) {
   1512      1.24  christos     disable('static', 'pic', 'threads');
   1513      1.24  christos }
   1514      1.24  christos 
   1515      1.24  christos $config{CFLAGS} = [ map { $_ eq '--ossl-strict-warnings'
   1516      1.24  christos                               ? @strict_warnings_collection
   1517      1.24  christos                               : ( $_ ) }
   1518      1.24  christos                     @{$config{CFLAGS}} ];
   1519       1.2       spz 
   1520      1.18  christos unless ($disabled{"crypto-mdebug-backtrace"})
   1521      1.24  christos         {
   1522      1.24  christos         foreach my $wopt (split /\s+/, $memleak_devteam_backtrace)
   1523      1.24  christos                 {
   1524      1.24  christos                 push @{$config{cflags}}, $wopt
   1525      1.24  christos                         unless grep { $_ eq $wopt } @{$config{cflags}};
   1526      1.24  christos                 }
   1527      1.24  christos         if ($target =~ /^BSD-/)
   1528      1.24  christos                 {
   1529      1.24  christos                 push @{$config{ex_libs}}, "-lexecinfo";
   1530      1.24  christos                 }
   1531      1.24  christos         }
   1532       1.1  christos 
   1533      1.18  christos unless ($disabled{afalgeng}) {
   1534      1.18  christos     $config{afalgeng}="";
   1535      1.21  christos     if (grep { $_ eq 'afalgeng' } @{$target{enable}}) {
   1536      1.18  christos         my $minver = 4*10000 + 1*100 + 0;
   1537      1.21  christos         if ($config{CROSS_COMPILE} eq "") {
   1538      1.18  christos             my $verstr = `uname -r`;
   1539      1.18  christos             my ($ma, $mi1, $mi2) = split("\\.", $verstr);
   1540      1.18  christos             ($mi2) = $mi2 =~ /(\d+)/;
   1541      1.18  christos             my $ver = $ma*10000 + $mi1*100 + $mi2;
   1542      1.18  christos             if ($ver < $minver) {
   1543      1.24  christos                 disable('too-old-kernel', 'afalgeng');
   1544      1.18  christos             } else {
   1545      1.18  christos                 push @{$config{engdirs}}, "afalg";
   1546      1.18  christos             }
   1547      1.18  christos         } else {
   1548      1.24  christos             disable('cross-compiling', 'afalgeng');
   1549      1.18  christos         }
   1550      1.18  christos     } else {
   1551      1.24  christos         disable('not-linux', 'afalgeng');
   1552      1.18  christos     }
   1553      1.18  christos }
   1554      1.18  christos 
   1555      1.18  christos push @{$config{openssl_other_defines}}, "OPENSSL_NO_AFALGENG" if ($disabled{afalgeng});
   1556      1.18  christos 
   1557      1.24  christos # Get the extra flags used when building shared libraries and modules.  We
   1558      1.24  christos # do this late because some of them depend on %disabled.
   1559      1.24  christos 
   1560      1.24  christos # Make the flags to build DSOs the same as for shared libraries unless they
   1561      1.24  christos # are already defined
   1562      1.24  christos $target{module_cflags} = $target{shared_cflag} unless defined $target{module_cflags};
   1563      1.24  christos $target{module_cxxflags} = $target{shared_cxxflag} unless defined $target{module_cxxflags};
   1564      1.24  christos $target{module_ldflags} = $target{shared_ldflag} unless defined $target{module_ldflags};
   1565      1.24  christos {
   1566      1.24  christos     my $shared_info_pl =
   1567      1.24  christos         catfile(dirname($0), "Configurations", "shared-info.pl");
   1568      1.24  christos     my %shared_info = read_eval_file($shared_info_pl);
   1569      1.24  christos     push @{$target{_conf_fname_int}}, $shared_info_pl;
   1570      1.24  christos     my $si = $target{shared_target};
   1571      1.24  christos     while (ref $si ne "HASH") {
   1572      1.24  christos         last if ! defined $si;
   1573      1.24  christos         if (ref $si eq "CODE") {
   1574      1.24  christos             $si = $si->();
   1575      1.24  christos         } else {
   1576      1.24  christos             $si = $shared_info{$si};
   1577      1.24  christos         }
   1578      1.24  christos     }
   1579      1.21  christos 
   1580      1.24  christos     # Some of the 'shared_target' values don't have any entries in
   1581      1.24  christos     # %shared_info.  That's perfectly fine, AS LONG AS the build file
   1582      1.24  christos     # template knows how to handle this.  That is currently the case for
   1583      1.24  christos     # Windows and VMS.
   1584      1.24  christos     if (defined $si) {
   1585      1.24  christos         # Just as above, copy certain shared_* attributes to the corresponding
   1586      1.24  christos         # module_ attribute unless the latter is already defined
   1587      1.24  christos         $si->{module_cflags} = $si->{shared_cflag} unless defined $si->{module_cflags};
   1588      1.24  christos         $si->{module_cxxflags} = $si->{shared_cxxflag} unless defined $si->{module_cxxflags};
   1589      1.24  christos         $si->{module_ldflags} = $si->{shared_ldflag} unless defined $si->{module_ldflags};
   1590      1.24  christos         foreach (sort keys %$si) {
   1591      1.24  christos             $target{$_} = defined $target{$_}
   1592      1.24  christos                 ? add($si->{$_})->($target{$_})
   1593      1.24  christos                 : $si->{$_};
   1594      1.24  christos         }
   1595      1.21  christos     }
   1596      1.21  christos }
   1597      1.21  christos 
   1598      1.24  christos # ALL MODIFICATIONS TO %disabled, %config and %target MUST BE DONE FROM HERE ON
   1599      1.21  christos 
   1600      1.18  christos # If we use the unified build, collect information from build.info files
   1601      1.18  christos my %unified_info = ();
   1602      1.18  christos 
   1603      1.18  christos my $buildinfo_debug = defined($ENV{CONFIGURE_DEBUG_BUILDINFO});
   1604      1.18  christos if ($builder eq "unified") {
   1605      1.18  christos     use with_fallback qw(Text::Template);
   1606      1.18  christos 
   1607      1.18  christos     sub cleandir {
   1608      1.18  christos         my $base = shift;
   1609      1.18  christos         my $dir = shift;
   1610      1.18  christos         my $relativeto = shift || ".";
   1611      1.18  christos 
   1612      1.18  christos         $dir = catdir($base,$dir) unless isabsolute($dir);
   1613      1.18  christos 
   1614      1.18  christos         # Make sure the directories we're building in exists
   1615      1.18  christos         mkpath($dir);
   1616      1.18  christos 
   1617      1.18  christos         my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
   1618      1.18  christos         #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
   1619      1.18  christos         return $res;
   1620      1.18  christos     }
   1621      1.18  christos 
   1622      1.18  christos     sub cleanfile {
   1623      1.18  christos         my $base = shift;
   1624      1.18  christos         my $file = shift;
   1625      1.18  christos         my $relativeto = shift || ".";
   1626      1.18  christos 
   1627      1.18  christos         $file = catfile($base,$file) unless isabsolute($file);
   1628      1.18  christos 
   1629      1.18  christos         my $d = dirname($file);
   1630      1.18  christos         my $f = basename($file);
   1631      1.18  christos 
   1632      1.18  christos         # Make sure the directories we're building in exists
   1633      1.18  christos         mkpath($d);
   1634      1.18  christos 
   1635      1.18  christos         my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
   1636      1.18  christos         #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
   1637      1.18  christos         return $res;
   1638      1.18  christos     }
   1639      1.18  christos 
   1640      1.18  christos     # Store the name of the template file we will build the build file from
   1641      1.18  christos     # in %config.  This may be useful for the build file itself.
   1642      1.18  christos     my @build_file_template_names =
   1643      1.24  christos         ( $builder_platform."-".$target{build_file}.".tmpl",
   1644      1.24  christos           $target{build_file}.".tmpl" );
   1645      1.18  christos     my @build_file_templates = ();
   1646      1.18  christos 
   1647      1.18  christos     # First, look in the user provided directory, if given
   1648      1.21  christos     if (defined env($local_config_envname)) {
   1649      1.24  christos         @build_file_templates =
   1650      1.24  christos             map {
   1651      1.24  christos                 if ($^O eq 'VMS') {
   1652      1.24  christos                     # VMS environment variables are logical names,
   1653      1.24  christos                     # which can be used as is
   1654      1.24  christos                     $local_config_envname . ':' . $_;
   1655      1.24  christos                 } else {
   1656      1.24  christos                     catfile(env($local_config_envname), $_);
   1657      1.24  christos                 }
   1658      1.24  christos             }
   1659      1.24  christos             @build_file_template_names;
   1660      1.18  christos     }
   1661      1.18  christos     # Then, look in our standard directory
   1662      1.18  christos     push @build_file_templates,
   1663      1.24  christos         ( map { cleanfile($srcdir, catfile("Configurations", $_), $blddir) }
   1664      1.24  christos           @build_file_template_names );
   1665      1.18  christos 
   1666      1.18  christos     my $build_file_template;
   1667      1.18  christos     for $_ (@build_file_templates) {
   1668      1.24  christos         $build_file_template = $_;
   1669      1.18  christos         last if -f $build_file_template;
   1670      1.18  christos 
   1671      1.18  christos         $build_file_template = undef;
   1672      1.18  christos     }
   1673      1.18  christos     if (!defined $build_file_template) {
   1674      1.24  christos         die "*** Couldn't find any of:\n", join("\n", @build_file_templates), "\n";
   1675      1.18  christos     }
   1676      1.18  christos     $config{build_file_templates}
   1677      1.21  christos       = [ cleanfile($srcdir, catfile("Configurations", "common0.tmpl"),
   1678      1.21  christos                     $blddir),
   1679      1.21  christos           $build_file_template,
   1680      1.18  christos           cleanfile($srcdir, catfile("Configurations", "common.tmpl"),
   1681      1.18  christos                     $blddir) ];
   1682      1.18  christos 
   1683      1.18  christos     my @build_infos = ( [ ".", "build.info" ] );
   1684      1.18  christos     foreach (@{$config{dirs}}) {
   1685      1.18  christos         push @build_infos, [ $_, "build.info" ]
   1686      1.18  christos             if (-f catfile($srcdir, $_, "build.info"));
   1687      1.18  christos     }
   1688      1.18  christos     foreach (@{$config{sdirs}}) {
   1689      1.18  christos         push @build_infos, [ catdir("crypto", $_), "build.info" ]
   1690      1.18  christos             if (-f catfile($srcdir, "crypto", $_, "build.info"));
   1691      1.18  christos     }
   1692      1.18  christos     foreach (@{$config{engdirs}}) {
   1693      1.18  christos         push @build_infos, [ catdir("engines", $_), "build.info" ]
   1694      1.18  christos             if (-f catfile($srcdir, "engines", $_, "build.info"));
   1695      1.18  christos     }
   1696      1.21  christos     foreach (@{$config{tdirs}}) {
   1697      1.21  christos         push @build_infos, [ catdir("test", $_), "build.info" ]
   1698      1.21  christos             if (-f catfile($srcdir, "test", $_, "build.info"));
   1699      1.21  christos     }
   1700      1.18  christos 
   1701      1.18  christos     $config{build_infos} = [ ];
   1702      1.18  christos 
   1703      1.21  christos     my %ordinals = ();
   1704      1.18  christos     foreach (@build_infos) {
   1705      1.18  christos         my $sourced = catdir($srcdir, $_->[0]);
   1706      1.18  christos         my $buildd = catdir($blddir, $_->[0]);
   1707      1.18  christos 
   1708      1.18  christos         mkpath($buildd);
   1709      1.18  christos 
   1710      1.18  christos         my $f = $_->[1];
   1711      1.18  christos         # The basic things we're trying to build
   1712      1.18  christos         my @programs = ();
   1713      1.18  christos         my @programs_install = ();
   1714      1.18  christos         my @libraries = ();
   1715      1.18  christos         my @libraries_install = ();
   1716      1.18  christos         my @engines = ();
   1717      1.18  christos         my @engines_install = ();
   1718      1.18  christos         my @scripts = ();
   1719      1.18  christos         my @scripts_install = ();
   1720      1.18  christos         my @extra = ();
   1721      1.18  christos         my @overrides = ();
   1722      1.18  christos         my @intermediates = ();
   1723      1.18  christos         my @rawlines = ();
   1724      1.18  christos 
   1725      1.18  christos         my %sources = ();
   1726      1.18  christos         my %shared_sources = ();
   1727      1.18  christos         my %includes = ();
   1728      1.18  christos         my %depends = ();
   1729      1.18  christos         my %renames = ();
   1730      1.18  christos         my %sharednames = ();
   1731      1.18  christos         my %generate = ();
   1732      1.18  christos 
   1733      1.19  christos         # We want to detect configdata.pm in the source tree, so we
   1734      1.19  christos         # don't use it if the build tree is different.
   1735      1.19  christos         my $src_configdata = cleanfile($srcdir, "configdata.pm", $blddir);
   1736      1.19  christos 
   1737      1.18  christos         push @{$config{build_infos}}, catfile(abs2rel($sourced, $blddir), $f);
   1738      1.19  christos         my $template =
   1739      1.19  christos             Text::Template->new(TYPE => 'FILE',
   1740      1.19  christos                                 SOURCE => catfile($sourced, $f),
   1741      1.19  christos                                 PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
   1742      1.18  christos         die "Something went wrong with $sourced/$f: $!\n" unless $template;
   1743      1.18  christos         my @text =
   1744      1.18  christos             split /^/m,
   1745      1.18  christos             $template->fill_in(HASH => { config => \%config,
   1746      1.18  christos                                          target => \%target,
   1747      1.18  christos                                          disabled => \%disabled,
   1748      1.18  christos                                          withargs => \%withargs,
   1749      1.18  christos                                          builddir => abs2rel($buildd, $blddir),
   1750      1.18  christos                                          sourcedir => abs2rel($sourced, $blddir),
   1751      1.18  christos                                          buildtop => abs2rel($blddir, $blddir),
   1752      1.18  christos                                          sourcetop => abs2rel($srcdir, $blddir) },
   1753      1.18  christos                                DELIMITERS => [ "{-", "-}" ]);
   1754      1.18  christos 
   1755      1.18  christos         # The top item of this stack has the following values
   1756      1.18  christos         # -2 positive already run and we found ELSE (following ELSIF should fail)
   1757      1.18  christos         # -1 positive already run (skip until ENDIF)
   1758      1.18  christos         # 0 negatives so far (if we're at a condition, check it)
   1759      1.18  christos         # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
   1760      1.18  christos         # 2 positive ELSE (following ELSIF should fail)
   1761      1.18  christos         my @skip = ();
   1762      1.18  christos         collect_information(
   1763      1.18  christos             collect_from_array([ @text ],
   1764      1.18  christos                                qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
   1765      1.18  christos                                                 $l1 =~ s/\\$//; $l1.$l2 }),
   1766      1.18  christos             # Info we're looking for
   1767      1.18  christos             qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
   1768      1.18  christos             => sub {
   1769      1.18  christos                 if (! @skip || $skip[$#skip] > 0) {
   1770      1.18  christos                     push @skip, !! $1;
   1771      1.18  christos                 } else {
   1772      1.18  christos                     push @skip, -1;
   1773      1.18  christos                 }
   1774      1.18  christos             },
   1775      1.18  christos             qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
   1776      1.18  christos             => sub { die "ELSIF out of scope" if ! @skip;
   1777      1.18  christos                      die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
   1778      1.18  christos                      $skip[$#skip] = -1 if $skip[$#skip] != 0;
   1779      1.18  christos                      $skip[$#skip] = !! $1
   1780      1.18  christos                          if $skip[$#skip] == 0; },
   1781      1.18  christos             qr/^\s*ELSE\s*$/
   1782      1.18  christos             => sub { die "ELSE out of scope" if ! @skip;
   1783      1.18  christos                      $skip[$#skip] = -2 if $skip[$#skip] != 0;
   1784      1.18  christos                      $skip[$#skip] = 2 if $skip[$#skip] == 0; },
   1785      1.18  christos             qr/^\s*ENDIF\s*$/
   1786      1.18  christos             => sub { die "ENDIF out of scope" if ! @skip;
   1787      1.18  christos                      pop @skip; },
   1788      1.18  christos             qr/^\s*PROGRAMS(_NO_INST)?\s*=\s*(.*)\s*$/
   1789      1.18  christos             => sub {
   1790      1.18  christos                 if (!@skip || $skip[$#skip] > 0) {
   1791      1.18  christos                     my $install = $1;
   1792      1.18  christos                     my @x = tokenize($2);
   1793      1.18  christos                     push @programs, @x;
   1794      1.18  christos                     push @programs_install, @x unless $install;
   1795      1.18  christos                 }
   1796      1.18  christos             },
   1797      1.18  christos             qr/^\s*LIBS(_NO_INST)?\s*=\s*(.*)\s*$/
   1798      1.18  christos             => sub {
   1799      1.18  christos                 if (!@skip || $skip[$#skip] > 0) {
   1800      1.18  christos                     my $install = $1;
   1801      1.18  christos                     my @x = tokenize($2);
   1802      1.18  christos                     push @libraries, @x;
   1803      1.18  christos                     push @libraries_install, @x unless $install;
   1804      1.18  christos                 }
   1805      1.18  christos             },
   1806      1.18  christos             qr/^\s*ENGINES(_NO_INST)?\s*=\s*(.*)\s*$/
   1807      1.18  christos             => sub {
   1808      1.18  christos                 if (!@skip || $skip[$#skip] > 0) {
   1809      1.18  christos                     my $install = $1;
   1810      1.18  christos                     my @x = tokenize($2);
   1811      1.18  christos                     push @engines, @x;
   1812      1.18  christos                     push @engines_install, @x unless $install;
   1813      1.18  christos                 }
   1814      1.18  christos             },
   1815      1.18  christos             qr/^\s*SCRIPTS(_NO_INST)?\s*=\s*(.*)\s*$/
   1816      1.18  christos             => sub {
   1817      1.18  christos                 if (!@skip || $skip[$#skip] > 0) {
   1818      1.18  christos                     my $install = $1;
   1819      1.18  christos                     my @x = tokenize($2);
   1820      1.18  christos                     push @scripts, @x;
   1821      1.18  christos                     push @scripts_install, @x unless $install;
   1822      1.18  christos                 }
   1823      1.18  christos             },
   1824      1.18  christos             qr/^\s*EXTRA\s*=\s*(.*)\s*$/
   1825      1.18  christos             => sub { push @extra, tokenize($1)
   1826      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1827      1.18  christos             qr/^\s*OVERRIDES\s*=\s*(.*)\s*$/
   1828      1.18  christos             => sub { push @overrides, tokenize($1)
   1829      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1830      1.18  christos 
   1831      1.18  christos             qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
   1832      1.18  christos             => sub { push @{$ordinals{$1}}, tokenize($2)
   1833      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1834      1.18  christos             qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
   1835      1.18  christos             => sub { push @{$sources{$1}}, tokenize($2)
   1836      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1837      1.18  christos             qr/^\s*SHARED_SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
   1838      1.18  christos             => sub { push @{$shared_sources{$1}}, tokenize($2)
   1839      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1840      1.18  christos             qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
   1841      1.18  christos             => sub { push @{$includes{$1}}, tokenize($2)
   1842      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1843      1.18  christos             qr/^\s*DEPEND\[((?:\\.|[^\\\]])*)\]\s*=\s*(.*)\s*$/
   1844      1.18  christos             => sub { push @{$depends{$1}}, tokenize($2)
   1845      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1846      1.18  christos             qr/^\s*GENERATE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
   1847      1.18  christos             => sub { push @{$generate{$1}}, $2
   1848      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1849      1.18  christos             qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
   1850      1.18  christos             => sub { push @{$renames{$1}}, tokenize($2)
   1851      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1852      1.18  christos             qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
   1853      1.18  christos             => sub { push @{$sharednames{$1}}, tokenize($2)
   1854      1.18  christos                          if !@skip || $skip[$#skip] > 0 },
   1855      1.18  christos             qr/^\s*BEGINRAW\[((?:\\.|[^\\\]])+)\]\s*$/
   1856      1.18  christos             => sub {
   1857      1.18  christos                 my $lineiterator = shift;
   1858      1.18  christos                 my $target_kind = $1;
   1859      1.18  christos                 while (defined $lineiterator->()) {
   1860      1.18  christos                     s|\R$||;
   1861      1.18  christos                     if (/^\s*ENDRAW\[((?:\\.|[^\\\]])+)\]\s*$/) {
   1862      1.18  christos                         die "ENDRAW doesn't match BEGINRAW"
   1863      1.18  christos                             if $1 ne $target_kind;
   1864      1.18  christos                         last;
   1865      1.18  christos                     }
   1866      1.18  christos                     next if @skip && $skip[$#skip] <= 0;
   1867      1.18  christos                     push @rawlines,  $_
   1868      1.18  christos                         if ($target_kind eq $target{build_file}
   1869      1.18  christos                             || $target_kind eq $target{build_file}."(".$builder_platform.")");
   1870      1.18  christos                 }
   1871      1.18  christos             },
   1872      1.21  christos             qr/^\s*(?:#.*)?$/ => sub { },
   1873      1.18  christos             "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" },
   1874      1.18  christos             "BEFORE" => sub {
   1875      1.18  christos                 if ($buildinfo_debug) {
   1876      1.18  christos                     print STDERR "DEBUG: Parsing ",join(" ", @_),"\n";
   1877      1.18  christos                     print STDERR "DEBUG: ... before parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
   1878      1.18  christos                 }
   1879      1.18  christos             },
   1880      1.18  christos             "AFTER" => sub {
   1881      1.18  christos                 if ($buildinfo_debug) {
   1882      1.18  christos                     print STDERR "DEBUG: .... after parsing, skip stack is ",join(" ", map { int($_) } @skip),"\n";
   1883      1.18  christos                 }
   1884      1.18  christos             },
   1885      1.18  christos             );
   1886      1.18  christos         die "runaway IF?" if (@skip);
   1887      1.18  christos 
   1888      1.18  christos         foreach (keys %renames) {
   1889      1.18  christos             die "$_ renamed to more than one thing: "
   1890      1.18  christos                 ,join(" ", @{$renames{$_}}),"\n"
   1891      1.18  christos                 if scalar @{$renames{$_}} > 1;
   1892      1.18  christos             my $dest = cleanfile($buildd, $_, $blddir);
   1893      1.18  christos             my $to = cleanfile($buildd, $renames{$_}->[0], $blddir);
   1894      1.18  christos             die "$dest renamed to more than one thing: "
   1895      1.18  christos                 ,$unified_info{rename}->{$dest}, $to
   1896      1.18  christos                 unless !defined($unified_info{rename}->{$dest})
   1897      1.18  christos                 or $unified_info{rename}->{$dest} eq $to;
   1898      1.18  christos             $unified_info{rename}->{$dest} = $to;
   1899      1.18  christos         }
   1900      1.18  christos 
   1901      1.18  christos         foreach (@programs) {
   1902      1.18  christos             my $program = cleanfile($buildd, $_, $blddir);
   1903      1.18  christos             if ($unified_info{rename}->{$program}) {
   1904      1.18  christos                 $program = $unified_info{rename}->{$program};
   1905      1.18  christos             }
   1906      1.18  christos             $unified_info{programs}->{$program} = 1;
   1907      1.18  christos         }
   1908      1.18  christos 
   1909      1.18  christos         foreach (@programs_install) {
   1910      1.18  christos             my $program = cleanfile($buildd, $_, $blddir);
   1911      1.18  christos             if ($unified_info{rename}->{$program}) {
   1912      1.18  christos                 $program = $unified_info{rename}->{$program};
   1913      1.18  christos             }
   1914      1.18  christos             $unified_info{install}->{programs}->{$program} = 1;
   1915      1.18  christos         }
   1916      1.18  christos 
   1917      1.18  christos         foreach (@libraries) {
   1918      1.18  christos             my $library = cleanfile($buildd, $_, $blddir);
   1919      1.18  christos             if ($unified_info{rename}->{$library}) {
   1920      1.18  christos                 $library = $unified_info{rename}->{$library};
   1921      1.18  christos             }
   1922      1.18  christos             $unified_info{libraries}->{$library} = 1;
   1923      1.18  christos         }
   1924      1.18  christos 
   1925      1.18  christos         foreach (@libraries_install) {
   1926      1.18  christos             my $library = cleanfile($buildd, $_, $blddir);
   1927      1.18  christos             if ($unified_info{rename}->{$library}) {
   1928      1.18  christos                 $library = $unified_info{rename}->{$library};
   1929      1.18  christos             }
   1930      1.18  christos             $unified_info{install}->{libraries}->{$library} = 1;
   1931      1.18  christos         }
   1932      1.18  christos 
   1933      1.18  christos         die <<"EOF" if scalar @engines and !$config{dynamic_engines};
   1934      1.18  christos ENGINES can only be used if configured with 'dynamic-engine'.
   1935      1.18  christos This is usually a fault in a build.info file.
   1936      1.18  christos EOF
   1937      1.18  christos         foreach (@engines) {
   1938      1.18  christos             my $library = cleanfile($buildd, $_, $blddir);
   1939      1.18  christos             if ($unified_info{rename}->{$library}) {
   1940      1.18  christos                 $library = $unified_info{rename}->{$library};
   1941      1.18  christos             }
   1942      1.18  christos             $unified_info{engines}->{$library} = 1;
   1943      1.18  christos         }
   1944      1.18  christos 
   1945      1.18  christos         foreach (@engines_install) {
   1946      1.18  christos             my $library = cleanfile($buildd, $_, $blddir);
   1947      1.18  christos             if ($unified_info{rename}->{$library}) {
   1948      1.18  christos                 $library = $unified_info{rename}->{$library};
   1949      1.18  christos             }
   1950      1.18  christos             $unified_info{install}->{engines}->{$library} = 1;
   1951      1.18  christos         }
   1952      1.18  christos 
   1953      1.18  christos         foreach (@scripts) {
   1954      1.18  christos             my $script = cleanfile($buildd, $_, $blddir);
   1955      1.18  christos             if ($unified_info{rename}->{$script}) {
   1956      1.18  christos                 $script = $unified_info{rename}->{$script};
   1957      1.18  christos             }
   1958      1.18  christos             $unified_info{scripts}->{$script} = 1;
   1959      1.18  christos         }
   1960      1.18  christos 
   1961      1.18  christos         foreach (@scripts_install) {
   1962      1.18  christos             my $script = cleanfile($buildd, $_, $blddir);
   1963      1.18  christos             if ($unified_info{rename}->{$script}) {
   1964      1.18  christos                 $script = $unified_info{rename}->{$script};
   1965      1.18  christos             }
   1966      1.18  christos             $unified_info{install}->{scripts}->{$script} = 1;
   1967      1.18  christos         }
   1968      1.18  christos 
   1969      1.18  christos         foreach (@extra) {
   1970      1.18  christos             my $extra = cleanfile($buildd, $_, $blddir);
   1971      1.18  christos             $unified_info{extra}->{$extra} = 1;
   1972      1.18  christos         }
   1973      1.18  christos 
   1974      1.18  christos         foreach (@overrides) {
   1975      1.18  christos             my $override = cleanfile($buildd, $_, $blddir);
   1976      1.18  christos             $unified_info{overrides}->{$override} = 1;
   1977      1.18  christos         }
   1978      1.18  christos 
   1979      1.18  christos         push @{$unified_info{rawlines}}, @rawlines;
   1980      1.18  christos 
   1981      1.18  christos         unless ($disabled{shared}) {
   1982      1.18  christos             # Check sharednames.
   1983      1.18  christos             foreach (keys %sharednames) {
   1984      1.18  christos                 my $dest = cleanfile($buildd, $_, $blddir);
   1985      1.18  christos                 if ($unified_info{rename}->{$dest}) {
   1986      1.18  christos                     $dest = $unified_info{rename}->{$dest};
   1987      1.18  christos                 }
   1988      1.18  christos                 die "shared_name for $dest with multiple values: "
   1989      1.18  christos                     ,join(" ", @{$sharednames{$_}}),"\n"
   1990      1.18  christos                     if scalar @{$sharednames{$_}} > 1;
   1991      1.18  christos                 my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir);
   1992      1.18  christos                 die "shared_name found for a library $dest that isn't defined\n"
   1993      1.18  christos                     unless $unified_info{libraries}->{$dest};
   1994      1.18  christos                 die "shared_name for $dest with multiple values: "
   1995      1.18  christos                     ,$unified_info{sharednames}->{$dest}, ", ", $to
   1996      1.18  christos                     unless !defined($unified_info{sharednames}->{$dest})
   1997      1.18  christos                     or $unified_info{sharednames}->{$dest} eq $to;
   1998      1.18  christos                 $unified_info{sharednames}->{$dest} = $to;
   1999      1.18  christos             }
   2000      1.18  christos 
   2001      1.18  christos             # Additionally, we set up sharednames for libraries that don't
   2002      1.21  christos             # have any, as themselves.  Only for libraries that aren't
   2003      1.21  christos             # explicitly static.
   2004      1.21  christos             foreach (grep !/\.a$/, keys %{$unified_info{libraries}}) {
   2005      1.18  christos                 if (!defined $unified_info{sharednames}->{$_}) {
   2006      1.18  christos                     $unified_info{sharednames}->{$_} = $_
   2007      1.18  christos                 }
   2008      1.18  christos             }
   2009      1.18  christos 
   2010      1.21  christos             # Check that we haven't defined any library as both shared and
   2011      1.21  christos             # explicitly static.  That is forbidden.
   2012      1.21  christos             my @doubles = ();
   2013      1.21  christos             foreach (grep /\.a$/, keys %{$unified_info{libraries}}) {
   2014      1.21  christos                 (my $l = $_) =~ s/\.a$//;
   2015      1.21  christos                 push @doubles, $l if defined $unified_info{sharednames}->{$l};
   2016      1.21  christos             }
   2017      1.21  christos             die "these libraries are both explicitly static and shared:\n  ",
   2018      1.21  christos                 join(" ", @doubles), "\n"
   2019      1.21  christos                 if @doubles;
   2020      1.18  christos         }
   2021      1.18  christos 
   2022      1.18  christos         foreach (keys %sources) {
   2023      1.18  christos             my $dest = $_;
   2024      1.18  christos             my $ddest = cleanfile($buildd, $_, $blddir);
   2025      1.18  christos             if ($unified_info{rename}->{$ddest}) {
   2026      1.18  christos                 $ddest = $unified_info{rename}->{$ddest};
   2027      1.18  christos             }
   2028      1.18  christos             foreach (@{$sources{$dest}}) {
   2029      1.18  christos                 my $s = cleanfile($sourced, $_, $blddir);
   2030      1.18  christos 
   2031      1.18  christos                 # If it isn't in the source tree, we assume it's generated
   2032      1.18  christos                 # in the build tree
   2033      1.19  christos                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
   2034      1.18  christos                     $s = cleanfile($buildd, $_, $blddir);
   2035      1.18  christos                 }
   2036      1.21  christos                 # We recognise C++, C and asm files
   2037      1.21  christos                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
   2038      1.21  christos                     my $o = $_;
   2039      1.21  christos                     $o =~ s/\.[csS]$/.o/; # C and assembler
   2040      1.21  christos                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
   2041      1.18  christos                     $o = cleanfile($buildd, $o, $blddir);
   2042      1.18  christos                     $unified_info{sources}->{$ddest}->{$o} = 1;
   2043      1.18  christos                     $unified_info{sources}->{$o}->{$s} = 1;
   2044      1.21  christos                 } elsif ($s =~ /\.rc$/) {
   2045      1.21  christos                     # We also recognise resource files
   2046      1.21  christos                     my $o = $_;
   2047      1.21  christos                     $o =~ s/\.rc$/.res/; # Resource configuration
   2048      1.21  christos                     my $o = cleanfile($buildd, $o, $blddir);
   2049      1.21  christos                     $unified_info{sources}->{$ddest}->{$o} = 1;
   2050      1.21  christos                     $unified_info{sources}->{$o}->{$s} = 1;
   2051      1.18  christos                 } else {
   2052      1.18  christos                     $unified_info{sources}->{$ddest}->{$s} = 1;
   2053      1.18  christos                 }
   2054      1.18  christos             }
   2055      1.18  christos         }
   2056      1.18  christos 
   2057      1.18  christos         foreach (keys %shared_sources) {
   2058      1.18  christos             my $dest = $_;
   2059      1.18  christos             my $ddest = cleanfile($buildd, $_, $blddir);
   2060      1.18  christos             if ($unified_info{rename}->{$ddest}) {
   2061      1.18  christos                 $ddest = $unified_info{rename}->{$ddest};
   2062      1.18  christos             }
   2063      1.18  christos             foreach (@{$shared_sources{$dest}}) {
   2064      1.18  christos                 my $s = cleanfile($sourced, $_, $blddir);
   2065      1.18  christos 
   2066      1.18  christos                 # If it isn't in the source tree, we assume it's generated
   2067      1.18  christos                 # in the build tree
   2068      1.19  christos                 if ($s eq $src_configdata || ! -f $s || $generate{$_}) {
   2069      1.18  christos                     $s = cleanfile($buildd, $_, $blddir);
   2070      1.18  christos                 }
   2071      1.21  christos 
   2072      1.21  christos                 if ($s =~ /\.(cc|cpp|c|s|S)$/) {
   2073      1.21  christos                     # We recognise C++, C and asm files
   2074      1.21  christos                     my $o = $_;
   2075      1.21  christos                     $o =~ s/\.[csS]$/.o/; # C and assembler
   2076      1.21  christos                     $o =~ s/\.(cc|cpp)$/_cc.o/; # C++
   2077      1.18  christos                     $o = cleanfile($buildd, $o, $blddir);
   2078      1.18  christos                     $unified_info{shared_sources}->{$ddest}->{$o} = 1;
   2079      1.18  christos                     $unified_info{sources}->{$o}->{$s} = 1;
   2080      1.21  christos                 } elsif ($s =~ /\.rc$/) {
   2081      1.21  christos                     # We also recognise resource files
   2082      1.21  christos                     my $o = $_;
   2083      1.21  christos                     $o =~ s/\.rc$/.res/; # Resource configuration
   2084      1.21  christos                     my $o = cleanfile($buildd, $o, $blddir);
   2085      1.21  christos                     $unified_info{shared_sources}->{$ddest}->{$o} = 1;
   2086      1.21  christos                     $unified_info{sources}->{$o}->{$s} = 1;
   2087      1.21  christos                 } elsif ($s =~ /\.(def|map|opt)$/) {
   2088      1.21  christos                     # We also recognise .def / .map / .opt files
   2089      1.21  christos                     # We know they are generated files
   2090      1.21  christos                     my $def = cleanfile($buildd, $s, $blddir);
   2091      1.21  christos                     $unified_info{shared_sources}->{$ddest}->{$def} = 1;
   2092      1.18  christos                 } else {
   2093      1.18  christos                     die "unrecognised source file type for shared library: $s\n";
   2094      1.18  christos                 }
   2095      1.18  christos             }
   2096      1.18  christos         }
   2097      1.18  christos 
   2098      1.18  christos         foreach (keys %generate) {
   2099      1.18  christos             my $dest = $_;
   2100      1.18  christos             my $ddest = cleanfile($buildd, $_, $blddir);
   2101      1.18  christos             if ($unified_info{rename}->{$ddest}) {
   2102      1.18  christos                 $ddest = $unified_info{rename}->{$ddest};
   2103      1.18  christos             }
   2104      1.18  christos             die "more than one generator for $dest: "
   2105      1.18  christos                     ,join(" ", @{$generate{$_}}),"\n"
   2106      1.18  christos                     if scalar @{$generate{$_}} > 1;
   2107      1.18  christos             my @generator = split /\s+/, $generate{$dest}->[0];
   2108      1.18  christos             $generator[0] = cleanfile($sourced, $generator[0], $blddir),
   2109      1.18  christos             $unified_info{generate}->{$ddest} = [ @generator ];
   2110      1.18  christos         }
   2111      1.18  christos 
   2112      1.18  christos         foreach (keys %depends) {
   2113      1.18  christos             my $dest = $_;
   2114      1.18  christos             my $ddest = $dest eq "" ? "" : cleanfile($sourced, $_, $blddir);
   2115      1.18  christos 
   2116      1.18  christos             # If the destination doesn't exist in source, it can only be
   2117      1.18  christos             # a generated file in the build tree.
   2118      1.19  christos             if ($ddest ne "" && ($ddest eq $src_configdata || ! -f $ddest)) {
   2119      1.18  christos                 $ddest = cleanfile($buildd, $_, $blddir);
   2120      1.18  christos                 if ($unified_info{rename}->{$ddest}) {
   2121      1.18  christos                     $ddest = $unified_info{rename}->{$ddest};
   2122      1.18  christos                 }
   2123      1.18  christos             }
   2124      1.18  christos             foreach (@{$depends{$dest}}) {
   2125      1.18  christos                 my $d = cleanfile($sourced, $_, $blddir);
   2126      1.18  christos 
   2127      1.18  christos                 # If we know it's generated, or assume it is because we can't
   2128      1.18  christos                 # find it in the source tree, we set file we depend on to be
   2129      1.18  christos                 # in the build tree rather than the source tree, and assume
   2130      1.18  christos                 # and that there are lines to build it in a BEGINRAW..ENDRAW
   2131      1.18  christos                 # section or in the Makefile template.
   2132      1.19  christos                 if ($d eq $src_configdata
   2133      1.19  christos                     || ! -f $d
   2134      1.18  christos                     || (grep { $d eq $_ }
   2135      1.18  christos                         map { cleanfile($srcdir, $_, $blddir) }
   2136      1.18  christos                         grep { /\.h$/ } keys %{$unified_info{generate}})) {
   2137      1.18  christos                     $d = cleanfile($buildd, $_, $blddir);
   2138      1.18  christos                 }
   2139      1.18  christos                 # Take note if the file to depend on is being renamed
   2140      1.21  christos                 # Take extra care with files ending with .a, they should
   2141      1.21  christos                 # be treated without that extension, and the extension
   2142      1.21  christos                 # should be added back after treatment.
   2143      1.21  christos                 $d =~ /(\.a)?$/;
   2144      1.21  christos                 my $e = $1 // "";
   2145      1.21  christos                 $d = $`;
   2146      1.18  christos                 if ($unified_info{rename}->{$d}) {
   2147      1.18  christos                     $d = $unified_info{rename}->{$d};
   2148      1.18  christos                 }
   2149      1.21  christos                 $d .= $e;
   2150      1.18  christos                 $unified_info{depends}->{$ddest}->{$d} = 1;
   2151      1.18  christos             }
   2152      1.18  christos         }
   2153      1.18  christos 
   2154      1.18  christos         foreach (keys %includes) {
   2155      1.18  christos             my $dest = $_;
   2156      1.18  christos             my $ddest = cleanfile($sourced, $_, $blddir);
   2157      1.18  christos 
   2158      1.18  christos             # If the destination doesn't exist in source, it can only be
   2159      1.18  christos             # a generated file in the build tree.
   2160      1.19  christos             if ($ddest eq $src_configdata || ! -f $ddest) {
   2161      1.18  christos                 $ddest = cleanfile($buildd, $_, $blddir);
   2162      1.18  christos                 if ($unified_info{rename}->{$ddest}) {
   2163      1.18  christos                     $ddest = $unified_info{rename}->{$ddest};
   2164      1.18  christos                 }
   2165      1.18  christos             }
   2166      1.18  christos             foreach (@{$includes{$dest}}) {
   2167      1.18  christos                 my $is = cleandir($sourced, $_, $blddir);
   2168      1.18  christos                 my $ib = cleandir($buildd, $_, $blddir);
   2169      1.18  christos                 push @{$unified_info{includes}->{$ddest}->{source}}, $is
   2170      1.18  christos                     unless grep { $_ eq $is } @{$unified_info{includes}->{$ddest}->{source}};
   2171      1.18  christos                 push @{$unified_info{includes}->{$ddest}->{build}}, $ib
   2172      1.18  christos                     unless grep { $_ eq $ib } @{$unified_info{includes}->{$ddest}->{build}};
   2173      1.18  christos             }
   2174      1.18  christos         }
   2175      1.18  christos     }
   2176      1.18  christos 
   2177      1.21  christos     my $ordinals_text = join(', ', sort keys %ordinals);
   2178      1.21  christos     warn <<"EOF" if $ordinals_text;
   2179      1.21  christos 
   2180      1.21  christos WARNING: ORDINALS were specified for $ordinals_text
   2181      1.21  christos They are ignored and should be replaced with a combination of GENERATE,
   2182      1.21  christos DEPEND and SHARED_SOURCE.
   2183      1.21  christos EOF
   2184      1.21  christos 
   2185      1.19  christos     # Massage the result
   2186      1.19  christos 
   2187      1.22  christos     # If the user configured no-shared, we allow no shared sources
   2188      1.22  christos     if ($disabled{shared}) {
   2189      1.22  christos         foreach (keys %{$unified_info{shared_sources}}) {
   2190      1.22  christos             foreach (keys %{$unified_info{shared_sources}->{$_}}) {
   2191      1.22  christos                 delete $unified_info{sources}->{$_};
   2192      1.22  christos             }
   2193      1.22  christos         }
   2194      1.22  christos         $unified_info{shared_sources} = {};
   2195      1.22  christos     }
   2196      1.22  christos 
   2197      1.19  christos     # If we depend on a header file or a perl module, add an inclusion of
   2198      1.19  christos     # its directory to allow smoothe inclusion
   2199      1.19  christos     foreach my $dest (keys %{$unified_info{depends}}) {
   2200      1.19  christos         next if $dest eq "";
   2201      1.19  christos         foreach my $d (keys %{$unified_info{depends}->{$dest}}) {
   2202      1.19  christos             next unless $d =~ /\.(h|pm)$/;
   2203      1.19  christos             my $i = dirname($d);
   2204      1.19  christos             my $spot =
   2205      1.19  christos                 $d eq "configdata.pm" || defined($unified_info{generate}->{$d})
   2206      1.19  christos                 ? 'build' : 'source';
   2207      1.19  christos             push @{$unified_info{includes}->{$dest}->{$spot}}, $i
   2208      1.19  christos                 unless grep { $_ eq $i } @{$unified_info{includes}->{$dest}->{$spot}};
   2209      1.19  christos         }
   2210      1.19  christos     }
   2211      1.19  christos 
   2212      1.19  christos     # Trickle down includes placed on libraries, engines and programs to
   2213      1.19  christos     # their sources (i.e. object files)
   2214      1.19  christos     foreach my $dest (keys %{$unified_info{engines}},
   2215      1.19  christos                       keys %{$unified_info{libraries}},
   2216      1.19  christos                       keys %{$unified_info{programs}}) {
   2217      1.19  christos         foreach my $k (("source", "build")) {
   2218      1.19  christos             next unless defined($unified_info{includes}->{$dest}->{$k});
   2219      1.19  christos             my @incs = reverse @{$unified_info{includes}->{$dest}->{$k}};
   2220      1.19  christos             foreach my $obj (grep /\.o$/,
   2221      1.22  christos                              (keys %{$unified_info{sources}->{$dest} // {}},
   2222      1.22  christos                               keys %{$unified_info{shared_sources}->{$dest} // {}})) {
   2223      1.19  christos                 foreach my $inc (@incs) {
   2224      1.19  christos                     unshift @{$unified_info{includes}->{$obj}->{$k}}, $inc
   2225      1.19  christos                         unless grep { $_ eq $inc } @{$unified_info{includes}->{$obj}->{$k}};
   2226      1.19  christos                 }
   2227      1.19  christos             }
   2228      1.19  christos         }
   2229      1.19  christos         delete $unified_info{includes}->{$dest};
   2230      1.19  christos     }
   2231      1.19  christos 
   2232      1.18  christos     ### Make unified_info a bit more efficient
   2233      1.18  christos     # One level structures
   2234      1.18  christos     foreach (("programs", "libraries", "engines", "scripts", "extra", "overrides")) {
   2235      1.18  christos         $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
   2236      1.18  christos     }
   2237      1.18  christos     # Two level structures
   2238      1.18  christos     foreach my $l1 (("install", "sources", "shared_sources", "ldadd", "depends")) {
   2239      1.18  christos         foreach my $l2 (sort keys %{$unified_info{$l1}}) {
   2240      1.18  christos             $unified_info{$l1}->{$l2} =
   2241      1.18  christos                 [ sort keys %{$unified_info{$l1}->{$l2}} ];
   2242      1.18  christos         }
   2243      1.18  christos     }
   2244      1.18  christos     # Includes
   2245      1.18  christos     foreach my $dest (sort keys %{$unified_info{includes}}) {
   2246      1.18  christos         if (defined($unified_info{includes}->{$dest}->{build})) {
   2247      1.19  christos             my @source_includes = ();
   2248      1.19  christos             @source_includes = ( @{$unified_info{includes}->{$dest}->{source}} )
   2249      1.19  christos                 if defined($unified_info{includes}->{$dest}->{source});
   2250      1.18  christos             $unified_info{includes}->{$dest} =
   2251      1.18  christos                 [ @{$unified_info{includes}->{$dest}->{build}} ];
   2252      1.18  christos             foreach my $inc (@source_includes) {
   2253      1.18  christos                 push @{$unified_info{includes}->{$dest}}, $inc
   2254      1.18  christos                     unless grep { $_ eq $inc } @{$unified_info{includes}->{$dest}};
   2255      1.18  christos             }
   2256      1.18  christos         } else {
   2257      1.18  christos             $unified_info{includes}->{$dest} =
   2258      1.18  christos                 [ @{$unified_info{includes}->{$dest}->{source}} ];
   2259      1.18  christos         }
   2260      1.18  christos     }
   2261      1.22  christos 
   2262      1.22  christos     # For convenience collect information regarding directories where
   2263      1.22  christos     # files are generated, those generated files and the end product
   2264      1.22  christos     # they end up in where applicable.  Then, add build rules for those
   2265      1.22  christos     # directories
   2266      1.22  christos     my %loopinfo = ( "lib" => [ @{$unified_info{libraries}} ],
   2267      1.22  christos                      "dso" => [ @{$unified_info{engines}} ],
   2268      1.22  christos                      "bin" => [ @{$unified_info{programs}} ],
   2269      1.22  christos                      "script" => [ @{$unified_info{scripts}} ] );
   2270      1.22  christos     foreach my $type (keys %loopinfo) {
   2271      1.22  christos         foreach my $product (@{$loopinfo{$type}}) {
   2272      1.22  christos             my %dirs = ();
   2273      1.22  christos             my $pd = dirname($product);
   2274      1.22  christos 
   2275      1.22  christos             foreach (@{$unified_info{sources}->{$product} // []},
   2276      1.22  christos                      @{$unified_info{shared_sources}->{$product} // []}) {
   2277      1.22  christos                 my $d = dirname($_);
   2278      1.22  christos 
   2279      1.22  christos                 # We don't want to create targets for source directories
   2280      1.22  christos                 # when building out of source
   2281      1.22  christos                 next if ($config{sourcedir} ne $config{builddir}
   2282      1.22  christos                              && $d =~ m|^\Q$config{sourcedir}\E|);
   2283      1.22  christos                 # We already have a "test" target, and the current directory
   2284      1.22  christos                 # is just silly to make a target for
   2285      1.22  christos                 next if $d eq "test" || $d eq ".";
   2286      1.22  christos 
   2287      1.22  christos                 $dirs{$d} = 1;
   2288      1.22  christos                 push @{$unified_info{dirinfo}->{$d}->{deps}}, $_
   2289      1.22  christos                     if $d ne $pd;
   2290      1.22  christos             }
   2291      1.22  christos             foreach (keys %dirs) {
   2292      1.22  christos                 push @{$unified_info{dirinfo}->{$_}->{products}->{$type}},
   2293      1.22  christos                     $product;
   2294      1.22  christos             }
   2295      1.22  christos         }
   2296      1.22  christos     }
   2297      1.18  christos }
   2298      1.18  christos 
   2299      1.18  christos # For the schemes that need it, we provide the old *_obj configs
   2300      1.18  christos # from the *_asm_obj ones
   2301      1.18  christos foreach (grep /_(asm|aux)_src$/, keys %target) {
   2302      1.18  christos     my $src = $_;
   2303      1.18  christos     (my $obj = $_) =~ s/_(asm|aux)_src$/_obj/;
   2304      1.21  christos     $target{$obj} = $target{$src};
   2305      1.21  christos     $target{$obj} =~ s/\.[csS]\b/.o/g; # C and assembler
   2306      1.21  christos     $target{$obj} =~ s/\.(cc|cpp)\b/_cc.o/g; # C++
   2307      1.18  christos }
   2308      1.18  christos 
   2309      1.18  christos # Write down our configuration where it fits #########################
   2310      1.18  christos 
   2311      1.21  christos print "Creating configdata.pm\n";
   2312      1.18  christos open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
   2313      1.18  christos print OUT <<"EOF";
   2314      1.21  christos #! $config{HASHBANGPERL}
   2315      1.21  christos 
   2316      1.18  christos package configdata;
   2317      1.18  christos 
   2318      1.18  christos use strict;
   2319      1.18  christos use warnings;
   2320       1.1  christos 
   2321      1.18  christos use Exporter;
   2322      1.18  christos #use vars qw(\@ISA \@EXPORT);
   2323      1.18  christos our \@ISA = qw(Exporter);
   2324      1.18  christos our \@EXPORT = qw(\%config \%target \%disabled \%withargs \%unified_info \@disablables);
   2325       1.1  christos 
   2326      1.18  christos EOF
   2327      1.18  christos print OUT "our %config = (\n";
   2328      1.18  christos foreach (sort keys %config) {
   2329      1.18  christos     if (ref($config{$_}) eq "ARRAY") {
   2330      1.24  christos         print OUT "  ", $_, " => [ ", join(", ",
   2331      1.24  christos                                            map { quotify("perl", $_) }
   2332      1.24  christos                                            @{$config{$_}}), " ],\n";
   2333      1.21  christos     } elsif (ref($config{$_}) eq "HASH") {
   2334      1.24  christos         print OUT "  ", $_, " => {";
   2335      1.21  christos         if (scalar keys %{$config{$_}} > 0) {
   2336      1.21  christos             print OUT "\n";
   2337      1.21  christos             foreach my $key (sort keys %{$config{$_}}) {
   2338      1.21  christos                 print OUT "      ",
   2339      1.21  christos                     join(" => ",
   2340      1.21  christos                          quotify("perl", $key),
   2341      1.21  christos                          defined $config{$_}->{$key}
   2342      1.21  christos                              ? quotify("perl", $config{$_}->{$key})
   2343      1.21  christos                              : "undef");
   2344      1.21  christos                 print OUT ",\n";
   2345      1.21  christos             }
   2346      1.21  christos             print OUT "  ";
   2347      1.21  christos         }
   2348      1.21  christos         print OUT "},\n";
   2349      1.18  christos     } else {
   2350      1.24  christos         print OUT "  ", $_, " => ", quotify("perl", $config{$_}), ",\n"
   2351      1.18  christos     }
   2352      1.18  christos }
   2353      1.18  christos print OUT <<"EOF";
   2354      1.18  christos );
   2355      1.18  christos 
   2356      1.18  christos EOF
   2357      1.18  christos print OUT "our %target = (\n";
   2358      1.18  christos foreach (sort keys %target) {
   2359      1.18  christos     if (ref($target{$_}) eq "ARRAY") {
   2360      1.24  christos         print OUT "  ", $_, " => [ ", join(", ",
   2361      1.24  christos                                            map { quotify("perl", $_) }
   2362      1.24  christos                                            @{$target{$_}}), " ],\n";
   2363      1.18  christos     } else {
   2364      1.24  christos         print OUT "  ", $_, " => ", quotify("perl", $target{$_}), ",\n"
   2365      1.18  christos     }
   2366      1.18  christos }
   2367      1.18  christos print OUT <<"EOF";
   2368      1.18  christos );
   2369       1.1  christos 
   2370      1.18  christos EOF
   2371      1.18  christos print OUT "our \%available_protocols = (\n";
   2372      1.18  christos print OUT "  tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
   2373      1.18  christos print OUT "  dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
   2374      1.18  christos print OUT <<"EOF";
   2375      1.18  christos );
   2376       1.1  christos 
   2377      1.18  christos EOF
   2378      1.18  christos print OUT "our \@disablables = (\n";
   2379      1.18  christos foreach (@disablables) {
   2380      1.18  christos     print OUT "  ", quotify("perl", $_), ",\n";
   2381      1.18  christos }
   2382      1.18  christos print OUT <<"EOF";
   2383      1.18  christos );
   2384       1.1  christos 
   2385      1.18  christos EOF
   2386      1.18  christos print OUT "our \%disabled = (\n";
   2387      1.18  christos foreach (sort keys %disabled) {
   2388      1.18  christos     print OUT "  ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
   2389      1.18  christos }
   2390      1.18  christos print OUT <<"EOF";
   2391      1.18  christos );
   2392       1.1  christos 
   2393       1.1  christos EOF
   2394      1.18  christos print OUT "our %withargs = (\n";
   2395      1.18  christos foreach (sort keys %withargs) {
   2396      1.18  christos     if (ref($withargs{$_}) eq "ARRAY") {
   2397      1.24  christos         print OUT "  ", $_, " => [ ", join(", ",
   2398      1.24  christos                                            map { quotify("perl", $_) }
   2399      1.24  christos                                            @{$withargs{$_}}), " ],\n";
   2400      1.18  christos     } else {
   2401      1.24  christos         print OUT "  ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
   2402      1.18  christos     }
   2403      1.18  christos }
   2404      1.18  christos print OUT <<"EOF";
   2405      1.18  christos );
   2406      1.18  christos 
   2407       1.1  christos EOF
   2408      1.18  christos if ($builder eq "unified") {
   2409      1.18  christos     my $recurse;
   2410      1.18  christos     $recurse = sub {
   2411      1.18  christos         my $indent = shift;
   2412      1.18  christos         foreach (@_) {
   2413      1.18  christos             if (ref $_ eq "ARRAY") {
   2414      1.18  christos                 print OUT " "x$indent, "[\n";
   2415      1.18  christos                 foreach (@$_) {
   2416      1.18  christos                     $recurse->($indent + 4, $_);
   2417      1.18  christos                 }
   2418      1.18  christos                 print OUT " "x$indent, "],\n";
   2419      1.18  christos             } elsif (ref $_ eq "HASH") {
   2420      1.18  christos                 my %h = %$_;
   2421      1.18  christos                 print OUT " "x$indent, "{\n";
   2422      1.18  christos                 foreach (sort keys %h) {
   2423      1.18  christos                     if (ref $h{$_} eq "") {
   2424      1.18  christos                         print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
   2425      1.18  christos                     } else {
   2426      1.18  christos                         print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
   2427      1.18  christos                         $recurse->($indent + 8, $h{$_});
   2428      1.18  christos                     }
   2429      1.18  christos                 }
   2430      1.18  christos                 print OUT " "x$indent, "},\n";
   2431      1.18  christos             } else {
   2432      1.18  christos                 print OUT " "x$indent, quotify("perl", $_), ",\n";
   2433      1.18  christos             }
   2434      1.18  christos         }
   2435      1.18  christos     };
   2436      1.18  christos     print OUT "our %unified_info = (\n";
   2437      1.18  christos     foreach (sort keys %unified_info) {
   2438      1.18  christos         if (ref $unified_info{$_} eq "") {
   2439      1.18  christos             print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
   2440      1.18  christos         } else {
   2441      1.18  christos             print OUT " "x4, quotify("perl", $_), " =>\n";
   2442      1.18  christos             $recurse->(8, $unified_info{$_});
   2443      1.18  christos         }
   2444      1.18  christos     }
   2445      1.18  christos     print OUT <<"EOF";
   2446      1.18  christos );
   2447      1.18  christos 
   2448      1.18  christos EOF
   2449      1.18  christos }
   2450      1.21  christos print OUT
   2451      1.21  christos     "# The following data is only used when this files is use as a script\n";
   2452      1.21  christos print OUT "my \@makevars = (\n";
   2453      1.21  christos foreach (sort keys %user) {
   2454      1.21  christos     print OUT "    '",$_,"',\n";
   2455      1.21  christos }
   2456      1.21  christos print OUT ");\n";
   2457      1.21  christos print OUT "my \%disabled_info = (\n";
   2458      1.21  christos foreach my $what (sort keys %disabled_info) {
   2459      1.21  christos     print OUT "    '$what' => {\n";
   2460      1.21  christos     foreach my $info (sort keys %{$disabled_info{$what}}) {
   2461      1.21  christos         if (ref $disabled_info{$what}->{$info} eq 'ARRAY') {
   2462      1.21  christos             print OUT "        $info => [ ",
   2463      1.21  christos                 join(', ', map { "'$_'" } @{$disabled_info{$what}->{$info}}),
   2464      1.21  christos                 " ],\n";
   2465      1.21  christos         } else {
   2466      1.21  christos             print OUT "        $info => '", $disabled_info{$what}->{$info},
   2467      1.21  christos                 "',\n";
   2468      1.21  christos         }
   2469      1.21  christos     }
   2470      1.21  christos     print OUT "    },\n";
   2471      1.21  christos }
   2472      1.21  christos print OUT ");\n";
   2473      1.21  christos print OUT 'my @user_crossable = qw( ', join (' ', @user_crossable), " );\n";
   2474      1.21  christos print OUT << 'EOF';
   2475      1.21  christos # If run directly, we can give some answers, and even reconfigure
   2476      1.21  christos unless (caller) {
   2477      1.21  christos     use Getopt::Long;
   2478      1.21  christos     use File::Spec::Functions;
   2479      1.21  christos     use File::Basename;
   2480      1.21  christos     use Pod::Usage;
   2481      1.21  christos 
   2482      1.21  christos     my $here = dirname($0);
   2483      1.21  christos 
   2484      1.21  christos     my $dump = undef;
   2485      1.21  christos     my $cmdline = undef;
   2486      1.21  christos     my $options = undef;
   2487      1.21  christos     my $target = undef;
   2488      1.21  christos     my $envvars = undef;
   2489      1.21  christos     my $makevars = undef;
   2490      1.21  christos     my $buildparams = undef;
   2491      1.21  christos     my $reconf = undef;
   2492      1.21  christos     my $verbose = undef;
   2493      1.21  christos     my $help = undef;
   2494      1.21  christos     my $man = undef;
   2495      1.21  christos     GetOptions('dump|d'                 => \$dump,
   2496      1.21  christos                'command-line|c'         => \$cmdline,
   2497      1.21  christos                'options|o'              => \$options,
   2498      1.21  christos                'target|t'               => \$target,
   2499      1.21  christos                'environment|e'          => \$envvars,
   2500      1.21  christos                'make-variables|m'       => \$makevars,
   2501      1.21  christos                'build-parameters|b'     => \$buildparams,
   2502      1.21  christos                'reconfigure|reconf|r'   => \$reconf,
   2503      1.21  christos                'verbose|v'              => \$verbose,
   2504      1.21  christos                'help'                   => \$help,
   2505      1.21  christos                'man'                    => \$man)
   2506      1.21  christos         or die "Errors in command line arguments\n";
   2507      1.21  christos 
   2508      1.21  christos     unless ($dump || $cmdline || $options || $target || $envvars || $makevars
   2509      1.21  christos             || $buildparams || $reconf || $verbose || $help || $man) {
   2510      1.21  christos         print STDERR <<"_____";
   2511      1.21  christos You must give at least one option.
   2512      1.21  christos For more information, do '$0 --help'
   2513      1.21  christos _____
   2514      1.21  christos         exit(2);
   2515      1.21  christos     }
   2516      1.21  christos 
   2517      1.21  christos     if ($help) {
   2518      1.21  christos         pod2usage(-exitval => 0,
   2519      1.21  christos                   -verbose => 1);
   2520      1.21  christos     }
   2521      1.21  christos     if ($man) {
   2522      1.21  christos         pod2usage(-exitval => 0,
   2523      1.21  christos                   -verbose => 2);
   2524      1.21  christos     }
   2525      1.21  christos     if ($dump || $cmdline) {
   2526      1.21  christos         print "\nCommand line (with current working directory = $here):\n\n";
   2527      1.21  christos         print '    ',join(' ',
   2528      1.21  christos                           $config{PERL},
   2529      1.21  christos                           catfile($config{sourcedir}, 'Configure'),
   2530      1.21  christos                           @{$config{perlargv}}), "\n";
   2531      1.21  christos         print "\nPerl information:\n\n";
   2532      1.21  christos         print '    ',$config{perl_cmd},"\n";
   2533      1.21  christos         print '    ',$config{perl_version},' for ',$config{perl_archname},"\n";
   2534      1.21  christos     }
   2535      1.21  christos     if ($dump || $options) {
   2536      1.21  christos         my $longest = 0;
   2537      1.21  christos         my $longest2 = 0;
   2538      1.21  christos         foreach my $what (@disablables) {
   2539      1.21  christos             $longest = length($what) if $longest < length($what);
   2540      1.21  christos             $longest2 = length($disabled{$what})
   2541      1.21  christos                 if $disabled{$what} && $longest2 < length($disabled{$what});
   2542      1.21  christos         }
   2543      1.21  christos         print "\nEnabled features:\n\n";
   2544      1.21  christos         foreach my $what (@disablables) {
   2545      1.21  christos             print "    $what\n" unless $disabled{$what};
   2546      1.21  christos         }
   2547      1.21  christos         print "\nDisabled features:\n\n";
   2548      1.21  christos         foreach my $what (@disablables) {
   2549      1.21  christos             if ($disabled{$what}) {
   2550      1.21  christos                 print "    $what", ' ' x ($longest - length($what) + 1),
   2551      1.21  christos                     "[$disabled{$what}]", ' ' x ($longest2 - length($disabled{$what}) + 1);
   2552      1.21  christos                 print $disabled_info{$what}->{macro}
   2553      1.21  christos                     if $disabled_info{$what}->{macro};
   2554      1.21  christos                 print ' (skip ',
   2555      1.21  christos                     join(', ', @{$disabled_info{$what}->{skipped}}),
   2556      1.21  christos                     ')'
   2557      1.21  christos                     if $disabled_info{$what}->{skipped};
   2558      1.21  christos                 print "\n";
   2559      1.21  christos             }
   2560      1.21  christos         }
   2561      1.21  christos     }
   2562      1.21  christos     if ($dump || $target) {
   2563      1.21  christos         print "\nConfig target attributes:\n\n";
   2564      1.21  christos         foreach (sort keys %target) {
   2565      1.21  christos             next if $_ =~ m|^_| || $_ eq 'template';
   2566      1.21  christos             my $quotify = sub {
   2567      1.21  christos                 map { (my $x = $_) =~ s|([\\\$\@"])|\\$1|g; "\"$x\""} @_;
   2568      1.21  christos             };
   2569      1.21  christos             print '    ', $_, ' => ';
   2570      1.21  christos             if (ref($target{$_}) eq "ARRAY") {
   2571      1.21  christos                 print '[ ', join(', ', $quotify->(@{$target{$_}})), " ],\n";
   2572      1.21  christos             } else {
   2573      1.21  christos                 print $quotify->($target{$_}), ",\n"
   2574      1.21  christos             }
   2575      1.21  christos         }
   2576      1.21  christos     }
   2577      1.21  christos     if ($dump || $envvars) {
   2578      1.21  christos         print "\nRecorded environment:\n\n";
   2579      1.21  christos         foreach (sort keys %{$config{perlenv}}) {
   2580      1.21  christos             print '    ',$_,' = ',($config{perlenv}->{$_} || ''),"\n";
   2581      1.21  christos         }
   2582      1.21  christos     }
   2583      1.21  christos     if ($dump || $makevars) {
   2584      1.21  christos         print "\nMakevars:\n\n";
   2585      1.21  christos         foreach my $var (@makevars) {
   2586      1.21  christos             my $prefix = '';
   2587      1.21  christos             $prefix = $config{CROSS_COMPILE}
   2588      1.21  christos                 if grep { $var eq $_ } @user_crossable;
   2589      1.21  christos             $prefix //= '';
   2590      1.21  christos             print '    ',$var,' ' x (16 - length $var),'= ',
   2591      1.21  christos                 (ref $config{$var} eq 'ARRAY'
   2592      1.21  christos                  ? join(' ', @{$config{$var}})
   2593      1.21  christos                  : $prefix.$config{$var}),
   2594      1.21  christos                 "\n"
   2595      1.21  christos                 if defined $config{$var};
   2596      1.21  christos         }
   2597      1.21  christos 
   2598      1.21  christos         my @buildfile = ($config{builddir}, $config{build_file});
   2599      1.21  christos         unshift @buildfile, $here
   2600      1.21  christos             unless file_name_is_absolute($config{builddir});
   2601      1.21  christos         my $buildfile = canonpath(catdir(@buildfile));
   2602      1.21  christos         print <<"_____";
   2603      1.21  christos 
   2604      1.21  christos NOTE: These variables only represent the configuration view.  The build file
   2605      1.21  christos template may have processed these variables further, please have a look at the
   2606      1.21  christos build file for more exact data:
   2607      1.21  christos     $buildfile
   2608      1.21  christos _____
   2609      1.21  christos     }
   2610      1.21  christos     if ($dump || $buildparams) {
   2611      1.21  christos         my @buildfile = ($config{builddir}, $config{build_file});
   2612      1.21  christos         unshift @buildfile, $here
   2613      1.21  christos             unless file_name_is_absolute($config{builddir});
   2614      1.21  christos         print "\nbuild file:\n\n";
   2615      1.21  christos         print "    ", canonpath(catfile(@buildfile)),"\n";
   2616      1.21  christos 
   2617      1.21  christos         print "\nbuild file templates:\n\n";
   2618      1.21  christos         foreach (@{$config{build_file_templates}}) {
   2619      1.21  christos             my @tmpl = ($_);
   2620      1.21  christos             unshift @tmpl, $here
   2621      1.21  christos                 unless file_name_is_absolute($config{sourcedir});
   2622      1.21  christos             print '    ',canonpath(catfile(@tmpl)),"\n";
   2623      1.21  christos         }
   2624      1.21  christos     }
   2625      1.21  christos     if ($reconf) {
   2626      1.21  christos         if ($verbose) {
   2627      1.21  christos             print 'Reconfiguring with: ', join(' ',@{$config{perlargv}}), "\n";
   2628      1.24  christos             foreach (sort keys %{$config{perlenv}}) {
   2629      1.24  christos                 print '    ',$_,' = ',($config{perlenv}->{$_} || ""),"\n";
   2630      1.24  christos             }
   2631      1.21  christos         }
   2632      1.21  christos 
   2633      1.21  christos         chdir $here;
   2634      1.21  christos         exec $^X,catfile($config{sourcedir}, 'Configure'),'reconf';
   2635      1.21  christos     }
   2636      1.21  christos }
   2637      1.21  christos 
   2638      1.21  christos 1;
   2639      1.21  christos 
   2640      1.21  christos __END__
   2641      1.21  christos 
   2642      1.21  christos =head1 NAME
   2643      1.21  christos 
   2644      1.21  christos configdata.pm - configuration data for OpenSSL builds
   2645      1.21  christos 
   2646      1.21  christos =head1 SYNOPSIS
   2647      1.21  christos 
   2648      1.21  christos Interactive:
   2649      1.21  christos 
   2650      1.21  christos   perl configdata.pm [options]
   2651      1.21  christos 
   2652      1.21  christos As data bank module:
   2653      1.21  christos 
   2654      1.21  christos   use configdata;
   2655      1.21  christos 
   2656      1.21  christos =head1 DESCRIPTION
   2657      1.21  christos 
   2658      1.21  christos This module can be used in two modes, interactively and as a module containing
   2659      1.21  christos all the data recorded by OpenSSL's Configure script.
   2660      1.21  christos 
   2661      1.21  christos When used interactively, simply run it as any perl script, with at least one
   2662      1.21  christos option, and you will get the information you ask for.  See L</OPTIONS> below.
   2663      1.21  christos 
   2664      1.21  christos When loaded as a module, you get a few databanks with useful information to
   2665      1.21  christos perform build related tasks.  The databanks are:
   2666      1.21  christos 
   2667      1.21  christos     %config             Configured things.
   2668      1.21  christos     %target             The OpenSSL config target with all inheritances
   2669      1.21  christos                         resolved.
   2670      1.21  christos     %disabled           The features that are disabled.
   2671      1.21  christos     @disablables        The list of features that can be disabled.
   2672      1.21  christos     %withargs           All data given through --with-THING options.
   2673      1.21  christos     %unified_info       All information that was computed from the build.info
   2674      1.21  christos                         files.
   2675      1.21  christos 
   2676      1.21  christos =head1 OPTIONS
   2677      1.21  christos 
   2678      1.21  christos =over 4
   2679      1.21  christos 
   2680      1.21  christos =item B<--help>
   2681      1.21  christos 
   2682      1.21  christos Print a brief help message and exit.
   2683      1.21  christos 
   2684      1.21  christos =item B<--man>
   2685      1.21  christos 
   2686      1.21  christos Print the manual page and exit.
   2687      1.21  christos 
   2688      1.21  christos =item B<--dump> | B<-d>
   2689      1.21  christos 
   2690      1.21  christos Print all relevant configuration data.  This is equivalent to B<--command-line>
   2691      1.21  christos B<--options> B<--target> B<--environment> B<--make-variables>
   2692      1.21  christos B<--build-parameters>.
   2693      1.21  christos 
   2694      1.21  christos =item B<--command-line> | B<-c>
   2695      1.21  christos 
   2696      1.21  christos Print the current configuration command line.
   2697      1.21  christos 
   2698      1.21  christos =item B<--options> | B<-o>
   2699      1.21  christos 
   2700      1.21  christos Print the features, both enabled and disabled, and display defined macro and
   2701      1.21  christos skipped directories where applicable.
   2702      1.21  christos 
   2703      1.21  christos =item B<--target> | B<-t>
   2704      1.21  christos 
   2705      1.21  christos Print the config attributes for this config target.
   2706      1.21  christos 
   2707      1.21  christos =item B<--environment> | B<-e>
   2708      1.21  christos 
   2709      1.21  christos Print the environment variables and their values at the time of configuration.
   2710      1.21  christos 
   2711      1.21  christos =item B<--make-variables> | B<-m>
   2712      1.21  christos 
   2713      1.21  christos Print the main make variables generated in the current configuration
   2714      1.21  christos 
   2715      1.21  christos =item B<--build-parameters> | B<-b>
   2716      1.21  christos 
   2717      1.21  christos Print the build parameters, i.e. build file and build file templates.
   2718      1.21  christos 
   2719      1.21  christos =item B<--reconfigure> | B<--reconf> | B<-r>
   2720      1.21  christos 
   2721      1.21  christos Redo the configuration.
   2722      1.21  christos 
   2723      1.21  christos =item B<--verbose> | B<-v>
   2724      1.21  christos 
   2725      1.21  christos Verbose output.
   2726      1.18  christos 
   2727      1.21  christos =back
   2728      1.18  christos 
   2729      1.21  christos =cut
   2730      1.21  christos 
   2731      1.21  christos EOF
   2732      1.21  christos close(OUT);
   2733      1.21  christos if ($builder_platform eq 'unix') {
   2734      1.21  christos     my $mode = (0755 & ~umask);
   2735      1.21  christos     chmod $mode, 'configdata.pm'
   2736      1.21  christos         or warn sprintf("WARNING: Couldn't change mode for 'configdata.pm' to 0%03o: %s\n",$mode,$!);
   2737      1.21  christos }
   2738      1.18  christos 
   2739      1.18  christos my %builders = (
   2740      1.18  christos     unified => sub {
   2741      1.21  christos         print 'Creating ',$target{build_file},"\n";
   2742      1.18  christos         run_dofile(catfile($blddir, $target{build_file}),
   2743      1.18  christos                    @{$config{build_file_templates}});
   2744      1.18  christos     },
   2745      1.18  christos     );
   2746      1.18  christos 
   2747      1.18  christos $builders{$builder}->($builder_platform, @builder_opts);
   2748      1.18  christos 
   2749      1.20  christos $SIG{__DIE__} = $orig_death_handler;
   2750      1.20  christos 
   2751      1.18  christos print <<"EOF" if ($disabled{threads} eq "unavailable");
   2752       1.1  christos 
   2753       1.1  christos The library could not be configured for supporting multi-threaded
   2754       1.1  christos applications as the compiler options required on this system are not known.
   2755       1.1  christos See file INSTALL for details if you need multi-threading.
   2756       1.1  christos EOF
   2757       1.1  christos 
   2758      1.18  christos print <<"EOF" if ($no_shared_warn);
   2759       1.1  christos 
   2760      1.18  christos The options 'shared', 'pic' and 'dynamic-engine' aren't supported on this
   2761      1.18  christos platform, so we will pretend you gave the option 'no-pic', which also disables
   2762      1.18  christos 'shared' and 'dynamic-engine'.  If you know how to implement shared libraries
   2763      1.18  christos or position independent code, please let us know (but please first make sure
   2764      1.18  christos you have tried with a current version of OpenSSL).
   2765      1.14  christos EOF
   2766      1.14  christos 
   2767      1.21  christos print <<"EOF";
   2768      1.21  christos 
   2769      1.21  christos **********************************************************************
   2770      1.21  christos ***                                                                ***
   2771      1.22  christos ***   OpenSSL has been successfully configured                     ***
   2772      1.22  christos ***                                                                ***
   2773      1.22  christos ***   If you encounter a problem while building, please open an    ***
   2774      1.22  christos ***   issue on GitHub <https://github.com/openssl/openssl/issues>  ***
   2775      1.22  christos ***   and include the output from the following command:           ***
   2776      1.22  christos ***                                                                ***
   2777      1.22  christos ***       perl configdata.pm --dump                                ***
   2778      1.21  christos ***                                                                ***
   2779      1.22  christos ***   (If you are new to OpenSSL, you might want to consult the    ***
   2780      1.22  christos ***   'Troubleshooting' section in the INSTALL file first)         ***
   2781      1.21  christos ***                                                                ***
   2782      1.21  christos **********************************************************************
   2783      1.21  christos EOF
   2784      1.21  christos 
   2785       1.1  christos exit(0);
   2786       1.1  christos 
   2787      1.18  christos ######################################################################
   2788      1.18  christos #
   2789      1.18  christos # Helpers and utility functions
   2790      1.18  christos #
   2791      1.18  christos 
   2792      1.20  christos # Death handler, to print a helpful message in case of failure #######
   2793      1.20  christos #
   2794      1.20  christos sub death_handler {
   2795      1.20  christos     die @_ if $^S;              # To prevent the added message in eval blocks
   2796      1.20  christos     my $build_file = $target{build_file} // "build file";
   2797      1.20  christos     my @message = ( <<"_____", @_ );
   2798      1.20  christos 
   2799      1.20  christos Failure!  $build_file wasn't produced.
   2800      1.20  christos Please read INSTALL and associated NOTES files.  You may also have to look over
   2801      1.20  christos your available compiler tool chain or change your configuration.
   2802      1.20  christos 
   2803      1.20  christos _____
   2804      1.20  christos 
   2805      1.20  christos     # Dying is terminal, so it's ok to reset the signal handler here.
   2806      1.20  christos     $SIG{__DIE__} = $orig_death_handler;
   2807      1.20  christos     die @message;
   2808      1.20  christos }
   2809      1.20  christos 
   2810      1.18  christos # Configuration file reading #########################################
   2811      1.18  christos 
   2812      1.18  christos # Note: All of the helper functions are for lazy evaluation.  They all
   2813      1.18  christos # return a CODE ref, which will return the intended value when evaluated.
   2814      1.18  christos # Thus, whenever there's mention of a returned value, it's about that
   2815      1.18  christos # intended value.
   2816      1.18  christos 
   2817      1.18  christos # Helper function to implement conditional inheritance depending on the
   2818      1.18  christos # value of $disabled{asm}.  Used in inherit_from values as follows:
   2819      1.18  christos #
   2820      1.18  christos #      inherit_from => [ "template", asm("asm_tmpl") ]
   2821      1.18  christos #
   2822      1.18  christos sub asm {
   2823      1.18  christos     my @x = @_;
   2824      1.18  christos     sub {
   2825      1.24  christos         $disabled{asm} ? () : @x;
   2826      1.18  christos     }
   2827      1.18  christos }
   2828      1.18  christos 
   2829      1.18  christos # Helper function to implement conditional value variants, with a default
   2830      1.18  christos # plus additional values based on the value of $config{build_type}.
   2831      1.18  christos # Arguments are given in hash table form:
   2832      1.18  christos #
   2833      1.18  christos #       picker(default => "Basic string: ",
   2834      1.18  christos #              debug   => "debug",
   2835      1.18  christos #              release => "release")
   2836      1.18  christos #
   2837      1.18  christos # When configuring with --debug, the resulting string will be
   2838      1.18  christos # "Basic string: debug", and when not, it will be "Basic string: release"
   2839      1.18  christos #
   2840      1.18  christos # This can be used to create variants of sets of flags according to the
   2841      1.18  christos # build type:
   2842      1.18  christos #
   2843      1.18  christos #       cflags => picker(default => "-Wall",
   2844      1.18  christos #                        debug   => "-g -O0",
   2845      1.18  christos #                        release => "-O3")
   2846      1.18  christos #
   2847      1.18  christos sub picker {
   2848      1.18  christos     my %opts = @_;
   2849      1.18  christos     return sub { add($opts{default} || (),
   2850      1.18  christos                      $opts{$config{build_type}} || ())->(); }
   2851      1.18  christos }
   2852      1.18  christos 
   2853      1.18  christos # Helper function to combine several values of different types into one.
   2854      1.18  christos # This is useful if you want to combine a string with the result of a
   2855      1.18  christos # lazy function, such as:
   2856      1.18  christos #
   2857      1.18  christos #       cflags => combine("-Wall", sub { $disabled{zlib} ? () : "-DZLIB" })
   2858      1.18  christos #
   2859      1.18  christos sub combine {
   2860      1.18  christos     my @stuff = @_;
   2861      1.18  christos     return sub { add(@stuff)->(); }
   2862      1.18  christos }
   2863      1.18  christos 
   2864      1.18  christos # Helper function to implement conditional values depending on the value
   2865      1.18  christos # of $disabled{threads}.  Can be used as follows:
   2866      1.18  christos #
   2867      1.18  christos #       cflags => combine("-Wall", threads("-pthread"))
   2868      1.18  christos #
   2869      1.18  christos sub threads {
   2870      1.18  christos     my @flags = @_;
   2871      1.18  christos     return sub { add($disabled{threads} ? () : @flags)->(); }
   2872      1.18  christos }
   2873      1.18  christos 
   2874      1.21  christos sub shared {
   2875      1.21  christos     my @flags = @_;
   2876      1.21  christos     return sub { add($disabled{shared} ? () : @flags)->(); }
   2877      1.21  christos }
   2878      1.18  christos 
   2879      1.18  christos our $add_called = 0;
   2880      1.18  christos # Helper function to implement adding values to already existing configuration
   2881      1.18  christos # values.  It handles elements that are ARRAYs, CODEs and scalars
   2882      1.18  christos sub _add {
   2883      1.18  christos     my $separator = shift;
   2884      1.18  christos 
   2885      1.18  christos     # If there's any ARRAY in the collection of values OR the separator
   2886      1.18  christos     # is undef, we will return an ARRAY of combined values, otherwise a
   2887      1.18  christos     # string of joined values with $separator as the separator.
   2888      1.18  christos     my $found_array = !defined($separator);
   2889      1.18  christos 
   2890      1.18  christos     my @values =
   2891      1.24  christos         map {
   2892      1.24  christos             my $res = $_;
   2893      1.24  christos             while (ref($res) eq "CODE") {
   2894      1.24  christos                 $res = $res->();
   2895      1.24  christos             }
   2896      1.24  christos             if (defined($res)) {
   2897      1.24  christos                 if (ref($res) eq "ARRAY") {
   2898      1.24  christos                     $found_array = 1;
   2899      1.24  christos                     @$res;
   2900      1.24  christos                 } else {
   2901      1.24  christos                     $res;
   2902      1.24  christos                 }
   2903      1.24  christos             } else {
   2904      1.24  christos                 ();
   2905      1.24  christos             }
   2906      1.18  christos     } (@_);
   2907      1.18  christos 
   2908      1.18  christos     $add_called = 1;
   2909      1.18  christos 
   2910      1.18  christos     if ($found_array) {
   2911      1.24  christos         [ @values ];
   2912      1.18  christos     } else {
   2913      1.24  christos         join($separator, grep { defined($_) && $_ ne "" } @values);
   2914      1.18  christos     }
   2915      1.18  christos }
   2916      1.18  christos sub add_before {
   2917      1.18  christos     my $separator = " ";
   2918      1.18  christos     if (ref($_[$#_]) eq "HASH") {
   2919      1.18  christos         my $opts = pop;
   2920      1.18  christos         $separator = $opts->{separator};
   2921      1.18  christos     }
   2922      1.18  christos     my @x = @_;
   2923      1.18  christos     sub { _add($separator, @x, @_) };
   2924      1.18  christos }
   2925      1.18  christos sub add {
   2926      1.18  christos     my $separator = " ";
   2927      1.18  christos     if (ref($_[$#_]) eq "HASH") {
   2928      1.18  christos         my $opts = pop;
   2929      1.18  christos         $separator = $opts->{separator};
   2930      1.18  christos     }
   2931      1.18  christos     my @x = @_;
   2932      1.18  christos     sub { _add($separator, @_, @x) };
   2933      1.18  christos }
   2934      1.18  christos 
   2935      1.21  christos sub read_eval_file {
   2936      1.21  christos     my $fname = shift;
   2937      1.21  christos     my $content;
   2938      1.21  christos     my @result;
   2939      1.21  christos 
   2940      1.21  christos     open F, "< $fname" or die "Can't open '$fname': $!\n";
   2941      1.21  christos     {
   2942      1.21  christos         undef local $/;
   2943      1.21  christos         $content = <F>;
   2944      1.21  christos     }
   2945      1.21  christos     close F;
   2946      1.21  christos     {
   2947      1.21  christos         local $@;
   2948      1.21  christos 
   2949      1.21  christos         @result = ( eval $content );
   2950      1.21  christos         warn $@ if $@;
   2951      1.21  christos     }
   2952      1.21  christos     return wantarray ? @result : $result[0];
   2953      1.21  christos }
   2954      1.21  christos 
   2955      1.18  christos # configuration reader, evaluates the input file as a perl script and expects
   2956      1.18  christos # it to fill %targets with target configurations.  Those are then added to
   2957      1.18  christos # %table.
   2958      1.18  christos sub read_config {
   2959      1.18  christos     my $fname = shift;
   2960      1.21  christos     my %targets;
   2961      1.21  christos 
   2962      1.18  christos     {
   2963      1.24  christos         # Protect certain tables from tampering
   2964      1.24  christos         local %table = ();
   2965      1.18  christos 
   2966      1.24  christos         %targets = read_eval_file($fname);
   2967      1.18  christos     }
   2968      1.19  christos     my %preexisting = ();
   2969      1.19  christos     foreach (sort keys %targets) {
   2970      1.19  christos         $preexisting{$_} = 1 if $table{$_};
   2971      1.19  christos     }
   2972      1.19  christos     die <<"EOF",
   2973      1.19  christos The following config targets from $fname
   2974      1.19  christos shadow pre-existing config targets with the same name:
   2975      1.19  christos EOF
   2976      1.19  christos         map { "  $_\n" } sort keys %preexisting
   2977      1.19  christos         if %preexisting;
   2978      1.19  christos 
   2979      1.18  christos 
   2980      1.18  christos     # For each target, check that it's configured with a hash table.
   2981      1.18  christos     foreach (keys %targets) {
   2982      1.24  christos         if (ref($targets{$_}) ne "HASH") {
   2983      1.24  christos             if (ref($targets{$_}) eq "") {
   2984      1.24  christos                 warn "Deprecated target configuration for $_, ignoring...\n";
   2985      1.24  christos             } else {
   2986      1.24  christos                 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
   2987      1.24  christos             }
   2988      1.24  christos             delete $targets{$_};
   2989      1.24  christos         } else {
   2990      1.18  christos             $targets{$_}->{_conf_fname_int} = add([ $fname ]);
   2991      1.18  christos         }
   2992      1.18  christos     }
   2993      1.18  christos 
   2994      1.18  christos     %table = (%table, %targets);
   2995      1.18  christos 
   2996      1.18  christos }
   2997      1.18  christos 
   2998      1.18  christos # configuration resolver.  Will only resolve all the lazy evaluation
   2999      1.18  christos # codeblocks for the chosen target and all those it inherits from,
   3000      1.18  christos # recursively
   3001      1.18  christos sub resolve_config {
   3002      1.18  christos     my $target = shift;
   3003      1.18  christos     my @breadcrumbs = @_;
   3004      1.18  christos 
   3005      1.18  christos #    my $extra_checks = defined($ENV{CONFIGURE_EXTRA_CHECKS});
   3006      1.18  christos 
   3007      1.18  christos     if (grep { $_ eq $target } @breadcrumbs) {
   3008      1.24  christos         die "inherit_from loop!  target backtrace:\n  "
   3009      1.24  christos             ,$target,"\n  ",join("\n  ", @breadcrumbs),"\n";
   3010      1.18  christos     }
   3011      1.18  christos 
   3012      1.18  christos     if (!defined($table{$target})) {
   3013      1.24  christos         warn "Warning! target $target doesn't exist!\n";
   3014      1.24  christos         return ();
   3015      1.18  christos     }
   3016      1.18  christos     # Recurse through all inheritances.  They will be resolved on the
   3017      1.18  christos     # fly, so when this operation is done, they will all just be a
   3018      1.18  christos     # bunch of attributes with string values.
   3019      1.18  christos     # What we get here, though, are keys with references to lists of
   3020      1.18  christos     # the combined values of them all.  We will deal with lists after
   3021      1.18  christos     # this stage is done.
   3022      1.18  christos     my %combined_inheritance = ();
   3023      1.18  christos     if ($table{$target}->{inherit_from}) {
   3024      1.24  christos         my @inherit_from =
   3025      1.24  christos             map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
   3026      1.24  christos         foreach (@inherit_from) {
   3027      1.24  christos             my %inherited_config = resolve_config($_, $target, @breadcrumbs);
   3028      1.24  christos 
   3029      1.24  christos             # 'template' is a marker that's considered private to
   3030      1.24  christos             # the config that had it.
   3031      1.24  christos             delete $inherited_config{template};
   3032      1.24  christos 
   3033      1.24  christos             foreach (keys %inherited_config) {
   3034      1.24  christos                 if (!$combined_inheritance{$_}) {
   3035      1.24  christos                     $combined_inheritance{$_} = [];
   3036      1.24  christos                 }
   3037      1.24  christos                 push @{$combined_inheritance{$_}}, $inherited_config{$_};
   3038      1.24  christos             }
   3039      1.24  christos         }
   3040      1.18  christos     }
   3041      1.18  christos 
   3042      1.18  christos     # We won't need inherit_from in this target any more, since we've
   3043      1.18  christos     # resolved all the inheritances that lead to this
   3044      1.18  christos     delete $table{$target}->{inherit_from};
   3045      1.18  christos 
   3046      1.18  christos     # Now is the time to deal with those lists.  Here's the place to
   3047      1.18  christos     # decide what shall be done with those lists, all based on the
   3048      1.18  christos     # values of the target we're currently dealing with.
   3049      1.18  christos     # - If a value is a coderef, it will be executed with the list of
   3050      1.18  christos     #   inherited values as arguments.
   3051      1.18  christos     # - If the corresponding key doesn't have a value at all or is the
   3052      1.18  christos     #   empty string, the inherited value list will be run through the
   3053      1.18  christos     #   default combiner (below), and the result becomes this target's
   3054      1.18  christos     #   value.
   3055      1.18  christos     # - Otherwise, this target's value is assumed to be a string that
   3056      1.18  christos     #   will simply override the inherited list of values.
   3057      1.18  christos     my $default_combiner = add();
   3058      1.18  christos 
   3059      1.18  christos     my %all_keys =
   3060      1.24  christos         map { $_ => 1 } (keys %combined_inheritance,
   3061      1.24  christos                          keys %{$table{$target}});
   3062      1.18  christos 
   3063      1.18  christos     sub process_values {
   3064      1.24  christos         my $object    = shift;
   3065      1.24  christos         my $inherited = shift;  # Always a [ list ]
   3066      1.24  christos         my $target    = shift;
   3067      1.24  christos         my $entry     = shift;
   3068      1.18  christos 
   3069      1.18  christos         $add_called = 0;
   3070      1.18  christos 
   3071      1.18  christos         while(ref($object) eq "CODE") {
   3072      1.18  christos             $object = $object->(@$inherited);
   3073      1.18  christos         }
   3074      1.18  christos         if (!defined($object)) {
   3075      1.18  christos             return ();
   3076      1.18  christos         }
   3077      1.18  christos         elsif (ref($object) eq "ARRAY") {
   3078      1.18  christos             local $add_called;  # To make sure recursive calls don't affect it
   3079      1.18  christos             return [ map { process_values($_, $inherited, $target, $entry) }
   3080      1.18  christos                      @$object ];
   3081      1.18  christos         } elsif (ref($object) eq "") {
   3082      1.18  christos             return $object;
   3083      1.18  christos         } else {
   3084      1.18  christos             die "cannot handle reference type ",ref($object)
   3085      1.18  christos                 ," found in target ",$target," -> ",$entry,"\n";
   3086      1.18  christos         }
   3087      1.18  christos     }
   3088      1.18  christos 
   3089      1.18  christos     foreach (sort keys %all_keys) {
   3090      1.18  christos         my $previous = $combined_inheritance{$_};
   3091      1.18  christos 
   3092      1.24  christos         # Current target doesn't have a value for the current key?
   3093      1.24  christos         # Assign it the default combiner, the rest of this loop body
   3094      1.24  christos         # will handle it just like any other coderef.
   3095      1.24  christos         if (!exists $table{$target}->{$_}) {
   3096      1.24  christos             $table{$target}->{$_} = $default_combiner;
   3097      1.24  christos         }
   3098      1.24  christos 
   3099      1.24  christos         $table{$target}->{$_} = process_values($table{$target}->{$_},
   3100      1.24  christos                                                $combined_inheritance{$_},
   3101      1.24  christos                                                $target, $_);
   3102      1.18  christos         unless(defined($table{$target}->{$_})) {
   3103      1.18  christos             delete $table{$target}->{$_};
   3104      1.18  christos         }
   3105      1.18  christos #        if ($extra_checks &&
   3106      1.18  christos #            $previous && !($add_called ||  $previous ~~ $table{$target}->{$_})) {
   3107      1.18  christos #            warn "$_ got replaced in $target\n";
   3108      1.18  christos #        }
   3109      1.18  christos     }
   3110      1.18  christos 
   3111      1.18  christos     # Finally done, return the result.
   3112      1.18  christos     return %{$table{$target}};
   3113      1.18  christos }
   3114      1.18  christos 
   3115       1.1  christos sub usage
   3116      1.24  christos         {
   3117      1.24  christos         print STDERR $usage;
   3118      1.24  christos         print STDERR "\npick os/compiler from:\n";
   3119      1.24  christos         my $j=0;
   3120      1.24  christos         my $i;
   3121       1.1  christos         my $k=0;
   3122      1.24  christos         foreach $i (sort keys %table)
   3123      1.24  christos                 {
   3124      1.24  christos                 next if $table{$i}->{template};
   3125      1.24  christos                 next if $i =~ /^debug/;
   3126      1.24  christos                 $k += length($i) + 1;
   3127      1.24  christos                 if ($k > 78)
   3128      1.24  christos                         {
   3129      1.24  christos                         print STDERR "\n";
   3130      1.24  christos                         $k=length($i);
   3131      1.24  christos                         }
   3132      1.24  christos                 print STDERR $i . " ";
   3133      1.24  christos                 }
   3134      1.24  christos         foreach $i (sort keys %table)
   3135      1.24  christos                 {
   3136      1.24  christos                 next if $table{$i}->{template};
   3137      1.24  christos                 next if $i !~ /^debug/;
   3138      1.24  christos                 $k += length($i) + 1;
   3139      1.24  christos                 if ($k > 78)
   3140      1.24  christos                         {
   3141      1.24  christos                         print STDERR "\n";
   3142      1.24  christos                         $k=length($i);
   3143      1.24  christos                         }
   3144      1.24  christos                 print STDERR $i . " ";
   3145      1.24  christos                 }
   3146      1.24  christos         print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
   3147      1.24  christos         exit(1);
   3148      1.24  christos         }
   3149       1.1  christos 
   3150      1.18  christos sub run_dofile
   3151      1.18  christos {
   3152      1.18  christos     my $out = shift;
   3153      1.18  christos     my @templates = @_;
   3154      1.18  christos 
   3155      1.18  christos     unlink $out || warn "Can't remove $out, $!"
   3156      1.18  christos         if -f $out;
   3157      1.18  christos     foreach (@templates) {
   3158      1.18  christos         die "Can't open $_, $!" unless -f $_;
   3159      1.18  christos     }
   3160      1.21  christos     my $perlcmd = (quotify("maybeshell", $config{PERL}))[0];
   3161      1.18  christos     my $cmd = "$perlcmd \"-I.\" \"-Mconfigdata\" \"$dofile\" -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
   3162      1.18  christos     #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
   3163      1.18  christos     system($cmd);
   3164      1.18  christos     exit 1 if $? != 0;
   3165      1.18  christos     rename("$out.new", $out) || die "Can't rename $out.new, $!";
   3166      1.18  christos }
   3167      1.18  christos 
   3168      1.21  christos sub compiler_predefined {
   3169      1.21  christos     state %predefined;
   3170      1.21  christos     my $cc = shift;
   3171      1.21  christos 
   3172      1.21  christos     return () if $^O eq 'VMS';
   3173      1.21  christos 
   3174      1.21  christos     die 'compiler_predefined called without a compiler command'
   3175      1.21  christos         unless $cc;
   3176      1.21  christos 
   3177      1.21  christos     if (! $predefined{$cc}) {
   3178      1.21  christos 
   3179      1.21  christos         $predefined{$cc} = {};
   3180      1.21  christos 
   3181      1.21  christos         # collect compiler pre-defines from gcc or gcc-alike...
   3182      1.21  christos         open(PIPE, "$cc -dM -E -x c /dev/null 2>&1 |");
   3183      1.21  christos         while (my $l = <PIPE>) {
   3184      1.21  christos             $l =~ m/^#define\s+(\w+(?:\(\w+\))?)(?:\s+(.+))?/ or last;
   3185      1.21  christos             $predefined{$cc}->{$1} = $2 // '';
   3186      1.21  christos         }
   3187      1.21  christos         close(PIPE);
   3188      1.21  christos     }
   3189      1.21  christos 
   3190      1.21  christos     return %{$predefined{$cc}};
   3191      1.21  christos }
   3192      1.21  christos 
   3193       1.1  christos sub which
   3194      1.18  christos {
   3195      1.18  christos     my ($name)=@_;
   3196       1.1  christos 
   3197      1.18  christos     if (eval { require IPC::Cmd; 1; }) {
   3198      1.18  christos         IPC::Cmd->import();
   3199      1.18  christos         return scalar IPC::Cmd::can_run($name);
   3200      1.18  christos     } else {
   3201      1.18  christos         # if there is $directories component in splitpath,
   3202      1.18  christos         # then it's not something to test with $PATH...
   3203      1.18  christos         return $name if (File::Spec->splitpath($name))[1];
   3204      1.18  christos 
   3205      1.18  christos         foreach (File::Spec->path()) {
   3206      1.18  christos             my $fullpath = catfile($_, "$name$target{exe_extension}");
   3207      1.18  christos             if (-f $fullpath and -x $fullpath) {
   3208      1.18  christos                 return $fullpath;
   3209      1.18  christos             }
   3210      1.18  christos         }
   3211      1.18  christos     }
   3212      1.18  christos }
   3213       1.1  christos 
   3214      1.21  christos sub env
   3215      1.21  christos {
   3216      1.21  christos     my $name = shift;
   3217      1.21  christos     my %opts = @_;
   3218      1.21  christos 
   3219      1.21  christos     unless ($opts{cacheonly}) {
   3220      1.21  christos         # Note that if $ENV{$name} doesn't exist or is undefined,
   3221      1.21  christos         # $config{perlenv}->{$name} will be created with the value
   3222      1.21  christos         # undef.  This is intentional.
   3223      1.21  christos 
   3224      1.21  christos         $config{perlenv}->{$name} = $ENV{$name}
   3225      1.21  christos             if ! exists $config{perlenv}->{$name};
   3226      1.21  christos     }
   3227      1.21  christos     return $config{perlenv}->{$name};
   3228      1.21  christos }
   3229      1.21  christos 
   3230      1.18  christos # Configuration printer ##############################################
   3231       1.1  christos 
   3232       1.1  christos sub print_table_entry
   3233      1.18  christos {
   3234      1.21  christos     local $now_printing = shift;
   3235      1.21  christos     my %target = resolve_config($now_printing);
   3236      1.18  christos     my $type = shift;
   3237      1.18  christos 
   3238      1.18  christos     # Don't print the templates
   3239      1.18  christos     return if $target{template};
   3240      1.18  christos 
   3241      1.18  christos     my @sequence = (
   3242      1.24  christos         "sys_id",
   3243      1.24  christos         "cpp",
   3244      1.24  christos         "cppflags",
   3245      1.24  christos         "defines",
   3246      1.24  christos         "includes",
   3247      1.24  christos         "cc",
   3248      1.24  christos         "cflags",
   3249      1.24  christos         "unistd",
   3250      1.24  christos         "ld",
   3251      1.24  christos         "lflags",
   3252      1.24  christos         "loutflag",
   3253      1.24  christos         "ex_libs",
   3254      1.24  christos         "bn_ops",
   3255      1.24  christos         "apps_aux_src",
   3256      1.24  christos         "cpuid_asm_src",
   3257      1.24  christos         "uplink_aux_src",
   3258      1.24  christos         "bn_asm_src",
   3259      1.24  christos         "ec_asm_src",
   3260      1.24  christos         "des_asm_src",
   3261      1.24  christos         "aes_asm_src",
   3262      1.24  christos         "bf_asm_src",
   3263      1.24  christos         "md5_asm_src",
   3264      1.24  christos         "cast_asm_src",
   3265      1.24  christos         "sha1_asm_src",
   3266      1.24  christos         "rc4_asm_src",
   3267      1.24  christos         "rmd160_asm_src",
   3268      1.24  christos         "rc5_asm_src",
   3269      1.24  christos         "wp_asm_src",
   3270      1.24  christos         "cmll_asm_src",
   3271      1.24  christos         "modes_asm_src",
   3272      1.24  christos         "padlock_asm_src",
   3273      1.24  christos         "chacha_asm_src",
   3274      1.24  christos         "poly1035_asm_src",
   3275      1.24  christos         "thread_scheme",
   3276      1.24  christos         "perlasm_scheme",
   3277      1.24  christos         "dso_scheme",
   3278      1.24  christos         "shared_target",
   3279      1.24  christos         "shared_cflag",
   3280      1.24  christos         "shared_defines",
   3281      1.24  christos         "shared_ldflag",
   3282      1.24  christos         "shared_rcflag",
   3283      1.24  christos         "shared_extension",
   3284      1.24  christos         "dso_extension",
   3285      1.24  christos         "obj_extension",
   3286      1.24  christos         "exe_extension",
   3287      1.24  christos         "ranlib",
   3288      1.24  christos         "ar",
   3289      1.24  christos         "arflags",
   3290      1.24  christos         "aroutflag",
   3291      1.24  christos         "rc",
   3292      1.24  christos         "rcflags",
   3293      1.24  christos         "rcoutflag",
   3294      1.24  christos         "mt",
   3295      1.24  christos         "mtflags",
   3296      1.24  christos         "mtinflag",
   3297      1.24  christos         "mtoutflag",
   3298      1.24  christos         "multilib",
   3299      1.24  christos         "build_scheme",
   3300      1.24  christos         );
   3301       1.1  christos 
   3302      1.18  christos     if ($type eq "TABLE") {
   3303      1.24  christos         print "\n";
   3304      1.24  christos         print "*** $now_printing\n";
   3305      1.18  christos         foreach (@sequence) {
   3306      1.18  christos             if (ref($target{$_}) eq "ARRAY") {
   3307      1.18  christos                 printf "\$%-12s = %s\n", $_, join(" ", @{$target{$_}});
   3308      1.18  christos             } else {
   3309      1.18  christos                 printf "\$%-12s = %s\n", $_, $target{$_};
   3310      1.18  christos             }
   3311      1.18  christos         }
   3312      1.18  christos     } elsif ($type eq "HASH") {
   3313      1.24  christos         my $largest =
   3314      1.24  christos             length((sort { length($a) <=> length($b) } @sequence)[-1]);
   3315      1.24  christos         print "    '$now_printing' => {\n";
   3316      1.24  christos         foreach (@sequence) {
   3317      1.24  christos             if ($target{$_}) {
   3318      1.18  christos                 if (ref($target{$_}) eq "ARRAY") {
   3319      1.18  christos                     print "      '",$_,"'"," " x ($largest - length($_))," => [ ",join(", ", map { "'$_'" } @{$target{$_}})," ],\n";
   3320      1.18  christos                 } else {
   3321      1.18  christos                     print "      '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
   3322      1.18  christos                 }
   3323      1.24  christos             }
   3324      1.24  christos         }
   3325      1.24  christos         print "    },\n";
   3326      1.18  christos     }
   3327      1.18  christos }
   3328      1.18  christos 
   3329      1.18  christos # Utility routines ###################################################
   3330      1.18  christos 
   3331      1.18  christos # On VMS, if the given file is a logical name, File::Spec::Functions
   3332      1.18  christos # will consider it an absolute path.  There are cases when we want a
   3333      1.18  christos # purely syntactic check without checking the environment.
   3334      1.18  christos sub isabsolute {
   3335      1.18  christos     my $file = shift;
   3336      1.18  christos 
   3337      1.18  christos     # On non-platforms, we just use file_name_is_absolute().
   3338      1.18  christos     return file_name_is_absolute($file) unless $^O eq "VMS";
   3339      1.18  christos 
   3340      1.18  christos     # If the file spec includes a device or a directory spec,
   3341      1.18  christos     # file_name_is_absolute() is perfectly safe.
   3342      1.18  christos     return file_name_is_absolute($file) if $file =~ m|[:\[]|;
   3343      1.18  christos 
   3344      1.18  christos     # Here, we know the given file spec isn't absolute
   3345      1.18  christos     return 0;
   3346      1.18  christos }
   3347      1.18  christos 
   3348      1.18  christos # Makes a directory absolute and cleans out /../ in paths like foo/../bar
   3349      1.18  christos # On some platforms, this uses rel2abs(), while on others, realpath() is used.
   3350      1.18  christos # realpath() requires that at least all path components except the last is an
   3351      1.18  christos # existing directory.  On VMS, the last component of the directory spec must
   3352      1.18  christos # exist.
   3353      1.18  christos sub absolutedir {
   3354      1.18  christos     my $dir = shift;
   3355      1.18  christos 
   3356      1.18  christos     # realpath() is quite buggy on VMS.  It uses LIB$FID_TO_NAME, which
   3357      1.18  christos     # will return the volume name for the device, no matter what.  Also,
   3358      1.18  christos     # it will return an incorrect directory spec if the argument is a
   3359      1.18  christos     # directory that doesn't exist.
   3360      1.18  christos     if ($^O eq "VMS") {
   3361      1.18  christos         return rel2abs($dir);
   3362      1.18  christos     }
   3363      1.18  christos 
   3364      1.18  christos     # We use realpath() on Unix, since no other will properly clean out
   3365      1.18  christos     # a directory spec.
   3366      1.18  christos     use Cwd qw/realpath/;
   3367      1.18  christos 
   3368      1.18  christos     return realpath($dir);
   3369      1.18  christos }
   3370       1.1  christos 
   3371      1.18  christos sub quotify {
   3372      1.18  christos     my %processors = (
   3373      1.24  christos         perl    => sub { my $x = shift;
   3374      1.24  christos                          $x =~ s/([\\\$\@"])/\\$1/g;
   3375      1.24  christos                          return '"'.$x.'"'; },
   3376      1.24  christos         maybeshell => sub { my $x = shift;
   3377      1.24  christos                             (my $y = $x) =~ s/([\\\"])/\\$1/g;
   3378      1.24  christos                             if ($x ne $y || $x =~ m|\s|) {
   3379      1.24  christos                                 return '"'.$y.'"';
   3380      1.24  christos                             } else {
   3381      1.24  christos                                 return $x;
   3382      1.24  christos                             }
   3383      1.24  christos                         },
   3384      1.24  christos         );
   3385      1.18  christos     my $for = shift;
   3386      1.18  christos     my $processor =
   3387      1.24  christos         defined($processors{$for}) ? $processors{$for} : sub { shift; };
   3388       1.1  christos 
   3389      1.18  christos     return map { $processor->($_); } @_;
   3390      1.18  christos }
   3391       1.1  christos 
   3392      1.18  christos # collect_from_file($filename, $line_concat_cond_re, $line_concat)
   3393      1.18  christos # $filename is a file name to read from
   3394      1.18  christos # $line_concat_cond_re is a regexp detecting a line continuation ending
   3395      1.18  christos # $line_concat is a CODEref that takes care of concatenating two lines
   3396      1.18  christos sub collect_from_file {
   3397      1.18  christos     my $filename = shift;
   3398      1.18  christos     my $line_concat_cond_re = shift;
   3399      1.18  christos     my $line_concat = shift;
   3400      1.18  christos 
   3401      1.18  christos     open my $fh, $filename || die "unable to read $filename: $!\n";
   3402      1.18  christos     return sub {
   3403      1.18  christos         my $saved_line = "";
   3404      1.18  christos         $_ = "";
   3405      1.18  christos         while (<$fh>) {
   3406      1.18  christos             s|\R$||;
   3407      1.18  christos             if (defined $line_concat) {
   3408      1.18  christos                 $_ = $line_concat->($saved_line, $_);
   3409      1.18  christos                 $saved_line = "";
   3410      1.18  christos             }
   3411      1.18  christos             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
   3412      1.18  christos                 $saved_line = $_;
   3413      1.18  christos                 next;
   3414      1.18  christos             }
   3415      1.18  christos             return $_;
   3416      1.18  christos         }
   3417      1.18  christos         die "$filename ending with continuation line\n" if $_;
   3418      1.18  christos         close $fh;
   3419      1.18  christos         return undef;
   3420      1.18  christos     }
   3421      1.18  christos }
   3422      1.18  christos 
   3423      1.18  christos # collect_from_array($array, $line_concat_cond_re, $line_concat)
   3424      1.18  christos # $array is an ARRAYref of lines
   3425      1.18  christos # $line_concat_cond_re is a regexp detecting a line continuation ending
   3426      1.18  christos # $line_concat is a CODEref that takes care of concatenating two lines
   3427      1.18  christos sub collect_from_array {
   3428      1.18  christos     my $array = shift;
   3429      1.18  christos     my $line_concat_cond_re = shift;
   3430      1.18  christos     my $line_concat = shift;
   3431      1.18  christos     my @array = (@$array);
   3432      1.18  christos 
   3433      1.18  christos     return sub {
   3434      1.18  christos         my $saved_line = "";
   3435      1.18  christos         $_ = "";
   3436      1.18  christos         while (defined($_ = shift @array)) {
   3437      1.18  christos             s|\R$||;
   3438      1.18  christos             if (defined $line_concat) {
   3439      1.18  christos                 $_ = $line_concat->($saved_line, $_);
   3440      1.18  christos                 $saved_line = "";
   3441      1.18  christos             }
   3442      1.18  christos             if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
   3443      1.18  christos                 $saved_line = $_;
   3444      1.18  christos                 next;
   3445      1.18  christos             }
   3446      1.18  christos             return $_;
   3447      1.18  christos         }
   3448      1.18  christos         die "input text ending with continuation line\n" if $_;
   3449      1.18  christos         return undef;
   3450      1.18  christos     }
   3451      1.18  christos }
   3452      1.18  christos 
   3453      1.18  christos # collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
   3454      1.18  christos # $lineiterator is a CODEref that delivers one line at a time.
   3455      1.18  christos # All following arguments are regex/CODEref pairs, where the regexp detects a
   3456      1.18  christos # line and the CODEref does something with the result of the regexp.
   3457      1.18  christos sub collect_information {
   3458      1.18  christos     my $lineiterator = shift;
   3459      1.18  christos     my %collectors = @_;
   3460      1.18  christos 
   3461      1.18  christos     while(defined($_ = $lineiterator->())) {
   3462      1.18  christos         s|\R$||;
   3463      1.18  christos         my $found = 0;
   3464      1.18  christos         if ($collectors{"BEFORE"}) {
   3465      1.18  christos             $collectors{"BEFORE"}->($_);
   3466      1.18  christos         }
   3467      1.18  christos         foreach my $re (keys %collectors) {
   3468      1.18  christos             if ($re !~ /^OTHERWISE|BEFORE|AFTER$/ && /$re/) {
   3469      1.18  christos                 $collectors{$re}->($lineiterator);
   3470      1.18  christos                 $found = 1;
   3471      1.18  christos             };
   3472      1.18  christos         }
   3473      1.18  christos         if ($collectors{"OTHERWISE"}) {
   3474      1.18  christos             $collectors{"OTHERWISE"}->($lineiterator, $_)
   3475      1.18  christos                 unless $found || !defined $collectors{"OTHERWISE"};
   3476      1.18  christos         }
   3477      1.18  christos         if ($collectors{"AFTER"}) {
   3478      1.18  christos             $collectors{"AFTER"}->($_);
   3479      1.18  christos         }
   3480      1.18  christos     }
   3481      1.18  christos }
   3482       1.1  christos 
   3483      1.18  christos # tokenize($line)
   3484      1.18  christos # $line is a line of text to split up into tokens
   3485      1.18  christos # returns a list of tokens
   3486      1.18  christos #
   3487      1.18  christos # Tokens are divided by spaces.  If the tokens include spaces, they
   3488      1.18  christos # have to be quoted with single or double quotes.  Double quotes
   3489      1.18  christos # inside a double quoted token must be escaped.  Escaping is done
   3490      1.18  christos # with backslash.
   3491      1.18  christos # Basically, the same quoting rules apply for " and ' as in any
   3492      1.18  christos # Unix shell.
   3493      1.18  christos sub tokenize {
   3494      1.18  christos     my $line = my $debug_line = shift;
   3495      1.18  christos     my @result = ();
   3496      1.18  christos 
   3497      1.18  christos     while ($line =~ s|^\s+||, $line ne "") {
   3498      1.18  christos         my $token = "";
   3499      1.18  christos         while ($line ne "" && $line !~ m|^\s|) {
   3500      1.18  christos             if ($line =~ m/^"((?:[^"\\]+|\\.)*)"/) {
   3501      1.18  christos                 $token .= $1;
   3502      1.18  christos                 $line = $';
   3503      1.18  christos             } elsif ($line =~ m/^'([^']*)'/) {
   3504      1.18  christos                 $token .= $1;
   3505      1.18  christos                 $line = $';
   3506      1.18  christos             } elsif ($line =~ m/^(\S+)/) {
   3507      1.18  christos                 $token .= $1;
   3508      1.18  christos                 $line = $';
   3509      1.18  christos             }
   3510      1.18  christos         }
   3511      1.18  christos         push @result, $token;
   3512      1.18  christos     }
   3513      1.17       spz 
   3514      1.18  christos     if ($ENV{CONFIGURE_DEBUG_TOKENIZE}) {
   3515      1.24  christos         print STDERR "DEBUG[tokenize]: Parsed '$debug_line' into:\n";
   3516      1.24  christos         print STDERR "DEBUG[tokenize]: ('", join("', '", @result), "')\n";
   3517      1.18  christos     }
   3518      1.18  christos     return @result;
   3519      1.18  christos }
   3520