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