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