]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
Can't re-init after stop.
[thirdparty/openssl.git] / Configure
CommitLineData
de17db91 1#! /usr/bin/env perl
f4d8f037 2# -*- mode: perl; -*-
de17db91 3
a4ed5532
RE
4##
5## Configure -- OpenSSL source tree configuration script
008bef52 6## If editing this file, run this command before committing
d10dac11 7## make -f Makefile.in TABLE
a4ed5532 8##
1641cb60 9
448cb8b5 10require 5.000;
1641cb60 11use strict;
f09e7ca9 12use File::Basename;
85152ca4 13use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
dca99383 14use File::Path qw/mkpath/;
1641cb60 15
22a4f969 16# see INSTALL for instructions.
462ba4f6 17
7fccf05d 18my $usage="Usage: Configure [no-<cipher> ...] [enable-<cipher> ...] [experimental-<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";
462ba4f6 19
434c5dd3 20# Options:
e5f3045f 21#
f09e7ca9
RS
22# --config add the given configuration file, which will be read after
23# any "Configurations*" files that are found in the same
24# directory as this script.
d74dfafd
RL
25# --prefix prefix for the OpenSSL installation, which includes the
26# directories bin, lib, include, share/man, share/doc/openssl
27# This becomes the value of INSTALLTOP in Makefile
28# (Default: /usr/local)
29# --openssldir OpenSSL data area, such as openssl.cnf, certificates and keys.
30# If it's a relative directory, it will be added on the directory
31# given with --prefix.
32# This becomes the value of OPENSSLDIR in Makefile and in C.
33# (Default: PREFIX/ssl)
e5f3045f
BM
34#
35# --install_prefix Additional prefix for package builders (empty by
36# default). This needn't be set in advance, you can
37# just as well use "make INSTALL_PREFIX=/whatever install".
38#
cbfb39d1
AP
39# --cross-compile-prefix Add specified prefix to binutils components.
40#
98186eb4
VD
41# --api One of 0.9.8, 1.0.0 or 1.1.0. Do not compile support for
42# interfaces deprecated as of the specified OpenSSL version.
43#
5270e702
RL
44# no-hw-xxx do not compile support for specific crypto hardware.
45# Generic OpenSSL-style methods relating to this support
46# are always compiled but return NULL if the hardware
47# support isn't compiled.
48# no-hw do not compile support for any crypto hardware.
5f8d5c96
BM
49# [no-]threads [don't] try to create a library that is suitable for
50# multithreaded applications (default is "threads" if we
51# know how to do it)
fcc6a1c4 52# [no-]shared [don't] try to create shared libraries when supported.
a723979d 53# no-asm do not use assembler
bc2aadad
GT
54# no-dso do not compile in any native shared-library methods. This
55# will ensure that all methods just return NULL.
0423f812 56# no-egd do not compile support for the entropy-gathering daemon APIs
e452de9d
RL
57# [no-]zlib [don't] compile support for zlib compression.
58# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
59# library and will be loaded in run-time by the OpenSSL library.
7e159e01 60# sctp include SCTP support
22a4f969 61# 386 generate 80386 code
d0590fe6 62# no-sse2 disables IA-32 SSE2 code, above option implies no-sse2
79df9d62 63# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
fce0ba5f 64# -<xxx> +<xxx> compiler options are passed through
e41c8d6a
GT
65#
66# DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
67# provided to stack calls. Generates unique stack functions for
68# each possible stack type.
d02b48c6 69# BN_LLONG use the type 'long long' in crypto/bn/bn.h
d02b48c6 70# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
d0590fe6
AP
71# Following are set automatically by this script
72#
58964a49
RE
73# MD5_ASM use some extra md5 assember,
74# SHA1_ASM use some extra sha1 assember, must define L_ENDIAN for x86
75# RMD160_ASM use some extra ripemd160 assember,
d0590fe6
AP
76# SHA256_ASM sha256_block is implemented in assembler
77# SHA512_ASM sha512_block is implemented in assembler
78# AES_ASM ASE_[en|de]crypt is implemented in assembler
d02b48c6 79
363bd0b4 80# Minimum warning options... any contributions to OpenSSL should at least get
fce0ba5f 81# past these.
363bd0b4 82
c2e27310 83my $gcc_devteam_warn = "-Wall -pedantic -DPEDANTIC -Wno-long-long -Wsign-compare -Wmissing-prototypes -Wshadow -Wformat -Wtype-limits -Werror -DREF_CHECK -DDEBUG_UNUSED";
363bd0b4 84
190c8c60
BL
85# These are used in addition to $gcc_devteam_warn when the compiler is clang.
86# TODO(openssl-team): fix problems and investigate if (at least) the
480405e4 87# following warnings can also be enabled:
190c8c60 88# -Wswitch-enum, -Wunused-macros, -Wmissing-field-initializers,
df2ee0e2 89# -Wcast-align,
190c8c60
BL
90# -Wunreachable-code -Wunused-parameter -Wlanguage-extension-token
91# -Wextended-offsetof
df2ee0e2 92my $clang_devteam_warn = "-Wno-unused-parameter -Wno-missing-field-initializers -Wno-language-extension-token -Wno-extended-offsetof -Wconditional-uninitialized -Qunused-arguments -Wincompatible-pointer-types-discards-qualifiers -Wmissing-variable-declarations";
cb2bc054 93
2e31ef03
RS
94# Warn that "make depend" should be run?
95my $warn_make_depend = 0;
96
a1d3f3d1
RL
97# These are used in addition to $gcc_devteam_warn unless this is a mingw build.
98# This adds backtrace information to the memory leak info.
99my $memleak_devteam_backtrace = "-rdynamic -DCRYPTO_MDEBUG_BACKTRACE";
100
0c28f277
DSH
101my $strict_warnings = 0;
102
b7efa56a 103# As for $BSDthreads. Idea is to maintain "collective" set of flags,
fce0ba5f 104# which would cover all BSD flavors. -pthread applies to them all,
b7efa56a
AP
105# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
106# -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
107# which has to be accompanied by explicit -D_THREAD_SAFE and
108# sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
109# seems to be sufficient?
110my $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
d02b48c6 111
98186eb4
VD
112#
113# API compability name to version number mapping.
114#
115my $maxapi = "1.1.0"; # API for "no-deprecated" builds
116my $apitable = {
117 "1.1.0" => "0x10100000L",
118 "1.0.0" => "0x10000000L",
119 "0.9.8" => "0x00908000L",
120};
121
9e0724a1
RL
122my $base_target = "BASE"; # The template that all other inherit from
123our %table = ();
291e94df 124our %config = ();
3e83e686 125
bd5192b1 126# Forward declarations ###############################################
7ead0c89 127
bd5192b1
RL
128# read_config(filename)
129#
130# Reads a configuration file and populates %table with the contents
131# (which the configuration file places in %targets).
132sub read_config;
7d46b942 133
bd5192b1
RL
134# resolve_config(target)
135#
136# Resolves all the late evalutations, inheritances and so on for the
137# chosen target and any target it inherits from.
138sub resolve_config;
7d46b942 139
15c7adb0 140
107b5792
RL
141# Information collection #############################################
142
9fe2bb77 143# Unified build supports separate build dir
ec182ef0
RL
144my $srcdir = catdir(absolutedir(dirname($0))); # catdir ensures local syntax
145my $blddir = catdir(absolutedir(".")); # catdir ensures local syntax
9fe2bb77
RL
146my $dofile = abs2rel(catfile($srcdir, "util/dofile.pl"));
147
148$config{sourcedir} = abs2rel($srcdir);
149$config{builddir} = abs2rel($blddir);
150
107b5792
RL
151# Collect version numbers
152$config{version} = "unknown";
153$config{version_num} = "unknown";
154$config{shlib_version_number} = "unknown";
155$config{shlib_version_history} = "unknown";
156
157collect_information(
9fe2bb77 158 collect_from_file(catfile($srcdir,'include/openssl/opensslv.h')),
107b5792
RL
159 qr/OPENSSL.VERSION.TEXT.*OpenSSL (\S+) / => sub { $config{version} = $1; },
160 qr/OPENSSL.VERSION.NUMBER.*(0x\S+)/ => sub { $config{version_num}=$1 },
161 qr/SHLIB_VERSION_NUMBER *"([^"]+)"/ => sub { $config{shlib_version_number}=$1 },
162 qr/SHLIB_VERSION_HISTORY *"([^"]*)"/ => sub { $config{shlib_version_history}=$1 }
163 );
164if ($config{shlib_version_history} ne "") { $config{shlib_version_history} .= ":"; }
165
166($config{major}, $config{minor})
167 = ($config{version} =~ /^([0-9]+)\.([0-9\.]+)/);
168($config{shlib_major}, $config{shlib_minor})
169 = ($config{shlib_version_number} =~ /^([0-9]+)\.([0-9\.]+)/);
170die "erroneous version information in opensslv.h: ",
171 "$config{major}, $config{minor}, $config{shlib_major}, $config{shlib_minor}\n"
172 if ($config{major} eq "" || $config{minor} eq ""
173 || $config{shlib_major} eq "" || $config{shlib_minor} eq "");
174
175# Collect target configurations
176
85152ca4 177my $pattern = catfile(dirname($0), "Configurations", "*.conf");
97a0cc52 178foreach (sort glob($pattern) ) {
f09e7ca9
RS
179 &read_config($_);
180}
d02b48c6 181
291e94df 182
107b5792
RL
183print "Configuring OpenSSL version $config{version} (0x$config{version_num})\n";
184
291e94df
RL
185$config{perl};
186$config{prefix}="";
187$config{openssldir}="";
7d130f68 188$config{processor}="";
107b5792
RL
189$config{libdir}="";
190$config{install_prefix}= "$ENV{'INSTALL_PREFIX'}";
642a6138 191$config{cross_compile_prefix}="";
107b5792 192$config{fipslibdir}="/usr/local/ssl/fips-2.0/lib/";
1ab2f7f1 193my $nofipscanistercheck=0;
107b5792 194$config{baseaddr}="0xFB00000";
5f8d5c96
BM
195my $no_threads=0;
196my $threads=0;
83365051 197$config{no_shared}=0; # but "no-shared" is default
c9a112f5 198my $zlib=1; # but "no-zlib" is default
47bbaa5b 199my $no_rfc3779=0;
1641cb60 200my $no_asm=0;
bc2aadad 201my $no_dso=0;
0396479d 202my $default_ranlib;
107b5792
RL
203$config{fips}=0;
204
205# Top level directories to build
206$config{dirs} = [ "crypto", "ssl", "engines", "apps", "test", "tools" ];
207# crypto/ subdirectories to build
208$config{sdirs} = [
209 "objects",
210 "md2", "md4", "md5", "sha", "mdc2", "hmac", "ripemd", "whrlpool", "poly1305",
211 "des", "aes", "rc2", "rc4", "rc5", "idea", "bf", "cast", "camellia", "seed", "chacha", "modes",
212 "bn", "ec", "rsa", "dsa", "dh", "dso", "engine",
213 "buffer", "bio", "stack", "lhash", "rand", "err",
214 "evp", "asn1", "pem", "x509", "x509v3", "conf", "txt_db", "pkcs7", "pkcs12", "comp", "ocsp", "ui",
7984f082 215 "cms", "ts", "jpake", "srp", "cmac", "ct", "async", "kdf"
107b5792 216 ];
99aab161 217
6b01bed2
VD
218# Known TLS and DTLS protocols
219my @tls = qw(ssl3 tls1 tls1_1 tls1_2);
220my @dtls = qw(dtls1 dtls1_2);
221
8b527be2
RL
222# Explicitelly known options that are possible to disable. They can
223# be regexps, and will be used like this: /^no-${option}$/
224# For developers: keep it sorted alphabetically
225
226my @disablables = (
227 "aes",
228 "asm",
52739e40 229 "async",
b184e3ef 230 "autoalginit",
498abff0 231 "autoerrinit",
8b527be2
RL
232 "bf",
233 "camellia",
234 "capieng",
235 "cast",
48f14845 236 "chacha",
8b527be2
RL
237 "cmac",
238 "cms",
239 "comp",
3e45d393 240 "crypto-mdebug",
8b527be2
RL
241 "ct",
242 "deprecated",
243 "des",
244 "dgram",
245 "dh",
246 "dsa",
247 "dso",
a5ecdc6a 248 "dtls",
8b527be2
RL
249 "dynamic[-_]engine",
250 "ec",
251 "ec2m",
6b01bed2
VD
252 "ecdh",
253 "ecdsa",
8b527be2 254 "ec_nistp_64_gcc_128",
b31feae6 255 "egd",
8b527be2
RL
256 "engine",
257 "err", # Really???
8b527be2
RL
258 "heartbeats",
259 "hmac",
260 "hw(-.+)?",
261 "idea",
262 "jpake",
263 "locking", # Really???
264 "md2",
265 "md4",
266 "md5",
267 "mdc2",
268 "md[-_]ghost94",
269 "nextprotoneg",
270 "ocb",
271 "ocsp",
48f14845 272 "poly1305",
8b527be2
RL
273 "posix-io",
274 "psk",
275 "rc2",
276 "rc4",
277 "rc5",
278 "rdrand",
279 "rfc3779",
280 "rijndael", # Old AES name
281 "rmd160",
282 "rsa",
283 "scrypt",
284 "sct",
285 "sctp",
286 "seed",
287 "sha",
288 "shared",
289 "sock",
290 "srp",
291 "srtp",
292 "sse2",
293 "ssl",
8b527be2
RL
294 "ssl-trace",
295 "static-engine",
296 "stdio",
8b527be2
RL
297 "threads",
298 "tls",
8b527be2
RL
299 "unit-test",
300 "whirlpool",
301 "zlib",
302 "zlib-dynamic",
303 );
6b01bed2
VD
304foreach my $proto ((@tls, @dtls))
305 {
306 push(@disablables, $proto);
307 push(@disablables, "$proto-method");
308 }
8b527be2 309
c9a112f5
BM
310# All of the following is disabled by default (RC5 was enabled before 0.9.8):
311
7a762197 312my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
7d8bb912 313 "ec_nistp_64_gcc_128" => "default",
0423f812 314 "egd" => "default",
7d8bb912
BM
315 "jpake" => "experimental",
316 "md2" => "default",
317 "rc5" => "default",
c2e27310 318 "sctp" => "default",
7d8bb912 319 "shared" => "default",
93ab9e42 320 "ssl-trace" => "default",
e0fc7961 321 "unit-test" => "default",
7d8bb912 322 "zlib" => "default",
c2e27310
VD
323 "zlib-dynamic" => "default",
324 "crypto-mdebug" => "default",
7d8bb912 325 );
7a762197 326my @experimental = ();
c9a112f5 327
c569e206
RL
328# Note: => pair form used for aesthetics, not to truly make a hash table
329my @disable_cascades = (
330 # "what" => [ "cascade", ... ]
7d130f68 331 sub { $config{processor} eq "386" }
c569e206
RL
332 => [ "sse2" ],
333 "ssl" => [ "ssl3" ],
334 "ssl3-method" => [ "ssl3" ],
335 "zlib" => [ "zlib-dynamic" ],
336 "rijndael" => [ "aes" ],
337 "des" => [ "mdc2" ],
9e4d6fbf 338 "ec" => [ "ecdsa", "ecdh" ],
b427401c 339 "psk" => [ "jpake" ],
c569e206
RL
340
341 "dgram" => [ "dtls" ],
342 "dtls" => [ @dtls ],
343
344 # SSL 3.0, (D)TLS 1.0 and TLS 1.1 require MD5 and SHA
345 "md5" => [ "ssl", "tls1", "tls1_1", "dtls1" ],
346 "sha" => [ "ssl", "tls1", "tls1_1", "dtls1" ],
347
348 # Additionally, SSL 3.0 requires either RSA or DSA+DH
349 sub { $disabled{rsa}
350 && ($disabled{dsa} || $disabled{dh}); }
351 => [ "ssl" ],
352
353 # (D)TLS 1.0 and TLS 1.1 also require either RSA or DSA+DH
354 # or ECDSA + ECDH. (D)TLS 1.2 has this requirement as well.
355 # (XXX: We don't support PSK-only builds).
356 sub { $disabled{rsa}
357 && ($disabled{dsa} || $disabled{dh})
358 && ($disabled{ecdsa} || $disabled{ecdh}); }
359 => [ "tls1", "tls1_1", "tls1_2",
360 "dtls1", "dtls1_2" ],
361
362 "tls" => [ @tls ],
363
364 # SRP and HEARTBEATS require TLSEXT
365 "tlsext" => [ "srp", "heartbeats" ],
366 );
367
368# Avoid protocol support holes. Also disable all versions below N, if version
369# N is disabled while N+1 is enabled.
370#
371my @list = (reverse @tls);
372while ((my $first, my $second) = (shift @list, shift @list)) {
373 last unless @list;
374 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
375 => [ @list ] );
376 unshift @list, $second;
377}
378my @list = (reverse @dtls);
379while ((my $first, my $second) = (shift @list, shift @list)) {
380 last unless @list;
381 push @disable_cascades, ( sub { !$disabled{$first} && $disabled{$second} }
382 => [ @list ] );
383 unshift @list, $second;
384}
385
107b5792 386# Construct the string of what $config{depflags} should look like with the defaults
c569e206
RL
387# from %disabled above. (we need this to see if we should advise the user
388# to run "make depend"):
107b5792 389my $default_depflags = join(" ",
c569e206
RL
390 map { my $x = $_; $x =~ tr{[a-z]-}{[A-Z]_}; "-DOPENSSL_NO_$x"; }
391 grep { $disabled{$_} !~ /\(no-depflags\)$/ }
392 sort keys %disabled);
7a762197
BM
393
394# Explicit "no-..." options will be collected in %disabled along with the defaults.
395# To remove something from %disabled, use "enable-foo" (unless it's experimental).
396# For symmetry, "disable-foo" is a synonym for "no-foo".
397
398# For features called "experimental" here, a more explicit "experimental-foo" is needed to enable.
399# We will collect such requests in @experimental.
400# To avoid accidental use of experimental features, applications will have to use -DOPENSSL_EXPERIMENTAL_FOO.
ab185b60
BM
401
402
d0590fe6 403my $no_sse2=0;
b6e4dac2 404
462ba4f6 405&usage if ($#ARGV < 0);
d02b48c6 406
fe05264e 407my $flags="";
107b5792 408$config{depflags}="";
7d130f68
RL
409$config{openssl_experimental_defines}=[];
410$config{openssl_api_defines}=[];
411$config{openssl_algorithm_defines}=[];
412$config{openssl_thread_defines}=[];
413$config{openssl_sys_defines}=[];
414$config{openssl_other_defines}=[];
fe05264e
RL
415my $libs="";
416my $target="";
3fa04f0d 417$config{options}="";
451dc18f 418my $make_depend=0;
f9b3bff6 419my %withargs=();
9e43c6b5 420my $build_prefix = "release_";
c59cb511
RL
421
422my @argvcopy=@ARGV;
c59cb511 423
fe05264e 424if (grep /^reconf(igure)?$/, @argvcopy) {
642a6138
RL
425 if (-f "./configdata.pm") {
426 my $file = "./configdata.pm";
427 unless (my $return = do $file) {
428 die "couldn't parse $file: $@" if $@;
429 die "couldn't do $file: $!" unless defined $return;
430 die "couldn't run $file" unless $return;
fe05264e 431 }
642a6138
RL
432
433 @argvcopy = defined($configdata::config{perlargv}) ?
434 @{$configdata::config{perlargv}} : ();
435 die "Incorrect data to reconfigure, please do a normal configuration\n"
436 if (grep(/^reconf/,@argvcopy));
437 $ENV{CROSS_COMPILE} = $configdata::config{cross_compile_prefix}
438 if defined($configdata::config{cross_compile_prefix});
439 $ENV{CROSS_COMPILE} = $configdata::config{cc}
440 if defined($configdata::config{cc});
441
fe05264e
RL
442 print "Reconfiguring with: ", join(" ",@argvcopy), "\n";
443 print " CROSS_COMPILE = ",$ENV{CROSS_COMPILE},"\n"
444 if $ENV{CROSS_COMPILE};
445 print " CC = ",$ENV{CC},"\n" if $ENV{CC};
642a6138
RL
446 } elsif (open IN, "<Makefile") {
447 #
448 # THIS SECTION IS TEMPORARY, it helps transitioning from Makefile
449 # centered information gathering the reading configdata.pm
450 #
451 while (<IN>) {
452 chomp;
453 if (/^CONFIGURE_ARGS=\s*(.*)\s*/) {
454 # Older form, we split the string and hope for the best
455 @argvcopy = split /\s+/, $_;
456 die "Incorrect data to reconfigure, please do a normal configuration\n"
457 if (grep(/^reconf/,@argvcopy));
458 } elsif (/^CROSS_COMPILE=\s*(.*)/) {
459 $ENV{CROSS_COMPILE}=$1;
460 } elsif (/^CC=\s*(?:\$\(CROSS_COMPILE\))?(.*?)$/) {
461 $ENV{CC}=$1;
462 }
463 }
464 #
465 # END OF TEMPORARY SECTION
466 #
fe05264e
RL
467 } else {
468 die "Insufficient data to reconfigure, please do a normal configuration\n";
469 }
470}
471
642a6138 472$config{perlargv} = [ @argvcopy ];
fe05264e
RL
473
474my %unsupported_options = ();
475foreach (@argvcopy)
16b6081e 476 {
fe05264e 477 s /^-no-/no-/; # some people just can't read the instructions
c9a112f5 478
fe05264e
RL
479 # rewrite some options in "enable-..." form
480 s /^-?-?shared$/enable-shared/;
481 s /^sctp$/enable-sctp/;
482 s /^threads$/enable-threads/;
483 s /^zlib$/enable-zlib/;
484 s /^zlib-dynamic$/enable-zlib-dynamic/;
c9a112f5 485
fe05264e
RL
486 if (/^(no|disable|enable|experimental)-(.+)$/)
487 {
488 my $word = $2;
489 if (!grep { $word =~ /^${_}$/ } @disablables)
8b527be2 490 {
fe05264e
RL
491 $unsupported_options{$_} = 1;
492 next;
8b527be2 493 }
fe05264e
RL
494 }
495 if (/^no-(.+)$/ || /^disable-(.+)$/)
496 {
497 if (!($disabled{$1} eq "experimental"))
d02b48c6 498 {
fe05264e 499 foreach my $proto ((@tls, @dtls))
e172d60d 500 {
fe05264e 501 if ($1 eq "$proto-method")
3881d810 502 {
fe05264e
RL
503 $disabled{"$proto"} = "option($proto-method)";
504 last;
3881d810 505 }
fe05264e
RL
506 }
507 if ($1 eq "dtls")
508 {
509 foreach my $proto (@dtls)
6b01bed2 510 {
fe05264e 511 $disabled{$proto} = "option(dtls)";
6b01bed2 512 }
fe05264e
RL
513 }
514 elsif ($1 eq "ssl")
515 {
516 # Last one of its kind
517 $disabled{"ssl3"} = "option(ssl)";
518 }
519 elsif ($1 eq "tls")
520 {
521 # XXX: Tests will fail if all SSL/TLS
522 # protocols are disabled.
523 foreach my $proto (@tls)
7a762197 524 {
fe05264e 525 $disabled{$proto} = "option(tls)";
7a762197 526 }
fce0ba5f 527 }
fe05264e 528 else
b6e4dac2 529 {
fe05264e 530 $disabled{$1} = "option";
b6e4dac2 531 }
fe05264e
RL
532 }
533 }
534 elsif (/^enable-(.+)$/ || /^experimental-(.+)$/)
535 {
536 my $algo = $1;
537 if ($disabled{$algo} eq "experimental")
538 {
539 die "You are requesting an experimental feature; please say 'experimental-$algo' if you are sure\n"
540 unless (/^experimental-/);
541 push @experimental, $algo;
542 }
543 delete $disabled{$algo};
c9a112f5 544
fe05264e
RL
545 $threads = 1 if ($algo eq "threads");
546 }
547 elsif (/^--strict-warnings$/)
548 {
549 $strict_warnings = 1;
550 }
551 elsif (/^--debug$/)
552 {
553 $build_prefix = "debug_";
554 }
555 elsif (/^--release$/)
556 {
557 $build_prefix = "release_";
558 }
559 elsif (/^386$/)
7d130f68 560 { $config{processor}=386; }
fe05264e
RL
561 elsif (/^fips$/)
562 {
107b5792 563 $config{fips}=1;
fe05264e
RL
564 }
565 elsif (/^rsaref$/)
566 {
567 # No RSAref support any more since it's not needed.
568 # The check for the option is there so scripts aren't
569 # broken
570 }
571 elsif (/^nofipscanistercheck$/)
572 {
107b5792 573 $config{fips} = 1;
fe05264e
RL
574 $nofipscanistercheck = 1;
575 }
576 elsif (/^[-+]/)
577 {
578 if (/^--prefix=(.*)$/)
579 {
291e94df 580 $config{prefix}=$1;
c9a112f5 581 }
fe05264e 582 elsif (/^--api=(.*)$/)
0c28f277 583 {
107b5792 584 $config{api}=$1;
0c28f277 585 }
fe05264e 586 elsif (/^--libdir=(.*)$/)
9e43c6b5 587 {
107b5792 588 $config{libdir}=$1;
9e43c6b5 589 }
fe05264e 590 elsif (/^--openssldir=(.*)$/)
9e43c6b5 591 {
291e94df 592 $config{openssldir}=$1;
9e43c6b5 593 }
fe05264e 594 elsif (/^--install.prefix=(.*)$/)
d02b48c6 595 {
107b5792 596 $config{install_prefix}=$1;
d02b48c6 597 }
fe05264e 598 elsif (/^--with-zlib-lib=(.*)$/)
9fdb2cc5 599 {
20a5819f 600 $withargs{zlib_lib}=$1;
7d8bb912 601 }
fe05264e 602 elsif (/^--with-zlib-include=(.*)$/)
3eb0ed6d 603 {
20a5819f 604 $withargs{zlib_include}="-I$1";
462ba4f6 605 }
fe05264e 606 elsif (/^--with-fipslibdir=(.*)$/)
1ab2f7f1 607 {
107b5792 608 $config{fipslibdir}="$1/";
1ab2f7f1 609 }
fe05264e 610 elsif (/^--with-baseaddr=(.*)$/)
462ba4f6 611 {
107b5792 612 $config{baseaddr}="$1";
3eb0ed6d 613 }
fe05264e 614 elsif (/^--cross-compile-prefix=(.*)$/)
e5f3045f 615 {
642a6138 616 $config{cross_compile_prefix}=$1;
e5f3045f 617 }
fe05264e 618 elsif (/^--config=(.*)$/)
d02b48c6 619 {
fe05264e 620 read_config $1;
c59cb511 621 }
fe05264e 622 elsif (/^-[lL](.*)$/ or /^-Wl,/)
c9a112f5 623 {
fe05264e 624 $libs.=$_." ";
d02b48c6 625 }
fe05264e
RL
626 else # common if (/^[-+]/), just pass down...
627 {
628 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
629 $flags.=$_." ";
630 }
631 }
632 elsif ($_ =~ /^([^:]+):(.+)$/)
633 {
634 eval "\$table{\$1} = \"$2\""; # allow $xxx constructs in the string
635 $target=$1;
636 }
637 else
638 {
639 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
640 $target=$_;
641 }
642 unless ($_ eq $target || /^no-/ || /^disable-/)
643 {
644 # "no-..." follows later after implied disactivations
645 # have been derived. (Don't take this too seroiusly,
646 # we really only write OPTIONS to the Makefile out of
647 # nostalgia.)
648
3fa04f0d
RL
649 if ($config{options} eq "")
650 { $config{options} = $_; }
fe05264e 651 else
3fa04f0d 652 { $config{options} .= " ".$_; }
fbabb752 653 }
489eb740 654
107b5792
RL
655 if (defined($config{api}) && !exists $apitable->{$config{api}}) {
656 die "***** Unsupported api compatibility level: $config{api}\n",
98186eb4
VD
657 }
658
489eb740
RL
659 if (keys %unsupported_options)
660 {
661 die "***** Unsupported options: ",
662 join(", ", keys %unsupported_options), "\n";
663 }
fbabb752 664 }
b6e4dac2 665
107b5792 666if ($config{fips})
a7a14a23 667 {
c569e206 668 delete $disabled{"shared"} if ($disabled{"shared"} =~ /^default/);
6b01bed2 669 }
107b5792
RL
670else
671 {
672 @{$config{dirs}} = grep !/^fips$/, @{$config{dirs}};
673 }
c9a112f5 674
c569e206
RL
675my @tocheckfor = (keys %disabled);
676while (@tocheckfor) {
677 my %new_tocheckfor = ();
678 my @cascade_copy = (@disable_cascades);
679 while (@cascade_copy) {
680 my ($test, $descendents) = (shift @cascade_copy, shift @cascade_copy);
681 if (ref($test) eq "CODE" ? $test->() : defined($disabled{$test})) {
682 map {
683 $new_tocheckfor{$_} => 1; $disabled{$_} = "forced";
684 } grep { !defined($disabled{$_}) } @$descendents;
ef236ec3 685 }
c569e206
RL
686 }
687 @tocheckfor = (keys %new_tocheckfor);
688}
edc032b5 689
436a376b 690if ($target eq "TABLE") {
00ae96ca
RL
691 foreach (sort keys %table) {
692 print_table_entry($_, "TABLE");
693 }
694 exit 0;
436a376b
BM
695}
696
10a926c1 697if ($target eq "LIST") {
00ae96ca
RL
698 foreach (sort keys %table) {
699 print $_,"\n" unless $table{$_}->{template};
700 }
701 exit 0;
10a926c1
UM
702}
703
aaf878cc 704if ($target eq "HASH") {
00ae96ca
RL
705 print "%table = (\n";
706 foreach (sort keys %table) {
707 print_table_entry($_, "HASH");
708 }
709 exit 0;
aaf878cc
RL
710}
711
00ae96ca 712# Backward compatibility?
49e04548 713if ($target =~ m/^CygWin32(-.*)$/) {
00ae96ca 714 $target = "Cygwin".$1;
49e04548
RL
715}
716
c9a112f5
BM
717foreach (sort (keys %disabled))
718 {
3fa04f0d 719 $config{options} .= " no-$_";
c9a112f5
BM
720
721 printf " no-%-12s %-10s", $_, "[$disabled{$_}]";
722
723 if (/^dso$/)
724 { $no_dso = 1; }
725 elsif (/^threads$/)
726 { $no_threads = 1; }
727 elsif (/^shared$/)
83365051 728 { $config{no_shared} = 1; }
c9a112f5
BM
729 elsif (/^zlib$/)
730 { $zlib = 0; }
fbf002bb
DSH
731 elsif (/^static-engine$/)
732 { }
c9a112f5
BM
733 elsif (/^zlib-dynamic$/)
734 { }
c9a112f5
BM
735 elsif (/^sse2$/)
736 { $no_sse2 = 1; }
107b5792
RL
737 elsif (/^engine$/)
738 { @{$config{dirs}} = grep !/^engine$/, @{$config{dirs}}; }
c9a112f5
BM
739 else
740 {
741 my ($ALGO, $algo);
30fafdeb 742 ($ALGO = $algo = $_) =~ tr/[\-a-z]/[_A-Z]/;
c9a112f5 743
b184e3ef 744 if (/^asm$/ || /^err$/ || /^hw$/ || /^hw-/ || /^async$/
498abff0 745 || /^autoalginit/ || /^autoerrinit/)
c9a112f5 746 {
7d130f68 747 push @{$config{openssl_other_defines}}, "OPENSSL_NO_$ALGO";
c9a112f5 748 print " OPENSSL_NO_$ALGO";
fce0ba5f 749
5df70a9e
AP
750 if (/^err$/) { $flags .= "-DOPENSSL_NO_ERR "; }
751 elsif (/^asm$/) { $no_asm = 1; }
c9a112f5
BM
752 }
753 else
754 {
2a4af947
AP
755 ($ALGO,$algo) = ("RMD160","rmd160") if ($algo eq "ripemd");
756
7d130f68 757 push @{$config{openssl_algorithm_defines}}, "OPENSSL_NO_$ALGO";
107b5792 758 $config{depflags} .= " -DOPENSSL_NO_$ALGO";
c9a112f5
BM
759 print " OPENSSL_NO_$ALGO";
760
e36827f6 761 # fix-up crypto/directory name(s)
107b5792
RL
762 $algo="whrlpool" if $algo eq "whirlpool";
763 $algo="ripemd" if $algo eq "rmd160";
764 @{$config{sdirs}} = grep { $_ ne $algo} @{$config{sdirs}};
2a4af947 765
e36827f6 766 print " (skip dir)";
c9a112f5
BM
767 }
768 }
769
770 print "\n";
771 }
772
7a762197 773my $exp_cflags = "";
ccc5784e 774
7a762197
BM
775foreach (sort @experimental)
776 {
777 my $ALGO;
778 ($ALGO = $_) =~ tr/[a-z]/[A-Z]/;
779
780 # opensslconf.h will set OPENSSL_NO_... unless OPENSSL_EXPERIMENTAL_... is defined
7d130f68 781 push @{$config{openssl_experimental_defines}}, "OPENSSL_NO_$ALGO";
7a762197
BM
782 $exp_cflags .= " -DOPENSSL_EXPERIMENTAL_$ALGO";
783 }
c9a112f5 784
9e0724a1
RL
785print "Configuring for $target\n";
786
787# Support for legacy targets having a name starting with 'debug-'
788my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
789if ($d) {
790 $build_prefix = "debug_";
791
792 # If we do not find debug-foo in the table, the target is set to foo.
793 if (!$table{$target}) {
794 $target = $t;
795 }
796}
291e94df 797$config{target} = $target;
9e0724a1
RL
798delete $table{$base_target}->{template}; # or the next test will fail.
799my %target = ( %{$table{$base_target}}, resolve_config($target) );
800
801&usage if (!%target || $target{template});
802
107b5792
RL
803$target{exe_extension}="";
804$target{exe_extension}=".exe" if ($config{target} eq "Cygwin" || $config{target} eq "DJGPP" || $config{target} =~ /^mingw/);
805$target{exe_extension}=".nlm" if ($config{target} =~ /netware/);
806$target{exe_extension}=".pm" if ($config{target} =~ /vos/);
462ba4f6 807
291e94df
RL
808$default_ranlib = which("ranlib") || "true";
809$config{perl} = $ENV{'PERL'} || which("perl5") || which("perl") || "perl";
810my $make = $ENV{'MAKE'} || "make";
28a80034 811
642a6138
RL
812$config{cross_compile_prefix} = $ENV{'CROSS_COMPILE'}
813 if $config{cross_compile_prefix} eq "";
f99f41cf 814
291e94df
RL
815$config{prefix} = "/usr/local" if !$config{prefix};
816$config{openssldir} = "ssl" if !$config{openssldir};
817$config{openssldir} = catdir($config{prefix}, $config{openssldir})
818 unless file_name_is_absolute($config{openssldir});
d02b48c6 819
7f625320 820# Allow environment CC to override compiler...
291e94df 821$target{cc} = $ENV{CC} || $target{cc};
aaf878cc 822
c86ddbe6
RL
823# For cflags, lflags, plib_lflags and ex_libs, add the debug_ or release_
824# attributes.
aaf878cc 825# Do it in such a way that no spurious space is appended (hence the grep).
107b5792
RL
826$config{cflags} = join(" ",
827 grep { $_ ne "" } ($target{cflags},
828 $target{$build_prefix."cflags"}));
829$config{lflags} = join(" ",
830 grep { $_ ne "" } ($target{lflags},
831 $target{$build_prefix."lflags"}));
c86ddbe6
RL
832$config{plib_lflags} = join(" ",
833 grep { $_ ne "" } ($target{plib_lflags},
834 $target{$build_prefix."plib_lflags"}));
1740c162
RL
835$config{ex_libs} = join(" ",
836 grep { $_ ne "" } ($target{ex_libs},
837 $target{$build_prefix."ex_libs"}));
bd5192b1 838
291e94df
RL
839$target{ranlib} = $ENV{'RANLIB'} || $target{ranlib} || $default_ranlib;
840$target{ar} = $ENV{'AR'} || "ar";
107b5792
RL
841$target{arflags} = "" if !defined($target{arflags});
842$target{nm} = "nm";
291e94df
RL
843# Make sure build_scheme is consistent.
844$target{build_scheme} = [ $target{build_scheme} ]
845 if ref($target{build_scheme}) ne "ARRAY";
846
ddf1847d
RL
847my ($builder, $builder_platform, @builder_opts) =
848 @{$target{build_scheme}};
849
291e94df 850# if $config{prefix}/lib$target{multilib} is not an existing directory, then
b730b03f 851# assume that it's not searched by linker automatically, in
291e94df 852# which case adding $target{multilib} suffix causes more grief than
b730b03f 853# we're ready to tolerate, so don't...
291e94df 854$target{multilib}="" if !-d "$config{prefix}/lib$target{multilib}";
b730b03f 855
107b5792
RL
856$config{libdir}="lib$target{multilib}" if $config{libdir} eq "";
857$config{enginesdir}=$config{prefix} . "/" . $config{libdir} . "/engines";
6a9d28f9 858
107b5792 859$config{cflags} .= "$exp_cflags";
7a762197 860
107b5792 861if ($target =~ /^mingw/ && `$target{cc} --target-help 2>&1` !~ m/-mno-cygwin/m)
cbecd29a 862 {
107b5792
RL
863 $config{cflags} =~ s/-mno-cygwin\s*//;
864 $target{shared_ldflag} =~ s/-mno-cygwin\s*//;
cbecd29a
AP
865 }
866
107b5792 867if ($target =~ /linux.*-mips/ && !$no_asm && $flags !~ /-m(ips|arch=)/) {
63d8834c 868 # minimally required architecture flags for assembly modules
107b5792
RL
869 $config{cflags}="-mips2 $config{cflags}" if ($target =~ /mips32/);
870 $config{cflags}="-mips3 $config{cflags}" if ($target =~ /mips64/);
63d8834c
AP
871}
872
2964ba8c 873my $no_shared_warn=0;
14bcdb08 874my $no_user_cflags=0;
2964ba8c 875
107b5792 876if ($flags ne "") { $config{cflags}="$flags$config{cflags}"; }
14bcdb08 877else { $no_user_cflags=1; }
5f8d5c96 878
bc2aadad
GT
879# The DSO code currently always implements all functions so that no
880# applications will have to worry about that from a compilation point
881# of view. However, the "method"s may return zero unless that platform
882# has support compiled in for them. Currently each method is enabled
883# by a define "DSO_<name>" ... we translate the "dso_scheme" config
884# string entry into using the following logic;
eca57e92 885my $dso_cflags;
291e94df 886if (!$no_dso && $target{dso_scheme} ne "")
bc2aadad 887 {
291e94df
RL
888 $target{dso_scheme} =~ tr/[a-z]/[A-Z]/;
889 if ($target{dso_scheme} eq "DLFCN")
bc2aadad 890 {
eca57e92 891 $dso_cflags = "-DDSO_DLFCN -DHAVE_DLFCN_H";
bc2aadad 892 }
291e94df 893 elsif ($target{dso_scheme} eq "DLFCN_NO_H")
bc2aadad 894 {
eca57e92 895 $dso_cflags = "-DDSO_DLFCN";
bc2aadad
GT
896 }
897 else
898 {
291e94df 899 $dso_cflags = "-DDSO_$target{dso_scheme}";
bc2aadad 900 }
107b5792 901 $config{cflags} = "$dso_cflags $config{cflags}";
bc2aadad 902 }
9ec0126e 903
421e30ec 904my $thread_cflags = "";
7d130f68 905my @thread_defines;
291e94df 906if ($target{thread_cflag} ne "(unknown)" && !$no_threads)
5f8d5c96
BM
907 {
908 # If we know how to do it, support threads by default.
909 $threads = 1;
910 }
291e94df 911if ($target{thread_cflag} eq "(unknown)" && $threads)
5f8d5c96 912 {
14bcdb08
AP
913 # If the user asked for "threads", [s]he is also expected to
914 # provide any system-dependent compiler options that are
915 # necessary.
916 if ($no_user_cflags)
917 {
918 print "You asked for multi-threading support, but didn't\n";
919 print "provide any system-specific compiler options\n";
920 exit(1);
921 }
421e30ec 922 $thread_cflags="-DOPENSSL_THREADS" ;
7d130f68 923 push @thread_defines, "OPENSSL_THREADS";
5f8d5c96
BM
924 }
925else
926 {
421e30ec 927 $thread_cflags="-DOPENSSL_THREADS $target{thread_cflag}";
7d130f68 928 push @thread_defines, "OPENSSL_THREADS";
fce0ba5f 929 }
5f8d5c96 930
1740c162 931$config{ex_libs}="$libs$config{ex_libs}" if ($libs ne "");
d02b48c6 932
dfeab068
RE
933if ($no_asm)
934 {
107b5792 935 $config{cflags}=~s/-D[BL]_ENDIAN// if ($config{fips});
dfeab068 936 }
6f7ac8e1 937
5f8d5c96
BM
938if ($threads)
939 {
421e30ec 940 $config{cflags} = "$thread_cflags $config{cflags}" if $thread_cflags;
7d130f68 941 push @{$config{openssl_thread_defines}}, @thread_defines;
e452de9d
RL
942 }
943
944if ($zlib)
945 {
107b5792 946 $config{cflags} = "-DZLIB $config{cflags}";
c9a112f5
BM
947 if (defined($disabled{"zlib-dynamic"}))
948 {
20a5819f 949 if (defined($withargs{zlib_lib}))
cc7399e7 950 {
20a5819f 951 $config{ex_libs} .= " -L" . $withargs{zlib_lib} . " -lz";
cc7399e7
DSH
952 }
953 else
954 {
1740c162 955 $config{ex_libs} .= " -lz";
cc7399e7 956 }
c9a112f5
BM
957 }
958 else
959 {
107b5792 960 $config{cflags} = "-DZLIB_SHARED $config{cflags}";
c9a112f5 961 }
5f8d5c96
BM
962 }
963
98186eb4
VD
964# With "deprecated" disable all deprecated features.
965if (defined($disabled{"deprecated"})) {
107b5792 966 $config{api} = $maxapi;
98186eb4 967}
07c4c14c 968
291e94df 969if ($target{shared_target} eq "")
6f7ac8e1 970 {
107b5792 971 $no_shared_warn = 1 if !$config{no_shared} && !$config{fips};
83365051 972 $config{no_shared} = 1;
6f7ac8e1 973 }
83365051 974if (!$config{no_shared})
b436a982 975 {
291e94df 976 if ($target{shared_cflag} ne "")
a22fb399 977 {
107b5792 978 $config{cflags} = "$target{shared_cflag} -DOPENSSL_PIC $config{cflags}";
a22fb399 979 }
d2dcf4f4 980 }
b436a982 981
ddf1847d 982if ($builder ne "mk1mf")
ecd45314 983 {
4c1a6e00 984 # add {no-}static-engine to options to allow mkdef.pl to work without extra arguments
83365051 985 if ($config{no_shared})
fbf002bb 986 {
7d130f68 987 push @{$config{openssl_other_defines}}, "OPENSSL_NO_DYNAMIC_ENGINE";
3fa04f0d 988 $config{options}.=" static-engine";
fbf002bb
DSH
989 }
990 else
991 {
7d130f68 992 push @{$config{openssl_other_defines}}, "OPENSSL_NO_STATIC_ENGINE";
3fa04f0d 993 $config{options}.=" no-static-engine";
fbf002bb 994 }
6cb68620 995 }
ecd45314 996
c313e32a
AP
997#
998# Platform fix-ups
999#
c313e32a
AP
1000# Unlike other OSes (like Solaris, Linux, Tru64, IRIX) BSD run-time
1001# linkers (tested OpenBSD, NetBSD and FreeBSD) "demand" RPATH set on
1002# .so objects. Apparently application RPATH is not global and does
1003# not apply to .so linked with other .so. Problem manifests itself
1004# when libssl.so fails to load libcrypto.so. One can argue that we
1005# should engrave this into Makefile.shared rules or into BSD-* config
1006# lines above. Meanwhile let's try to be cautious and pass -rpath to
1007# linker only when --prefix is not /usr.
107b5792 1008if ($target =~ /^BSD-/)
c313e32a 1009 {
291e94df 1010 $target{shared_ldflag}.=" -Wl,-rpath,\$\$(LIBRPATH)" if ($config{prefix} !~ m|^/usr[/]*$|);
c313e32a
AP
1011 }
1012
291e94df 1013if ($target{sys_id} ne "")
cf1b7d96 1014 {
107b5792 1015 #$config{cflags}="-DOPENSSL_SYS_$target{sys_id} $config{cflags}";
642a6138 1016 push @{$config{openssl_sys_defines}}, "OPENSSL_SYS_$target{sys_id}";
cf1b7d96
RL
1017 }
1018
291e94df 1019if ($target{ranlib} eq "")
0396479d 1020 {
291e94df 1021 $target{ranlib} = $default_ranlib;
0396479d
BM
1022 }
1023
9e0724a1 1024if (!$no_asm) {
9fe2bb77
RL
1025 $target{cpuid_asm_src}=$table{BASE}->{cpuid_asm_src} if ($config{processor} eq "386");
1026 $target{cpuid_asm_src}.=" uplink.c uplink-x86.s" if ($config{cflags} =~ /-DOPENSSL_USE_APPLINK/);
1750ebcb 1027
9fe2bb77 1028 $target{bn_asm_src} =~ s/\w+-gf2m.c// if (defined($disabled{ec2m}));
f8c469de 1029
9e0724a1 1030 # bn-586 is the only one implementing bn_*_part_words
9fe2bb77
RL
1031 $config{cflags}.=" -DOPENSSL_BN_ASM_PART_WORDS" if ($target{bn_asm_src} =~ /bn-586/);
1032 $config{cflags}.=" -DOPENSSL_IA32_SSE2" if (!$no_sse2 && $target{bn_asm_src} =~ /86/);
dfeab068 1033
9fe2bb77
RL
1034 $config{cflags}.=" -DOPENSSL_BN_ASM_MONT" if ($target{bn_asm_src} =~ /-mont/);
1035 $config{cflags}.=" -DOPENSSL_BN_ASM_MONT5" if ($target{bn_asm_src} =~ /-mont5/);
1036 $config{cflags}.=" -DOPENSSL_BN_ASM_GF2m" if ($target{bn_asm_src} =~ /-gf2m/);
5ac7bde7 1037
107b5792 1038 if ($config{fips}) {
7d130f68 1039 push @{$config{openssl_other_defines}}, "OPENSSL_FIPS";
9e0724a1 1040 }
1ab2f7f1 1041
9fe2bb77
RL
1042 if ($target{sha1_asm_src}) {
1043 $config{cflags}.=" -DSHA1_ASM" if ($target{sha1_asm_src} =~ /sx86/ || $target{sha1_asm_src} =~ /sha1/);
1044 $config{cflags}.=" -DSHA256_ASM" if ($target{sha1_asm_src} =~ /sha256/);
1045 $config{cflags}.=" -DSHA512_ASM" if ($target{sha1_asm_src} =~ /sha512/);
9e0724a1 1046 }
9fe2bb77 1047 if ($target{md5_asm_src}) {
107b5792 1048 $config{cflags}.=" -DMD5_ASM";
9e0724a1 1049 }
9fe2bb77
RL
1050 $target{cast_asm_src}=$table{BASE}->{cast_asm_src} if (!$config{no_shared}); # CAST assembler is not PIC
1051 if ($target{rmd160_asm_src}) {
107b5792 1052 $config{cflags}.=" -DRMD160_ASM";
9e0724a1 1053 }
9fe2bb77
RL
1054 if ($target{aes_asm_src}) {
1055 $config{cflags}.=" -DAES_ASM" if ($target{aes_asm_src} =~ m/\baes-/);;
1056 # aes-ctr.fake is not a real file, only indication that assembler
874a3757 1057 # module implements AES_ctr32_encrypt...
9fe2bb77
RL
1058 $config{cflags}.=" -DAES_CTR_ASM" if ($target{aes_asm_src} =~ s/\s*aes-ctr\.fake//);
1059 # aes-xts.fake indicates presence of AES_xts_[en|de]crypt...
1060 $config{cflags}.=" -DAES_XTS_ASM" if ($target{aes_asm_src} =~ s/\s*aes-xts\.fake//);
1061 $target{aes_asm_src} =~ s/\s*(vpaes|aesni)-x86\.s//g if ($no_sse2);
1062 $config{cflags}.=" -DVPAES_ASM" if ($target{aes_asm_src} =~ m/vpaes/);
1063 $config{cflags}.=" -DBSAES_ASM" if ($target{aes_asm_src} =~ m/bsaes/);
9e0724a1 1064 }
9fe2bb77 1065 if ($target{wp_asm_src} =~ /mmx/) {
46d4d865 1066 if ($config{processor} eq "386") {
9fe2bb77 1067 $target{wp_asm_src}=$table{BASE}->{wp_asm_src};
46d4d865
AP
1068 } elsif (!$disabled{"whirlpool"}) {
1069 $config{cflags}.=" -DWHIRLPOOL_ASM";
1070 }
9e0724a1 1071 }
9fe2bb77 1072 if ($target{modes_asm_src} =~ /ghash-/) {
107b5792 1073 $config{cflags}.=" -DGHASH_ASM";
9e0724a1 1074 }
9fe2bb77 1075 if ($target{ec_asm_src} =~ /ecp_nistz256/) {
107b5792 1076 $config{cflags}.=" -DECP_NISTZ256_ASM";
9e0724a1 1077 }
9fe2bb77 1078 if ($target{poly1305_asm_src} ne "") {
107b5792 1079 $config{cflags}.=" -DPOLY1305_ASM";
9e0724a1
RL
1080 }
1081}
d02b48c6 1082
f1f07a23
RS
1083# Is the compiler gcc or clang? $ecc is used below to see if error-checking
1084# can be turned on.
8ed40b83 1085my $ecc = $target{cc};
f1f07a23
RS
1086my $ccpcc = "$config{cross_compile_prefix}$target{cc}";
1087$config{makedepprog} = 'makedepend';
1088open(PIPE, "$ccpcc --version 2>&1 | head -2 |");
1089while ( <PIPE> ) {
1090 $config{makedepprog} = $ccpcc if /clang|gcc/;
1091 $ecc = "clang" if /clang/;
1092 $ecc = "gcc" if /gcc/;
1093}
1094close(PIPE);
8ed40b83 1095
107b5792
RL
1096$config{depflags} =~ s/^\s*//;
1097
7d130f68
RL
1098
1099# Deal with bn_ops ###################################################
1100
7d130f68 1101$config{bn_ll} =0;
7d130f68
RL
1102$config{export_var_as_fn} =0;
1103my $def_int="unsigned int";
1104$config{rc4_int} =$def_int;
b4f35e5e 1105($config{b64l},$config{b64},$config{b32})=(0,0,1);
7d130f68 1106
94af0cd7 1107my $count = 0;
7d130f68 1108foreach (sort split(/\s+/,$target{bn_ops})) {
94af0cd7
RS
1109 $count++ if /SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT/;
1110 $config{export_var_as_fn}=1 if $_ eq 'EXPORT_VAR_AS_FN';
1111 $config{bn_ll}=1 if $_ eq 'BN_LLONG';
1112 $config{rc4_int}="unsigned char" if $_ eq 'RC4_CHAR';
1113 ($config{b64l},$config{b64},$config{b32})
1114 =(0,1,0) if $_ eq 'SIXTY_FOUR_BIT';
1115 ($config{b64l},$config{b64},$config{b32})
1116 =(1,0,0) if $_ eq 'SIXTY_FOUR_BIT_LONG';
1117 ($config{b64l},$config{b64},$config{b32})
1118 =(0,0,1) if $_ eq 'THIRTY_TWO_BIT';
7d130f68 1119}
94af0cd7
RS
1120die "Exactly one of SIXTY_FOUR_BIT|SIXTY_FOUR_BIT_LONG|THIRTY_TWO_BIT can be set in bn_ops\n"
1121 if $count > 1;
7d130f68
RL
1122
1123
1124# Hack cflags for better warnings (dev option) #######################
1125
1ed0c662
RL
1126# "Stringify" the C flags string. This permits it to be made part of a string
1127# and works as well on command lines.
107b5792 1128$config{cflags} =~ s/([\\\"])/\\\1/g;
b436a982 1129
107b5792
RL
1130if (defined($config{api})) {
1131 $config{openssl_api_defines} = [ "OPENSSL_MIN_API=".$apitable->{$config{api}} ];
1132 my $apiflag = sprintf("-DOPENSSL_API_COMPAT=%s", $apitable->{$config{api}});
98186eb4 1133 $default_depflags .= " $apiflag";
107b5792 1134 $config{cflags} .= " $apiflag";
98186eb4
VD
1135}
1136
0c28f277
DSH
1137if ($strict_warnings)
1138 {
1139 my $wopt;
f1f07a23
RS
1140 die "ERROR --strict-warnings requires gcc or clang"
1141 unless $ecc eq 'gcc' || $ecc eq 'clang';
0c28f277
DSH
1142 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1143 {
107b5792 1144 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(^|\s)$wopt(\s|$)/)
0c28f277 1145 }
190c8c60
BL
1146 if ($ecc eq "clang")
1147 {
1148 foreach $wopt (split /\s+/, $clang_devteam_warn)
1149 {
107b5792 1150 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(^|\s)$wopt(\s|$)/)
190c8c60
BL
1151 }
1152 }
a1d3f3d1
RL
1153 if ($target !~ /^mingw/)
1154 {
1155 foreach $wopt (split /\s+/, $memleak_devteam_backtrace)
1156 {
107b5792 1157 $config{cflags} .= " $wopt" unless ($config{cflags} =~ /(^|\s)$wopt(\s|$)/)
a1d3f3d1 1158 }
291e94df
RL
1159 if ($target =~ /^BSD-/)
1160 {
1740c162 1161 $config{ex_libs} .= " -lexecinfo";
291e94df
RL
1162 }
1163 }
0c28f277
DSH
1164 }
1165
9fe2bb77
RL
1166# If we use the unified build, collect information from build.info files
1167my %unified_info = ();
1168
ddf1847d
RL
1169if ($builder eq "unified") {
1170 # Store the name of the template file we will build the build file from
1171 # in %config. This may be useful for the build file itself.
1172 my $build_file_template =
1173 catfile($srcdir, "Configurations",
1174 $builder_platform."-".$target{build_file}.".tmpl");
1175 $build_file_template =
1176 catfile($srcdir, "Configurations", $target{build_file}.".tmpl")
1177 if (! -f $build_file_template);
1178 $config{build_file_template} = $build_file_template;
1179
9fe2bb77
RL
1180 use lib catdir(dirname(__FILE__),"util");
1181 use with_fallback qw(Text::Template);
1182
9fe2bb77 1183 sub cleandir {
2e963849 1184 my $base = shift;
9fe2bb77 1185 my $dir = shift;
2e963849
RL
1186 my $relativeto = shift || ".";
1187
1188 $dir = catdir($base,$dir) unless isabsolute($dir);
9fe2bb77 1189
ec182ef0
RL
1190 # Make sure the directories we're building in exists
1191 mkpath($dir);
1192
2e963849 1193 my $res = abs2rel(absolutedir($dir), rel2abs($relativeto));
9fe2bb77
RL
1194 #print STDERR "DEBUG[cleandir]: $dir , $base => $res\n";
1195 return $res;
1196 }
1197
1198 sub cleanfile {
2e963849 1199 my $base = shift;
9fe2bb77 1200 my $file = shift;
2e963849
RL
1201 my $relativeto = shift || ".";
1202
1203 $file = catfile($base,$file) unless isabsolute($file);
1204
9fe2bb77
RL
1205 my $d = dirname($file);
1206 my $f = basename($file);
1207
ec182ef0
RL
1208 # Make sure the directories we're building in exists
1209 mkpath($d);
1210
2e963849 1211 my $res = abs2rel(catfile(absolutedir($d), $f), rel2abs($relativeto));
9fe2bb77
RL
1212 #print STDERR "DEBUG[cleanfile]: $d , $f => $res\n";
1213 return $res;
1214 }
1215
1216 my @build_infos = ( [ ".", "build.info" ] );
1217 foreach (@{$config{dirs}}) {
1218 push @build_infos, [ $_, "build.info" ]
1219 if (-f catfile($srcdir, $_, "build.info"));
1220 }
1221 foreach (@{$config{sdirs}}) {
1222 push @build_infos, [ catdir("crypto", $_), "build.info" ]
1223 if (-f catfile($srcdir, "crypto", $_, "build.info"));
1224 }
1225 foreach (@{$config{engdirs}}) {
1226 push @build_infos, [ catdir("engines", $_), "build.info" ]
1227 if (-f catfile($srcdir, "engines", $_, "build.info"));
1228 }
1229
1230 foreach (@build_infos) {
1231 my $sourced = catdir($srcdir, $_->[0]);
1232 my $buildd = catdir($blddir, $_->[0]);
1233
dca99383 1234 mkpath($buildd);
9fe2bb77
RL
1235
1236 my $f = $_->[1];
1237 # The basic things we're trying to build
1238 my @programs = ();
1239 my @libraries = ();
1240 my @engines = ();
1241 my @scripts = ();
1242 my @extra = ();
1243 my @intermediates = ();
1244 my @rawlines = ();
1245
1246 my %ordinals = ();
1247 my %sources = ();
1248 my %includes = ();
1249 my %depends = ();
1250 my %renames = ();
1251 my %sharednames = ();
1252
1253 my $template = Text::Template->new(TYPE => 'FILE',
1254 SOURCE => catfile($sourced, $f));
1255 die "Something went wrong with $sourced/$f: $!\n" unless $template;
1256 my @text =
1257 split /^/m,
1258 $template->fill_in(HASH => { config => \%config,
1259 target => \%target,
1260 builddir => abs2rel($buildd, $blddir),
1261 sourcedir => abs2rel($sourced, $blddir),
1262 buildtop => abs2rel($blddir, $blddir),
1263 sourcetop => abs2rel($srcdir, $blddir) },
1264 DELIMITERS => [ "{-", "-}" ]);
1265
1266 # The top item of this stack has the following values
1267 # -2 positive already run and we found ELSE (following ELSIF should fail)
1268 # -1 positive already run (skip until ENDIF)
1269 # 0 negatives so far (if we're at a condition, check it)
1270 # 1 last was positive (don't skip lines until next ELSE, ELSIF or ENDIF)
1271 # 2 positive ELSE (following ELSIF should fail)
1272 my @skip = ();
1273 collect_information(
1274 collect_from_array([ @text ],
1275 qr/\\$/ => sub { my $l1 = shift; my $l2 = shift;
1276 $l1 =~ s/\\$//; $l1.$l2 }),
1277 # Info we're looking for
1278 qr/^\s*IF\[((?:\\.|[^\\\]])*)\]\s*$/
1279 => sub { push @skip, !! $1; },
1280 qr/^\s*ELSIF\[((?:\\.|[^\\\]])*)\]\s*$/
1281 => sub { die "ELSIF out of scope" if ! @skip;
1282 die "ELSIF following ELSE" if abs($skip[$#skip]) == 2;
1283 $skip[$#skip] = -1 if $skip[$#skip] != 0;
1284 $skip[$#skip] = !! $1
1285 if $skip[$#skip] == 0; },
1286 qr/^\s*ELSE\s*$/
1287 => sub { die "ELSE out of scope" if ! @skip;
1288 $skip[$#skip] = -2 if $skip[$#skip] != 0;
1289 $skip[$#skip] = 2 if $skip[$#skip] == 0; },
1290 qr/^\s*ENDIF\s*$/
1291 => sub { die "ENDIF out of scope" if ! @skip;
1292 pop @skip; },
1293 qr/^\s*PROGRAMS\s*=\s*(.*)\s*$/
1294 => sub { push @programs, split(/\s+/, $1)
1295 if !@skip || $skip[$#skip] > 0 },
1296 qr/^\s*LIBS\s*=\s*(.*)\s*$/
1297 => sub { push @libraries, split(/\s+/, $1)
1298 if !@skip || $skip[$#skip] > 0 },
1299 qr/^\s*ENGINES\s*=\s*(.*)\s*$/
1300 => sub { push @engines, split(/\s+/, $1)
1301 if !@skip || $skip[$#skip] > 0 },
1302 qr/^\s*SCRIPTS\s*=\s*(.*)\s*$/
1303 => sub { push @scripts, split(/\s+/, $1)
1304 if !@skip || $skip[$#skip] > 0 },
1305 qr/^\s*EXTRA\s*=\s*(.*)\s*$/
1306 => sub { push @extra, split(/\s+/, $1)
1307 if !@skip || $skip[$#skip] > 0 },
1308
1309 qr/^\s*ORDINALS\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/,
1310 => sub { push @{$ordinals{$1}}, split(/\s+/, $2)
1311 if !@skip || $skip[$#skip] > 0 },
1312 qr/^\s*SOURCE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1313 => sub { push @{$sources{$1}}, split(/\s+/, $2)
1314 if !@skip || $skip[$#skip] > 0 },
1315 qr/^\s*INCLUDE\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1316 => sub { push @{$includes{$1}}, split(/\s+/, $2)
1317 if !@skip || $skip[$#skip] > 0 },
1318 qr/^\s*DEPEND\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1319 => sub { push @{$depends{$1}}, split(/\s+/, $2)
1320 if !@skip || $skip[$#skip] > 0 },
1321 qr/^\s*RENAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1322 => sub { push @{$renames{$1}}, split(/\s+/, $2)
1323 if !@skip || $skip[$#skip] > 0 },
1324 qr/^\s*SHARED_NAME\[((?:\\.|[^\\\]])+)\]\s*=\s*(.*)\s*$/
1325 => sub { push @{$sharednames{$1}}, split(/\s+/, $2)
1326 if !@skip || $skip[$#skip] > 0 },
1327 qr/^\s*BEGINRAW\[((?:\\.|[^\\\]])+)\]\s*$/
1328 => sub {
1329 my $lineiterator = shift;
1330 my $target_kind = $1;
1331 while (defined $lineiterator->()) {
1332 chomp;
1333 if (/^\s*ENDRAW\[((?:\\.|[^\\\]])+)\]\s*$/) {
1334 die "ENDRAW doesn't match BEGINRAW"
1335 if $1 ne $target_kind;
1336 last;
1337 }
1338 next if @skip && $skip[$#skip] <= 0;
1339 push @rawlines, $_
1340 if ($target_kind eq $target{build_file}
ddf1847d 1341 || $target_kind eq $target{build_file}."(".$builder_platform.")");
9fe2bb77
RL
1342 }
1343 },
1344 qr/^(?:#.*|\s*)$/ => sub { },
1345 "OTHERWISE" => sub { die "Something wrong with this line:\n$_\nat $sourced/$f" }
1346 );
1347 die "runaway IF?" if (@skip);
1348
1349 foreach (keys %renames) {
1350 die "$_ renamed to more than one thing: "
1351 ,join(" ", @{$renames{$_}}),"\n"
1352 if scalar @{$renames{$_}} > 1;
2e963849
RL
1353 my $dest = cleanfile($buildd, $_, $blddir);
1354 my $to = cleanfile($buildd, $renames{$_}->[0], $blddir);
9fe2bb77
RL
1355 die "$dest renamed to more than one thing: "
1356 ,$unified_info{rename}->{$dest}, $to
1357 unless !defined($unified_info{rename}->{$dest})
1358 or $unified_info{rename}->{$dest} eq $to;
1359 $unified_info{rename}->{$dest} = $to;
1360 }
1361
1362 foreach (@programs) {
2e963849 1363 my $program = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1364 if ($unified_info{rename}->{$program}) {
1365 $program = $unified_info{rename}->{$program};
1366 }
1367 $unified_info{programs}->{$program} = 1;
1368 }
1369
1370 foreach (@libraries) {
2e963849 1371 my $library = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1372 if ($unified_info{rename}->{$library}) {
1373 $library = $unified_info{rename}->{$library};
1374 }
1375 $unified_info{libraries}->{$library} = 1;
1376 }
1377
1378 die <<"EOF" if $config{no_shared} && scalar @engines;
1379ENGINES can only be used if configured with 'shared'.
1380This is usually a fault in a build.info file.
1381EOF
1382 foreach (@engines) {
2e963849 1383 my $library = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1384 if ($unified_info{rename}->{$library}) {
1385 $library = $unified_info{rename}->{$library};
1386 }
1387 $unified_info{engines}->{$library} = 1;
1388 }
1389
1390 foreach (@scripts) {
2e963849 1391 my $script = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1392 if ($unified_info{rename}->{$script}) {
1393 $script = $unified_info{rename}->{$script};
1394 }
1395 $unified_info{scripts}->{$script} = 1;
1396 }
1397
1398 foreach (@extra) {
2e963849 1399 my $extra = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1400 $unified_info{extra}->{$extra} = 1;
1401 }
1402
1403 push @{$unified_info{rawlines}}, @rawlines;
1404
1405 if (!$config{no_shared}) {
1406 # Check sharednames.
1407 foreach (keys %sharednames) {
2e963849 1408 my $dest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1409 if ($unified_info{rename}->{$dest}) {
1410 $dest = $unified_info{rename}->{$dest};
1411 }
1412 die "shared_name for $dest with multiple values: "
1413 ,join(" ", @{$sharednames{$_}}),"\n"
1414 if scalar @{$sharednames{$_}} > 1;
2e963849 1415 my $to = cleanfile($buildd, $sharednames{$_}->[0], $blddir);
9fe2bb77
RL
1416 die "shared_name found for a library $dest that isn't defined\n"
1417 unless $unified_info{libraries}->{$dest};
1418 die "shared_name for $dest with multiple values: "
1419 ,$unified_info{sharednames}->{$dest}, ", ", $to
1420 unless !defined($unified_info{sharednames}->{$dest})
1421 or $unified_info{sharednames}->{$dest} eq $to;
1422 $unified_info{sharednames}->{$dest} = $to;
1423 }
1424
1425 # Additionally, we set up sharednames for libraries that don't
1426 # have any, as themselves.
1427 foreach (keys %{$unified_info{libraries}}) {
1428 if (!defined $unified_info{sharednames}->{$_}) {
1429 $unified_info{sharednames}->{$_} = $_
1430 }
1431 }
1432 }
1433
1434 foreach (keys %ordinals) {
1435 my $dest = $_;
2e963849 1436 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1437 if ($unified_info{rename}->{$ddest}) {
1438 $ddest = $unified_info{rename}->{$ddest};
1439 }
1440 foreach (@{$ordinals{$dest}}) {
1441 my %known_ordinals =
1442 (
1443 crypto =>
2e963849 1444 cleanfile($sourced, catfile("util", "libeay.num"), $blddir),
9fe2bb77 1445 ssl =>
2e963849 1446 cleanfile($sourced, catfile("util", "ssleay.num"), $blddir)
9fe2bb77
RL
1447 );
1448 my $o = $known_ordinals{$_};
1449 die "Ordinals for $ddest defined more than once\n"
1450 if $unified_info{ordinals}->{$ddest};
1451 $unified_info{ordinals}->{$ddest} = [ $_, $o ];
1452 }
1453 }
1454
1455 foreach (keys %sources) {
1456 my $dest = $_;
2e963849 1457 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1458 if ($unified_info{rename}->{$ddest}) {
1459 $ddest = $unified_info{rename}->{$ddest};
1460 }
1461 foreach (@{$sources{$dest}}) {
2e963849 1462 my $s = cleanfile($sourced, $_, $blddir);
9fe2bb77
RL
1463
1464 # If it isn't in the source tree, we assume it's generated
1465 # in the build tree
1466 if (! -f $s) {
2e963849 1467 $s = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1468 }
1469 # We recognise C and asm files
1470 if ($s =~ /\.[csS]\b$/) {
1471 (my $o = $_) =~ s/\.[csS]\b$/.o/;
2e963849 1472 $o = cleanfile($buildd, $o, $blddir);
9fe2bb77
RL
1473 $unified_info{sources}->{$ddest}->{$o} = 1;
1474 $unified_info{sources}->{$o}->{$s} = 1;
1475 } else {
1476 $unified_info{sources}->{$ddest}->{$s} = 1;
1477 }
1478 }
1479 }
1480
1481 foreach (keys %depends) {
1482 my $dest = $_;
2e963849 1483 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1484 if ($unified_info{rename}->{$ddest}) {
1485 $ddest = $unified_info{rename}->{$ddest};
1486 }
1487 foreach (@{$depends{$dest}}) {
2e963849 1488 my $d = cleanfile($sourced, $_, $blddir);
9fe2bb77
RL
1489
1490 # If it isn't found in the source, let's assume it's generated
1491 # and that the Makefile template has the lines
1492 if (! -f $d) {
2e963849 1493 $d = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1494 }
1495 # Take note if the file to depend on is being renamed
1496 if ($unified_info{rename}->{$d}) {
1497 $d = $unified_info{rename}->{$d};
1498 }
1499 $unified_info{depends}->{$ddest}->{$d} = 1;
1500 # If we depend on a header file, let's make sure it
1501 # can get included
1502 if ($d =~ /\.h$/) {
1503 my $i = dirname($d);
1504 push @{$unified_info{includes}->{$ddest}}, $i
1505 unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}};
1506 }
1507 }
1508 }
1509
1510 foreach (keys %includes) {
1511 my $dest = $_;
2e963849 1512 my $ddest = cleanfile($buildd, $_, $blddir);
9fe2bb77
RL
1513 if ($unified_info{rename}->{$ddest}) {
1514 $ddest = $unified_info{rename}->{$ddest};
1515 }
1516 foreach (@{$includes{$dest}}) {
2e963849 1517 my $i = cleandir($sourced, $_, $blddir);
9fe2bb77
RL
1518 push @{$unified_info{includes}->{$ddest}}, $i
1519 unless grep { $_ eq $i } @{$unified_info{includes}->{$ddest}};
1520 }
1521 }
1522 }
1523
1524 ### Make unified_info a bit more efficient
1525 # One level structures
1526 foreach (("programs", "libraries", "engines", "scripts", "extra")) {
1527 $unified_info{$_} = [ sort keys %{$unified_info{$_}} ];
1528 }
1529 # Two level structures
1530 foreach my $l1 (("sources", "ldadd", "depends")) {
1531 foreach my $l2 (sort keys %{$unified_info{$l1}}) {
1532 $unified_info{$l1}->{$l2} =
1533 [ sort keys %{$unified_info{$l1}->{$l2}} ];
1534 }
1535 }
1536}
1537
1538# For the schemes that need it, we provide the old *_obj configs
1539# from the *_asm_obj ones
1540foreach (grep /_asm_src$/, keys %target) {
1541 my $src = $_;
1542 (my $obj = $_) =~ s/_asm_src$/_obj/;
1543 ($target{$obj} = $target{$src}) =~ s/\.[csS]\b/.o/g;
1544}
1545
291e94df
RL
1546# Write down our configuration where it fits #########################
1547
1548open(OUT,">configdata.pm") || die "unable to create configdata.pm: $!\n";
1549print OUT <<"EOF";
1550package configdata;
1551
1552use strict;
1553use warnings;
1554
1555use Exporter;
1556#use vars qw(\@ISA \@EXPORT);
1557our \@ISA = qw(Exporter);
9fe2bb77 1558our \@EXPORT = qw(\%config \%target %withargs %unified_info);
291e94df
RL
1559
1560EOF
1561print OUT "our %config = (\n";
1562foreach (sort keys %config) {
1563 if (ref($config{$_}) eq "ARRAY") {
1564 print OUT " ", $_, " => [ ", join(", ",
1565 map { quotify("perl", $_) }
1566 @{$config{$_}}), " ],\n";
1567 } else {
1568 print OUT " ", $_, " => ", quotify("perl", $config{$_}), ",\n"
1569 }
1570}
1571print OUT <<"EOF";
1572);
1573
1574EOF
1575print OUT "our %target = (\n";
1576foreach (sort keys %target) {
1577 if (ref($target{$_}) eq "ARRAY") {
1578 print OUT " ", $_, " => [ ", join(", ",
1579 map { quotify("perl", $_) }
1580 @{$target{$_}}), " ],\n";
1581 } else {
1582 print OUT " ", $_, " => ", quotify("perl", $target{$_}), ",\n"
1583 }
1584}
1585print OUT <<"EOF";
1586);
1587
96d2d7bc
RL
1588EOF
1589print OUT "our \%available_protocols = (\n";
1590print OUT " tls => [ ", join(", ", map { quotify("perl", $_) } @tls), " ],\n";
1591print OUT " dtls => [ ", join(", ", map { quotify("perl", $_) } @dtls), " ],\n";
1592print OUT <<"EOF";
1593);
1594
1595EOF
1596print OUT "our \%disabled = (\n";
1597foreach (sort keys %disabled) {
1598 print OUT " ", quotify("perl", $_), " => ", quotify("perl", $disabled{$_}), ",\n";
1599}
1600print OUT <<"EOF";
1601);
1602
291e94df 1603EOF
107b5792
RL
1604print OUT "our %withargs = (\n";
1605foreach (sort keys %withargs) {
1606 if (ref($withargs{$_}) eq "ARRAY") {
1607 print OUT " ", $_, " => [ ", join(", ",
1608 map { quotify("perl", $_) }
1609 @{$withargs{$_}}), " ],\n";
1610 } else {
1611 print OUT " ", $_, " => ", quotify("perl", $withargs{$_}), ",\n"
1612 }
1613}
1614print OUT <<"EOF";
1615);
edd4d402 1616
107b5792 1617EOF
ddf1847d 1618if ($builder eq "unified") {
9fe2bb77
RL
1619 my $recurse;
1620 $recurse = sub {
1621 my $indent = shift;
1622 foreach (@_) {
1623 if (ref $_ eq "ARRAY") {
1624 print OUT " "x$indent, "[\n";
1625 foreach (@$_) {
1626 $recurse->($indent + 4, $_);
1627 }
1628 print OUT " "x$indent, "],\n";
1629 } elsif (ref $_ eq "HASH") {
1630 my %h = %$_;
1631 print OUT " "x$indent, "{\n";
1632 foreach (sort keys %h) {
1633 if (ref $h{$_} eq "") {
1634 print OUT " "x($indent + 4), quotify("perl", $_), " => ", quotify("perl", $h{$_}), ",\n";
1635 } else {
1636 print OUT " "x($indent + 4), quotify("perl", $_), " =>\n";
1637 $recurse->($indent + 8, $h{$_});
1638 }
1639 }
1640 print OUT " "x$indent, "},\n";
1641 } else {
1642 print OUT " "x$indent, quotify("perl", $_), ",\n";
1643 }
1644 }
1645 };
1646 print OUT "our %unified_info = (\n";
1647 foreach (sort keys %unified_info) {
1648 if (ref $unified_info{$_} eq "") {
1649 print OUT " "x4, quotify("perl", $_), " => ", quotify("perl", $unified_info{$_}), ",\n";
1650 } else {
1651 print OUT " "x4, quotify("perl", $_), " =>\n";
1652 $recurse->(8, $unified_info{$_});
1653 }
1654 }
1655 print OUT <<"EOF";
1656);
1657
1658EOF
1659}
1660print OUT "1;\n";
d02b48c6 1661close(OUT);
f2d4be3b 1662
ddf1847d 1663die <<"EOF" if $builder ne "unified" && $srcdir ne $blddir;
9fe2bb77
RL
1664
1665***** Trying building anywhere else than in the source tree will not
1666***** work for target $config{target}. To make it possible, it needs
1667***** to use the "unified" build scheme.
1668
1669EOF
1670
ddf1847d 1671print "IsMK1MF =", ($builder eq "mk1mf" ? "yes" : "no"), "\n";
291e94df 1672print "CC =$target{cc}\n";
107b5792 1673print "CFLAG =$config{cflags}\n";
c86ddbe6
RL
1674print "LFLAG =$config{lflags}\n";
1675print "PLIB_LFLAG =$config{plib_lflags}\n";
1740c162 1676print "EX_LIBS =$config{ex_libs}\n";
291e94df
RL
1677print "CPUID_OBJ =$target{cpuid_obj}\n";
1678print "BN_ASM =$target{bn_obj}\n";
1679print "EC_ASM =$target{ec_obj}\n";
1680print "DES_ENC =$target{des_obj}\n";
1681print "AES_ENC =$target{aes_obj}\n";
1682print "BF_ENC =$target{bf_obj}\n";
1683print "CAST_ENC =$target{cast_obj}\n";
1684print "RC4_ENC =$target{rc4_obj}\n";
1685print "RC5_ENC =$target{rc5_obj}\n";
1686print "MD5_OBJ_ASM =$target{md5_obj}\n";
1687print "SHA1_OBJ_ASM =$target{sha1_obj}\n";
1688print "RMD160_OBJ_ASM=$target{rmd160_obj}\n";
1689print "CMLL_ENC =$target{cmll_obj}\n";
1690print "MODES_OBJ =$target{modes_obj}\n";
f0bd4686 1691print "PADLOCK_OBJ =$target{padlock_obj}\n";
291e94df
RL
1692print "CHACHA_ENC =$target{chacha_obj}\n";
1693print "POLY1305_OBJ =$target{poly1305_obj}\n";
7d130f68 1694print "PROCESSOR =$config{processor}\n";
291e94df
RL
1695print "RANLIB =$target{ranlib}\n";
1696print "ARFLAGS =$target{arflags}\n";
1697print "PERL =$config{perl}\n";
f0bd4686 1698print "\n";
7d130f68
RL
1699print "SIXTY_FOUR_BIT_LONG mode\n" if $config{b64l};
1700print "SIXTY_FOUR_BIT mode\n" if $config{b64};
1701print "THIRTY_TWO_BIT mode\n" if $config{b32};
7d130f68
RL
1702print "BN_LLONG mode\n" if $config{bn_ll};
1703print "RC4 uses $config{rc4_int}\n" if $config{rc4_int} != $def_int;
cba5068d 1704
dca99383 1705mkpath(catdir($blddir, "include/openssl"));
9fe2bb77
RL
1706run_dofile(catfile($blddir, "include/openssl/opensslconf.h"),
1707 catfile($srcdir, "include/openssl/opensslconf.h.in"));
f0bd4686 1708
dca99383 1709mkpath(catdir($blddir, "crypto/include/internal"));
3e9e810f 1710foreach my $alg ( 'bn' ) {
9fe2bb77
RL
1711 run_dofile(catfile($blddir, "crypto/include/internal/${alg}_conf.h"),
1712 catfile($srcdir, "crypto/include/internal/${alg}_conf.h.in"));
f0bd4686
RL
1713}
1714
9fe2bb77
RL
1715###
1716### When the old "unixmake" scheme goes away, so does this function
1717###
1718sub build_Makefile {
1719 run_dofile("Makefile","Makefile.in");
1720
1721 # Copy all Makefile.in to Makefile (except top-level)
1722 use File::Find;
1723 use IO::File;
1724 find(
1725 {
1726 preprocess => sub {
1727 grep(!/^\./, @_);
1728 },
1729 wanted => sub {
1730 return if ($_ ne "Makefile.in" || $File::Find::dir eq ".");
1731 my $in = IO::File->new($_, "r") or
1732 die sprintf "Error reading Makefile.in in %s: !$\n",
1733 $File::Find::dir;
1734 my $out = IO::File->new("Makefile", "w") or
1735 die sprintf "Error writing Makefile in %s: !$\n",
1736 $File::Find::dir;
1737 print $out "# Generated from $_, do not edit\n";
1738 while (my $line = <$in>) { print $out $line }
1739 $in->close() or
1740 die sprintf "Error reading Makefile.in in %s: !$\n",
1741 $File::Find::dir;
1742 $out->close() or
1743 die sprintf "Error writing Makefile in %s: !$\n",
1744 $File::Find::dir;
1745 },
fb36ca12 1746 },
9fe2bb77
RL
1747 ".");
1748}
d10dac11 1749
88087414 1750my %builders = (
9fe2bb77 1751 unified => sub {
ddf1847d
RL
1752 run_dofile(catfile($blddir, $target{build_file}),
1753 $config{build_file_template},
1754 catfile($srcdir, "Configurations", "common.tmpl"));
1755
1756 my $make_command = "$make PERL=\'$config{perl}\'";
1757 my $make_targets = "";
1758 $make_targets .= " depend"
1759 if $config{depflags} ne $default_depflags && $make_depend;
1760 (system $make_command.$make_targets) == 0
1761 or die "make $make_targets failed"
1762 if $make_targets ne "";
1763 if ($config{depflags} ne $default_depflags && !$make_depend) {
1764 $warn_make_depend++;
1765 }
9fe2bb77 1766 },
88087414 1767 unixmake => sub {
9fe2bb77
RL
1768 build_Makefile();
1769
1770 run_dofile("util/domd", "util/domd.in");
1771 chmod 0755, "util/domd";
1772
291e94df 1773 my $make_command = "$make PERL=\'$config{perl}\'";
88087414 1774 my $make_targets = "";
ddf1847d
RL
1775 $make_targets .= " depend"
1776 if $config{depflags} ne $default_depflags && $make_depend;
1777 (system $make_command.$make_targets) == 0
1778 or die "make $make_targets failed"
88087414 1779 if $make_targets ne "";
ddf1847d 1780
107b5792 1781 if ($config{depflags} ne $default_depflags && !$make_depend) {
88087414
RL
1782 $warn_make_depend++;
1783 }
1784 },
1785 mk1mf => sub {
ddf1847d 1786 my $platform = shift;
9fe2bb77
RL
1787 # The only reason we do this is to have something to build MINFO from
1788 build_Makefile();
1789
664b9985 1790 open (OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
76ffb43d 1791 printf OUT <<"EOF";
57119943
BM
1792#ifndef MK1MF_BUILD
1793 /* auto-generated by Configure for crypto/cversion.c:
1794 * for Unix builds, crypto/Makefile.ssl generates functional definitions;
1795 * Windows builds (and other mk1mf builds) compile cversion.c with
1796 * -DMK1MF_BUILD and use definitions added to this file by util/mk1mf.pl. */
1797 #error "Windows builds (PLATFORM=$target) use mk1mf.pl-created Makefiles"
1798#endif
9e935d7e 1799EOF
8e10f2b3 1800 close(OUT);
8e10f2b3 1801
88087414 1802 # create the ms/version32.rc file if needed
7839b735 1803 if ($platform ne "netware") {
88087414 1804 my ($v1, $v2, $v3, $v4);
3fa04f0d 1805 if ($config{version_num} =~ /^0x([0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{1})L$/i) {
fc6a6a10
DSH
1806 $v1=hex $1;
1807 $v2=hex $2;
1808 $v3=hex $3;
1809 $v4=hex $4;
88087414
RL
1810 }
1811 open (OUT,">ms/version32.rc") || die "Can't open ms/version32.rc";
1812 print OUT <<"EOF";
fc6a6a10
DSH
1813#include <winver.h>
1814
1815LANGUAGE 0x09,0x01
1816
18171 VERSIONINFO
1818 FILEVERSION $v1,$v2,$v3,$v4
1819 PRODUCTVERSION $v1,$v2,$v3,$v4
1820 FILEFLAGSMASK 0x3fL
1821#ifdef _DEBUG
1822 FILEFLAGS 0x01L
1823#else
1824 FILEFLAGS 0x00L
1825#endif
1826 FILEOS VOS__WINDOWS32
1827 FILETYPE VFT_DLL
1828 FILESUBTYPE 0x0L
1829BEGIN
1830 BLOCK "StringFileInfo"
1831 BEGIN
1832 BLOCK "040904b0"
1833 BEGIN
fce0ba5f 1834 // Required:
fc6a6a10
DSH
1835 VALUE "CompanyName", "The OpenSSL Project, http://www.openssl.org/\\0"
1836 VALUE "FileDescription", "OpenSSL Shared Library\\0"
3fa04f0d 1837 VALUE "FileVersion", "$config{version}\\0"
fc6a6a10
DSH
1838#if defined(CRYPTO)
1839 VALUE "InternalName", "libeay32\\0"
1840 VALUE "OriginalFilename", "libeay32.dll\\0"
1841#elif defined(SSL)
1842 VALUE "InternalName", "ssleay32\\0"
1843 VALUE "OriginalFilename", "ssleay32.dll\\0"
a479d72d 1844#endif
fc6a6a10 1845 VALUE "ProductName", "The OpenSSL Toolkit\\0"
3fa04f0d 1846 VALUE "ProductVersion", "$config{version}\\0"
fc6a6a10
DSH
1847 // Optional:
1848 //VALUE "Comments", "\\0"
51cbee35 1849 VALUE "LegalCopyright", "Copyright © 1998-2015 The OpenSSL Project. Copyright © 1995-1998 Eric A. Young, Tim J. Hudson. All rights reserved.\\0"
fc6a6a10
DSH
1850 //VALUE "LegalTrademarks", "\\0"
1851 //VALUE "PrivateBuild", "\\0"
1852 //VALUE "SpecialBuild", "\\0"
1853 END
1854 END
1855 BLOCK "VarFileInfo"
1856 BEGIN
1857 VALUE "Translation", 0x409, 0x4b0
1858 END
1859END
1860EOF
88087414
RL
1861 close(OUT);
1862 }
1863 },
1864 );
1865
ddf1847d 1866$builders{$builder}->($builder_platform, @builder_opts);
fce0ba5f 1867
76ffb43d 1868print <<"EOF";
63d3f44a 1869
89ec98e0 1870Configured for $target.
63d3f44a 1871EOF
5f8d5c96 1872
76ffb43d 1873print <<"EOF" if (!$no_threads && !$threads);
5f8d5c96
BM
1874
1875The library could not be configured for supporting multi-threaded
1876applications as the compiler options required on this system are not known.
ff1b7e09 1877See file INSTALL for details if you need multi-threading.
ec577822
BM
1878EOF
1879
76ffb43d 1880print <<"EOF" if ($no_shared_warn);
2964ba8c 1881
2e31ef03
RS
1882You gave the option 'shared', which is not supported on this platform, so
1883we will pretend you gave the option 'no-shared'. If you know how to implement
1884shared libraries, please let us know (but please first make sure you have
1885tried with a current version of OpenSSL).
1886EOF
1887
76ffb43d 1888print <<"EOF" if ($warn_make_depend);
2e31ef03
RS
1889
1890*** Because of configuration changes, you MUST do the following before
1891*** building:
1892
1893 make depend
2964ba8c
RL
1894EOF
1895
d02b48c6
RE
1896exit(0);
1897
bd5192b1
RL
1898######################################################################
1899#
1900# Helpers and utility functions
1901#
1902
1903# Configuration file reading #########################################
1904
1905# Helper function to implement conditional inheritance depending on the
1906# value of $no_asm. Used in inherit_from values as follows:
1907#
1908# inherit_from => [ "template", asm("asm_tmpl") ]
1909#
1910sub asm {
1911 my @x = @_;
1912 sub {
1913 $no_asm ? () : @x;
1914 }
1915}
1916
88087414
RL
1917# Helper function to implement adding values to already existing configuration
1918# values. It handles elements that are ARRAYs, CODEs and scalars
1919sub _add {
1920 my $separator = shift;
1921
1922 # If there's any ARRAY in the collection of values, we will return
1923 # an ARRAY of combined values, otherwise a string of joined values
1924 # with $separator as the separator.
1925 my $found_array = 0;
1926
1927 my @values =
1928 map {
1929 if (ref($_) eq "ARRAY") {
1930 $found_array = 1;
1931 @$_;
1932 } else {
1933 $_;
1934 }
1935 } (@_);
1936
1937 if ($found_array) {
1938 [ @values ];
1939 } else {
1940 join($separator, @values);
1941 }
1942}
1943sub add_before {
1944 my $separator = shift;
1945 my @x = @_;
1946 sub { _add($separator, @x, @_) };
1947}
1948sub add {
1949 my $separator = shift;
1950 my @x = @_;
1951 sub { _add($separator, @_, @x) };
1952}
1953
bd5192b1
RL
1954# configuration reader, evaluates the input file as a perl script and expects
1955# it to fill %targets with target configurations. Those are then added to
1956# %table.
1957sub read_config {
1958 my $fname = shift;
1959 open(CONFFILE, "< $fname")
1960 or die "Can't open configuration file '$fname'!\n";
1961 my $x = $/;
1962 undef $/;
1963 my $content = <CONFFILE>;
1964 $/ = $x;
1965 close(CONFFILE);
1966 my %targets = ();
1967 {
1968 local %table = %::table; # Protect %table from tampering
1969
1970 eval $content;
1971 warn $@ if $@;
1972 }
1973
1974 # For each target, check that it's configured with a hash table.
1975 foreach (keys %targets) {
1976 if (ref($targets{$_}) ne "HASH") {
1977 if (ref($targets{$_}) eq "") {
1978 warn "Deprecated target configuration for $_, ignoring...\n";
1979 } else {
1980 warn "Misconfigured target configuration for $_ (should be a hash table), ignoring...\n";
1981 }
1982 delete $targets{$_};
1983 }
1984 }
1985
1986 %table = (%table, %targets);
1987
1988}
1989
1990# configuration resolver. Will only resolve all the lazy evalutation
1991# codeblocks for the chozen target and all those it inherits from,
1992# recursively
1993sub resolve_config {
1994 my $target = shift;
1995 my @breadcrumbs = @_;
1996
1997 if (grep { $_ eq $target } @breadcrumbs) {
1998 die "inherit_from loop! target backtrace:\n "
1999 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
2000 }
2001
2002 if (!defined($table{$target})) {
2003 warn "Warning! target $target doesn't exist!\n";
2004 return ();
2005 }
2006 # Recurse through all inheritances. They will be resolved on the
2007 # fly, so when this operation is done, they will all just be a
2008 # bunch of attributes with string values.
2009 # What we get here, though, are keys with references to lists of
2010 # the combined values of them all. We will deal with lists after
2011 # this stage is done.
2012 my %combined_inheritance = ();
2013 if ($table{$target}->{inherit_from}) {
2014 my @inherit_from =
2015 map { ref($_) eq "CODE" ? $_->() : $_ } @{$table{$target}->{inherit_from}};
2016 foreach (@inherit_from) {
2017 my %inherited_config = resolve_config($_, $target, @breadcrumbs);
2018
2019 # 'template' is a marker that's considered private to
2020 # the config that had it.
2021 delete $inherited_config{template};
2022
2023 map {
2024 if (!$combined_inheritance{$_}) {
2025 $combined_inheritance{$_} = [];
2026 }
2027 push @{$combined_inheritance{$_}}, $inherited_config{$_};
2028 } keys %inherited_config;
2029 }
2030 }
2031
2032 # We won't need inherit_from in this target any more, since we've
2033 # resolved all the inheritances that lead to this
2034 delete $table{$target}->{inherit_from};
2035
2036 # Now is the time to deal with those lists. Here's the place to
2037 # decide what shall be done with those lists, all based on the
2038 # values of the target we're currently dealing with.
2039 # - If a value is a coderef, it will be executed with the list of
2040 # inherited values as arguments.
2041 # - If the corresponding key doesn't have a value at all or is the
2042 # emoty string, the inherited value list will be run through the
2043 # default combiner (below), and the result becomes this target's
2044 # value.
2045 # - Otherwise, this target's value is assumed to be a string that
2046 # will simply override the inherited list of values.
88087414 2047 my $default_combiner = add(" ");
bd5192b1
RL
2048
2049 my %all_keys =
2050 map { $_ => 1 } (keys %combined_inheritance,
2051 keys %{$table{$target}});
2052 foreach (sort keys %all_keys) {
2053
2054 # Current target doesn't have a value for the current key?
2055 # Assign it the default combiner, the rest of this loop body
2056 # will handle it just like any other coderef.
2057 if (!exists $table{$target}->{$_}) {
2058 $table{$target}->{$_} = $default_combiner;
2059 }
2060
2061 my $valuetype = ref($table{$target}->{$_});
2062 if ($valuetype eq "CODE") {
2063 # CODE reference, execute it with the inherited values as
2064 # arguments.
2065 $table{$target}->{$_} =
2066 $table{$target}->{$_}->(@{$combined_inheritance{$_}});
88087414
RL
2067 } elsif ($valuetype eq "ARRAY" || $valuetype eq "") {
2068 # ARRAY or Scalar, just leave it as is.
bd5192b1
RL
2069 } else {
2070 # Some other type of reference that we don't handle.
2071 # Better to abort at this point.
2072 die "cannot handle reference type $valuetype,"
2073 ," found in target $target -> $_\n";
2074 }
2075 }
2076
2077 # Finally done, return the result.
2078 return %{$table{$target}};
2079}
2080
462ba4f6 2081sub usage
d02b48c6 2082 {
462ba4f6 2083 print STDERR $usage;
10a926c1 2084 print STDERR "\npick os/compiler from:\n";
1641cb60 2085 my $j=0;
6457ad15 2086 my $i;
10a926c1 2087 my $k=0;
6457ad15 2088 foreach $i (sort keys %table)
d02b48c6 2089 {
bd5192b1 2090 next if $table{$i}->{template};
462ba4f6 2091 next if $i =~ /^debug/;
10a926c1
UM
2092 $k += length($i) + 1;
2093 if ($k > 78)
2094 {
2095 print STDERR "\n";
2096 $k=length($i);
2097 }
2098 print STDERR $i . " ";
462ba4f6
UM
2099 }
2100 foreach $i (sort keys %table)
2101 {
bd5192b1 2102 next if $table{$i}->{template};
462ba4f6 2103 next if $i !~ /^debug/;
10a926c1
UM
2104 $k += length($i) + 1;
2105 if ($k > 78)
2106 {
2107 print STDERR "\n";
2108 $k=length($i);
2109 }
2110 print STDERR $i . " ";
d02b48c6 2111 }
10a926c1 2112 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 2113 exit(1);
d02b48c6
RE
2114 }
2115
107b5792
RL
2116sub run_dofile()
2117{
107b5792 2118 my $out = shift;
9fe2bb77 2119 my @templates = @_;
107b5792 2120
ced2c2c5
RS
2121 unlink $out || warn "Can't remove $out, $!"
2122 if -f $out;
9fe2bb77
RL
2123 foreach (@templates) {
2124 die "Can't open $_, $!" unless -f $_;
2125 }
2126 my $cmd = "$config{perl} \"-I.\" \"-Mconfigdata\" $dofile -o\"Configure\" \"".join("\" \"",@templates)."\" > \"$out.new\"";
2127 #print STDERR "DEBUG[run_dofile]: \$cmd = $cmd\n";
2128 system($cmd);
107b5792
RL
2129 exit 1 if $? != 0;
2130 rename("$out.new", $out) || die "Can't rename $out.new, $!";
2131}
2132
00ae96ca
RL
2133# Configuration printer ##############################################
2134
2135sub print_table_entry
2136{
2137 my $target = shift;
2138 my %target = resolve_config($target);
2139 my $type = shift;
2140
2141 # Don't print the templates
2142 return if $target{template};
2143
2144 my @sequence = (
f0bd4686 2145 "sys_id",
00ae96ca
RL
2146 "cc",
2147 "cflags",
2148 "debug_cflags",
2149 "release_cflags",
00ae96ca 2150 "thread_cflag",
f0bd4686
RL
2151 "unistd",
2152 "ld",
00ae96ca 2153 "lflags",
c86ddbe6 2154 "plib_lflags",
1740c162 2155 "ex_libs",
00ae96ca 2156 "debug_lflags",
c86ddbe6 2157 "debug_plib_lflags",
1740c162 2158 "debug_ex_libs",
00ae96ca 2159 "release_lflags",
c86ddbe6 2160 "release_plib_lflags",
1740c162 2161 "release_ex_libs",
00ae96ca
RL
2162 "bn_ops",
2163 "cpuid_obj",
2164 "bn_obj",
2165 "ec_obj",
2166 "des_obj",
2167 "aes_obj",
2168 "bf_obj",
2169 "md5_obj",
2170 "sha1_obj",
2171 "cast_obj",
2172 "rc4_obj",
2173 "rmd160_obj",
2174 "rc5_obj",
2175 "wp_obj",
2176 "cmll_obj",
2177 "modes_obj",
f0bd4686 2178 "padlock_obj",
00ae96ca
RL
2179 "perlasm_scheme",
2180 "dso_scheme",
2181 "shared_target",
2182 "shared_cflag",
2183 "shared_ldflag",
2184 "shared_extension",
f0bd4686
RL
2185 "obj_extension",
2186 "exe_extension",
00ae96ca 2187 "ranlib",
f0bd4686 2188 "ar",
00ae96ca
RL
2189 "arflags",
2190 "multilib",
f0bd4686 2191 "build_scheme",
00ae96ca
RL
2192 );
2193
2194 if ($type eq "TABLE") {
2195 print "\n";
2196 print "*** $target\n";
2197 printf "\$%-12s = %s\n", $_, $target{$_} foreach (@sequence);
2198 } elsif ($type eq "HASH") {
2199 my $largest =
2200 length((sort { length($a) <=> length($b) } @sequence)[-1]);
2201 print " '$target' => {\n";
2202 foreach (@sequence) {
2203 if ($target{$_}) {
2204 print " '",$_,"'"," " x ($largest - length($_))," => '",$target{$_},"',\n";
2205 }
2206 }
2207 print " },\n";
2208 }
2209}
2210
2211# Utility routines ###################################################
2212
2e963849
RL
2213# On VMS, if the given file is a logical name, File::Spec::Functions
2214# will consider it an absolute path. There are cases when we want a
2215# purely syntactic check without checking the environment.
2216sub isabsolute {
2217 my $file = shift;
2218
2219 # On non-platforms, we just use file_name_is_absolute().
2220 return file_name_is_absolute($file) unless $^O eq "VMS";
2221
2222 # If the file spec includes a device or a directpry spec,
2223 # file_name_is_absolute() is perfectly safe.
2224 return file_name_is_absolute($file) if $file =~ m|[:\[]|;
2225
2226 # Here, we know the given file spec isn't absolute
2227 return 0;
2228}
2229
ec182ef0
RL
2230# Makes a directory absolute and cleans out /../ in paths like foo/../bar
2231# On some platforms, this uses rel2abs(), while on others, realpath() is used.
2232# realpath() requires that at least all path components except the last is an
2233# existing directory. On VMS, the last component of the directory spec must
2234# exist.
2235sub absolutedir {
2236 my $dir = shift;
2237
2238 # realpath() is quite buggy on VMS. It uses LIB$FID_TO_NAME, which
2239 # will return the volume name for the device, no matter what. Also,
2240 # it will return an incorrect directory spec if the argument is a
2241 # directory that doesn't exist.
2242 if ($^O eq "VMS") {
2243 return rel2abs($dir);
2244 }
2245
2246 # We use realpath() on Unix, since no other will properly clean out
2247 # a directory spec.
2248 use Cwd qw/realpath/;
2249
2250 return realpath($dir);
2251}
2252
99aab161
UM
2253sub which
2254 {
2255 my($name)=@_;
2256 my $path;
2257 foreach $path (split /:/, $ENV{PATH})
2258 {
107b5792 2259 if (-f "$path/$name$target{exe_extension}" and -x _)
99aab161 2260 {
107b5792
RL
2261 return "$path/$name$target{exe_extension}" unless ($name eq "perl" and
2262 system("$path/$name$target{exe_extension} -e " . '\'exit($]<5.0);\''));
99aab161
UM
2263 }
2264 }
2265 }
2266
fe05264e
RL
2267sub quotify {
2268 my %processors = (
2269 perl => sub { my $x = shift;
2270 $x =~ s/([\\\$\@"])/\\$1/g;
2271 return '"'.$x.'"'; },
2272 );
2273 my $for = shift;
2274 my $processor =
2275 defined($processors{$for}) ? $processors{$for} : sub { shift; };
2276
2277 map { $processor->($_); } @_;
2278}
107b5792 2279
9fe2bb77
RL
2280# collect_from_file($filename, $line_concat_cond_re, $line_concat)
2281# $filename is a file name to read from
2282# $line_concat_cond_re is a regexp detecting a line continuation ending
2283# $line_concat is a CODEref that takes care of concatenating two lines
2284sub collect_from_file {
2285 my $filename = shift;
2286 my $line_concat_cond_re = shift;
2287 my $line_concat = shift;
2288
2289 open my $fh, $filename || die "unable to read $filename: $!\n";
2290 return sub {
2291 my $saved_line = "";
2292 $_ = "";
2293 while (<$fh>) {
2294 chomp;
2295 if (defined $line_concat) {
2296 $_ = $line_concat->($saved_line, $_);
2297 $saved_line = "";
2298 }
2299 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2300 $saved_line = $_;
2301 next;
2302 }
2303 return $_;
2304 }
2305 die "$filename ending with continuation line\n" if $_;
2306 close $fh;
2307 return undef;
2308 }
2309}
2310
2311# collect_from_array($array, $line_concat_cond_re, $line_concat)
2312# $array is an ARRAYref of lines
2313# $line_concat_cond_re is a regexp detecting a line continuation ending
2314# $line_concat is a CODEref that takes care of concatenating two lines
2315sub collect_from_array {
2316 my $array = shift;
2317 my $line_concat_cond_re = shift;
2318 my $line_concat = shift;
2319 my @array = (@$array);
2320
2321 return sub {
2322 my $saved_line = "";
2323 $_ = "";
2324 while (defined($_ = shift @array)) {
2325 chomp;
2326 if (defined $line_concat) {
2327 $_ = $line_concat->($saved_line, $_);
2328 $saved_line = "";
2329 }
2330 if (defined $line_concat_cond_re && /$line_concat_cond_re/) {
2331 $saved_line = $_;
2332 next;
2333 }
2334 return $_;
2335 }
2336 die "input text ending with continuation line\n" if $_;
2337 return undef;
2338 }
2339}
2340
2341# collect_information($lineiterator, $line_continue, $regexp => $CODEref, ...)
2342# $lineiterator is a CODEref that delivers one line at a time.
107b5792
RL
2343# All following arguments are regex/CODEref pairs, where the regexp detects a
2344# line and the CODEref does something with the result of the regexp.
2345sub collect_information {
9fe2bb77 2346 my $lineiterator = shift;
107b5792
RL
2347 my %collectors = @_;
2348
9fe2bb77
RL
2349 while(defined($_ = $lineiterator->())) {
2350 chomp;
2351 my $found = 0;
2352 foreach my $re (keys %collectors) {
2353 if ($re ne "OTHERWISE" && /$re/) {
2354 $collectors{$re}->($lineiterator);
2355 $found = 1;
2356 };
2357 }
2358 if ($collectors{"OTHERWISE"}) {
2359 $collectors{"OTHERWISE"}->($lineiterator, $_)
2360 unless $found || !defined $collectors{"OTHERWISE"};
2361 }
107b5792 2362 }
107b5792 2363}