]> git.ipfire.org Git - thirdparty/openssl.git/blame - Configure
Wire ChaCha20-Poly1305 to TLS.
[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
RS
6## If editing this file, run this command before committing
7## make -f Makefile.org TABLE
a4ed5532 8##
1641cb60 9
448cb8b5 10require 5.000;
1641cb60 11use strict;
f09e7ca9
RS
12use File::Basename;
13use File::Spec::Functions;
1641cb60 14
22a4f969 15# see INSTALL for instructions.
462ba4f6 16
e36827f6 17my $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] [sctp] [386] [--prefix=DIR] [--openssldir=OPENSSLDIR] [--with-xxx[=vvv]] [--test-sanity] [--config=FILE] os/compiler[:flags]\n";
462ba4f6 18
434c5dd3 19# Options:
e5f3045f 20#
f09e7ca9
RS
21# --config add the given configuration file, which will be read after
22# any "Configurations*" files that are found in the same
23# directory as this script.
462ba4f6
UM
24# --openssldir install OpenSSL in OPENSSLDIR (Default: DIR/ssl if the
25# --prefix option is given; /usr/local/ssl otherwise)
26# --prefix prefix for the OpenSSL include, lib and bin directories
27# (Default: the OPENSSLDIR directory)
e5f3045f
BM
28#
29# --install_prefix Additional prefix for package builders (empty by
30# default). This needn't be set in advance, you can
31# just as well use "make INSTALL_PREFIX=/whatever install".
32#
d0d046ec
RL
33# --test-sanity Make a number of sanity checks on the data in this file.
34# This is a debugging tool for OpenSSL developers.
35#
cbfb39d1
AP
36# --cross-compile-prefix Add specified prefix to binutils components.
37#
5270e702
RL
38# no-hw-xxx do not compile support for specific crypto hardware.
39# Generic OpenSSL-style methods relating to this support
40# are always compiled but return NULL if the hardware
41# support isn't compiled.
42# no-hw do not compile support for any crypto hardware.
5f8d5c96
BM
43# [no-]threads [don't] try to create a library that is suitable for
44# multithreaded applications (default is "threads" if we
45# know how to do it)
fcc6a1c4 46# [no-]shared [don't] try to create shared libraries when supported.
a723979d 47# no-asm do not use assembler
bc2aadad
GT
48# no-dso do not compile in any native shared-library methods. This
49# will ensure that all methods just return NULL.
e452de9d
RL
50# [no-]zlib [don't] compile support for zlib compression.
51# zlib-dynamic Like "zlib", but the zlib library is expected to be a shared
52# library and will be loaded in run-time by the OpenSSL library.
7e159e01 53# sctp include SCTP support
22a4f969 54# 386 generate 80386 code
d0590fe6 55# no-sse2 disables IA-32 SSE2 code, above option implies no-sse2
79df9d62 56# no-<cipher> build without specified algorithm (rsa, idea, rc5, ...)
fce0ba5f 57# -<xxx> +<xxx> compiler options are passed through
e41c8d6a
GT
58#
59# DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
60# provided to stack calls. Generates unique stack functions for
61# each possible stack type.
d02b48c6
RE
62# DES_PTR use pointer lookup vs arrays in the DES in crypto/des/des_locl.h
63# DES_RISC1 use different DES_ENCRYPT macro that helps reduce register
64# dependancies but needs to more registers, good for RISC CPU's
65# DES_RISC2 A different RISC variant.
66# DES_UNROLL unroll the inner DES loop, sometimes helps, somtimes hinders.
67# DES_INT use 'int' instead of 'long' for DES_LONG in crypto/des/des.h
68# This is used on the DEC Alpha where long is 8 bytes
69# and int is 4
70# BN_LLONG use the type 'long long' in crypto/bn/bn.h
58964a49
RE
71# MD2_CHAR use 'char' instead of 'int' for MD2_INT in crypto/md2/md2.h
72# MD2_LONG use 'long' instead of 'int' for MD2_INT in crypto/md2/md2.h
d02b48c6
RE
73# IDEA_SHORT use 'short' instead of 'int' for IDEA_INT in crypto/idea/idea.h
74# IDEA_LONG use 'long' instead of 'int' for IDEA_INT in crypto/idea/idea.h
75# RC2_SHORT use 'short' instead of 'int' for RC2_INT in crypto/rc2/rc2.h
76# RC2_LONG use 'long' instead of 'int' for RC2_INT in crypto/rc2/rc2.h
77# RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
78# RC4_LONG use 'long' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
58964a49 79# RC4_INDEX define RC4_INDEX in crypto/rc4/rc4_locl.h. This turns on
d02b48c6 80# array lookups instead of pointer use.
2dae04d0
AP
81# RC4_CHUNK enables code that handles data aligned at long (natural CPU
82# word) boundary.
83# RC4_CHUNK_LL enables code that handles data aligned at long long boundary
84# (intended for 64-bit CPUs running 32-bit OS).
d02b48c6 85# BF_PTR use 'pointer arithmatic' for Blowfish (unsafe on Alpha).
995e79e3 86# BF_PTR2 intel specific version (generic version is more efficient).
d0590fe6
AP
87#
88# Following are set automatically by this script
89#
58964a49
RE
90# MD5_ASM use some extra md5 assember,
91# SHA1_ASM use some extra sha1 assember, must define L_ENDIAN for x86
92# RMD160_ASM use some extra ripemd160 assember,
d0590fe6
AP
93# SHA256_ASM sha256_block is implemented in assembler
94# SHA512_ASM sha512_block is implemented in assembler
95# AES_ASM ASE_[en|de]crypt is implemented in assembler
d02b48c6 96
363bd0b4 97# Minimum warning options... any contributions to OpenSSL should at least get
fce0ba5f 98# past these.
363bd0b4 99
a1d3f3d1 100my $gcc_devteam_warn = "-Wall -pedantic -DPEDANTIC -Wno-long-long -Wsign-compare -Wmissing-prototypes -Wshadow -Wformat -Wtype-limits -Werror -DCRYPTO_MDEBUG_ALL -DCRYPTO_MDEBUG_ABORT -DREF_CHECK -DDEBUG_UNUSED";
363bd0b4 101
190c8c60
BL
102# These are used in addition to $gcc_devteam_warn when the compiler is clang.
103# TODO(openssl-team): fix problems and investigate if (at least) the
480405e4 104# following warnings can also be enabled:
190c8c60 105# -Wswitch-enum, -Wunused-macros, -Wmissing-field-initializers,
df2ee0e2 106# -Wcast-align,
190c8c60
BL
107# -Wunreachable-code -Wunused-parameter -Wlanguage-extension-token
108# -Wextended-offsetof
df2ee0e2 109my $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 110
a1d3f3d1
RL
111# These are used in addition to $gcc_devteam_warn unless this is a mingw build.
112# This adds backtrace information to the memory leak info.
113my $memleak_devteam_backtrace = "-rdynamic -DCRYPTO_MDEBUG_BACKTRACE";
114
115
0c28f277
DSH
116my $strict_warnings = 0;
117
1641cb60 118my $x86_gcc_des="DES_PTR DES_RISC1 DES_UNROLL";
d02b48c6
RE
119
120# MD2_CHAR slags pentium pros
995e79e3 121my $x86_gcc_opts="RC4_INDEX MD2_INT";
d02b48c6 122
d02b48c6
RE
123#$bits1="SIXTEEN_BIT ";
124#$bits2="THIRTY_TWO_BIT ";
1641cb60
BL
125my $bits1="THIRTY_TWO_BIT ";
126my $bits2="SIXTY_FOUR_BIT ";
d02b48c6 127
b7efa56a 128# As for $BSDthreads. Idea is to maintain "collective" set of flags,
fce0ba5f 129# which would cover all BSD flavors. -pthread applies to them all,
b7efa56a
AP
130# but is treated differently. OpenBSD expands is as -D_POSIX_THREAD
131# -lc_r, which is sufficient. FreeBSD 4.x expands it as -lc_r,
132# which has to be accompanied by explicit -D_THREAD_SAFE and
133# sometimes -D_REENTRANT. FreeBSD 5.x expands it as -lc_r, which
134# seems to be sufficient?
135my $BSDthreads="-pthread -D_THREAD_SAFE -D_REENTRANT";
d02b48c6 136
f09e7ca9 137# table of known configurations, read in from files
aaf878cc
RL
138#
139# The content of each entry can take one of two forms:
140#
141# - old style config-string, colon seperated fields with exactly the
142# following structure.:
143#
144# $cc : $cflags : $unistd : $thread_cflag : $sys_id : $lflags : $bn_ops : $cpuid_obj : $bn_obj : $ec_obj : $des_obj : $aes_obj : $bf_obj : $md5_obj : $sha1_obj : $cast_obj : $rc4_obj : $rmd160_obj : $rc5_obj : $wp_obj : $cmll_obj : $modes_obj : $engines_obj : $perlasm_scheme : $dso_scheme : $shared_target : $shared_cflag : $shared_ldflag : $shared_extension : $ranlib : $arflags : $multilib
145#
146# We use the stringtohash function - defined below - to combine with the
147# fields and form a proper hash table from the string.
148#
149# - direct transfer of old style config string to hash table, using the names
150# of the fields as keys:
151#
152# {
153# cc => $cc,
154# cflags => $cflags,
155# unistd => $unistd,
156# thread_cflag => $thread_cflag,
157# sys_id => $sys_id,
158# lflags => $lflags,
159# bn_ops => $bn_ops,
160# cpuid_obj => $cpuid_obj,
161# bn_obj => $bn_obj,
162# ec_obj => $ec_obj,
163# des_obj => $des_obj,
164# aes_obj => $aes_obj,
165# bf_obj => $bf_obj,
166# md5_obj => $md5_obj,
167# sha1_obj => $sha1_obj,
168# cast_obj => $cast_obj,
169# rc4_obj => $rc4_obj,
170# rmd160_obj => $rmd160_obj,
171# rc5_obj => $rc5_obj,
172# wp_obj => $wp_obj,
173# cmll_obj => $cmll_obj,
174# modes_obj => $modes_obj,
175# engines_obj => $engines_obj,
176# perlasm_scheme => $perlasm_scheme,
177# dso_scheme => $dso_scheme,
178# shared_target => $shared_target,
179# shared_cflag => $shared_cflag,
180# shared_ldflag => $shared_ldflag,
181# shared_extension => $shared_extension,
182# ranlib => $ranlib,
183# arflags => $arflags,
184# multilib => $multilib
185# }
186#
187# - new style config hash table, which has additional attributes for debug
188# and non-debug flags to be added to the common flags, for cflags and lflags:
189#
190# {
191# cc => $cc,
192# cflags => $cflags,
b1245529
RL
193# debug_cflags => $debug_cflags,
194# release_cflags => $release_cflags,
aaf878cc
RL
195# unistd => $unistd,
196# thread_cflag => $thread_cflag,
197# sys_id => $sys_id,
198# lflags => $lflags,
b1245529
RL
199# debug_lflags => $debug_lflags,
200# release_lflags => $release_lflags,
aaf878cc
RL
201# bn_ops => $bn_ops,
202# cpuid_obj => $cpuid_obj,
203# bn_obj => $bn_obj,
204# ec_obj => $ec_obj,
205# des_obj => $des_obj,
206# aes_obj => $aes_obj,
207# bf_obj => $bf_obj,
208# md5_obj => $md5_obj,
209# sha1_obj => $sha1_obj,
210# cast_obj => $cast_obj,
211# rc4_obj => $rc4_obj,
212# rmd160_obj => $rmd160_obj,
213# rc5_obj => $rc5_obj,
214# wp_obj => $wp_obj,
215# cmll_obj => $cmll_obj,
216# modes_obj => $modes_obj,
217# engines_obj => $engines_obj,
218# dso_scheme => $dso_scheme,
219# shared_target => $shared_target,
220# shared_cflag => $shared_cflag,
221# shared_ldflag => $shared_ldflag,
222# shared_extension => $shared_extension,
223# ranlib => $ranlib,
224# arflags => $arflags,
225# multilib => $multilib
226# }
227#
228# The configuration reader will do what it can to translate everything into
229# new style config hash tables, including merging $target and debug-$target
230# if they are similar enough.
7d46b942
RL
231#
232# The configuration hashes can refer to templates in two different manners:
233#
b1245529 234# - as part of the hash, one can have a key called 'inherit_from' that
7d46b942
RL
235# indicate what other configuration hashes to inherit data from.
236# These are resolved recursively.
237#
b1245529
RL
238# Inheritance works as a set of default values that can be overriden
239# by corresponding attribute values in the inheriting configuration.
240#
241# If several configurations are given in the 'inherit_from' array, the
242# values of same attribute are concatenated with space separation.
243# With this, it's possible to have several smaller templates for
244# different configuration aspects that can be combined into a complete
245# configuration.
246#
7d46b942
RL
247# Example:
248#
b1245529
RL
249# "foo" => {
250# template => 1,
251# haha => "haha",
252# hoho => "ho"
253# },
7d46b942 254# "bar" => {
b1245529
RL
255# template => 1,
256# hoho => "ho",
257# hehe => "hehe"
7d46b942 258# },
b1245529
RL
259# "laughter" => {
260# inherit_from => [ "foo", "bar" ],
7d46b942
RL
261# }
262#
263# The entry for "foo" will become as follows after processing:
264#
b1245529 265# "laughter" => {
7d46b942 266# haha => "haha",
b1245529
RL
267# hoho => "ho ho",
268# hehe => "hehe"
7d46b942
RL
269# }
270#
271# Note 1: any entry from the table can be used as a template.
272# Note 2: pure templates have the attribute 'template => 1' and cannot
b1245529 273# be used as targets.
7d46b942 274#
b1245529
RL
275# - instead of a string, one can have a code block of the form
276# 'sub { /* your code here */ }', where the arguments are the list of
277# inherited values for that key. In fact, the concatenation of strings
278# is really done by using 'sub { join(" ",@_) }' on the list of inherited
279# values.
7d46b942
RL
280#
281# Example:
282#
b1245529
RL
283# "foo" => {
284# template => 1,
285# haha => "ha ha",
286# hoho => "ho",
287# ignored => "This should not appear in the end result",
288# },
7d46b942 289# "bar" => {
b1245529
RL
290# template => 1,
291# haha => "ah",
292# hoho => "haho",
293# hehe => "hehe"
7d46b942 294# },
b1245529
RL
295# "laughter" => {
296# inherit_from => [ "foo", "bar" ],
297# hehe => sub { join(" ",(@_,"!!!")) },
298# ignored => "",
7d46b942
RL
299# }
300#
301# The entry for "foo" will become as follows after processing:
302#
b1245529
RL
303# "laughter" => {
304# haha => "ha ha ah",
305# hoho => "ho haho",
306# hehe => "hehe !!!",
307# ignored => ""
7d46b942
RL
308# }
309#
aaf878cc 310
1641cb60 311my %table=(
7d46b942
RL
312
313 # All these templates are merely a translation of the corresponding
314 # variables further up.
315 #
316 # Note: as long as someone might use old style configuration strings,
317 # or we bother supporting that, those variables need to stay
318
7ead0c89 319 x86_asm => {
7d46b942
RL
320 template => 1,
321 cpuid_obj => "x86cpuid.o",
322 bn_obj => "bn-586.o co-586.o x86-mont.o x86-gf2m.o",
323 ec_obj => "ecp_nistz256.o ecp_nistz256-x86.o",
324 des_obj => "des-586.o crypt586.o",
325 aes_obj => "aes-586.o vpaes-x86.o aesni-x86.o",
326 bf_obj => "bf-586.o",
327 md5_obj => "md5-586.o",
328 sha1_obj => "sha1-586.o sha256-586.o sha512-586.o",
7d46b942
RL
329 rc4_obj => "rc4-586.o",
330 rmd160_obj => "rmd-586.o",
331 rc5_obj => "rc5-586.o",
332 wp_obj => "wp_block.o wp-mmx.o",
333 cmll_obj => "cmll-x86.o",
334 modes_obj => "ghash-x86.o",
335 engines_obj => "e_padlock-x86.o"
336 },
337 x86_elf_asm => {
338 template => 1,
b1245529 339 inherit_from => [ "x86_asm" ],
7d46b942
RL
340 perlasm_scheme => "elf"
341 },
7ead0c89 342 x86_64_asm => {
7d46b942
RL
343 template => 1,
344 cpuid_obj => "x86_64cpuid.o",
7ead0c89 345 bn_obj => "x86_64-gcc.o x86_64-mont.o x86_64-mont5.o x86_64-gf2m.o rsaz_exp.o rsaz-x86_64.o rsaz-avx2.o",
7d46b942
RL
346 ec_obj => "ecp_nistz256.o ecp_nistz256-x86_64.o",
347 aes_obj => "aes-x86_64.o vpaes-x86_64.o bsaes-x86_64.o aesni-x86_64.o aesni-sha1-x86_64.o aesni-sha256-x86_64.o aesni-mb-x86_64.o",
348 md5_obj => "md5-x86_64.o",
349 sha1_obj => "sha1-x86_64.o sha256-x86_64.o sha512-x86_64.o sha1-mb-x86_64.o sha256-mb-x86_64.o",
350 rc4_obj => "rc4-x86_64.o rc4-md5-x86_64.o",
351 wp_obj => "wp-x86_64.o",
352 cmll_obj => "cmll-x86_64.o cmll_misc.o",
353 modes_obj => "ghash-x86_64.o aesni-gcm-x86_64.o",
354 engines_obj => "e_padlock-x86_64.o"
355 },
356 ia64_asm => {
357 template => 1,
358 cpuid_obj => "ia64cpuid.o",
359 bn_obj => "bn-ia64.o ia64-mont.o",
360 aes_obj => "aes_core.o aes_cbc.o aes-ia64.o",
361 md5_obj => "md5-ia64.o",
362 sha1_obj => "sha1-ia64.o sha256-ia64.o sha512-ia64.o",
363 rc4_obj => "rc4-ia64.o rc4_skey.o",
364 modes_obj => "ghash-ia64.o",
365 perlasm_scheme => "void"
366 },
367 sparcv9_asm => {
368 template => 1,
369 cpuid_obj => "sparcv9cap.o sparccpuid.o",
370 bn_obj => "bn-sparcv9.o sparcv9-mont.o sparcv9a-mont.o vis3-mont.o sparct4-mont.o sparcv9-gf2m.o",
c3b9bd11 371 ec_obj => "ecp_nistz256.o ecp_nistz256-sparcv9.o",
7d46b942
RL
372 des_obj => "des_enc-sparc.o fcrypt_b.o dest4-sparcv9.o",
373 aes_obj => "aes_core.o aes_cbc.o aes-sparcv9.o aest4-sparcv9.o",
374 md5_obj => "md5-sparcv9.o",
375 sha1_obj => "sha1-sparcv9.o sha256-sparcv9.o sha512-sparcv9.o",
376 cmll_obj => "camellia.o cmll_misc.o cmll_cbc.o cmllt4-sparcv9.o",
377 modes_obj => "ghash-sparcv9.o",
378 perlasm_scheme => "void"
379 },
380 sparcv8_asm => {
381 template => 1,
382 cpuid_obj => "",
383 bn_obj => "sparcv8.o",
384 des_obj => "des_enc-sparc.o fcrypt_b.o",
385 perlasm_scheme => "void"
386 },
387 alpha_asm => {
388 template => 1,
389 cpuid_obj => "alphacpuid.o",
390 bn_obj => "bn_asm.o alpha-mont.o",
391 sha1_obj => "sha1-alpha.o",
392 modes_obj => "ghash-alpha.o",
393 perlasm_scheme => "void"
394 },
395 mips32_asm => {
396 template => 1,
397 bn_obj => "bn-mips.o mips-mont.o",
398 aes_obj => "aes_cbc.o aes-mips.o",
399 sha1_obj => "sha1-mips.o sha256-mips.o",
400 },
401 mips64_asm => {
b1245529 402 inherit_from => [ "mips32_asm" ],
7d46b942 403 template => 1,
b1245529 404 sha1_obj => sub { join(" ", @_, "sha512-mips.o") }
7d46b942 405 },
7ead0c89 406 s390x_asm => {
7d46b942
RL
407 template => 1,
408 cpuid_obj => "s390xcap.o s390xcpuid.o",
7ead0c89 409 bn_obj => "bn-s390x.o s390x-mont.o s390x-gf2m.o",
7d46b942
RL
410 aes_obj => "aes-s390x.o aes-ctr.o aes-xts.o",
411 sha1_obj => "sha1-s390x.o sha256-s390x.o sha512-s390x.o",
412 rc4_obj => "rc4-s390x.o",
413 modes_obj => "ghash-s390x.o",
414 },
415 armv4_asm => {
416 template => 1,
417 cpuid_obj => "armcap.o armv4cpuid.o",
418 bn_obj => "bn_asm.o armv4-mont.o armv4-gf2m.o",
419 ec_obj => "ecp_nistz256.o ecp_nistz256-armv4.o",
420 aes_obj => "aes_cbc.o aes-armv4.o bsaes-armv7.o aesv8-armx.o",
421 sha1_obj => "sha1-armv4-large.o sha256-armv4.o sha512-armv4.o",
422 modes_obj => "ghash-armv4.o ghashv8-armx.o",
423 perlasm_scheme => "void"
424 },
425 aarch64_asm => {
426 template => 1,
427 cpuid_obj => "armcap.o arm64cpuid.o mem_clr.o",
cc98b998 428 ec_obj => "ecp_nistz256.o ecp_nistz256-armv8.o",
2c6343bf 429 bn_obj => "bn_asm.o armv8-mont.o",
33b188a8 430 aes_obj => "aes_core.o aes_cbc.o aesv8-armx.o vpaes-armv8.o",
7d46b942
RL
431 sha1_obj => "sha1-armv8.o sha256-armv8.o sha512-armv8.o",
432 modes_obj => "ghashv8-armx.o",
433 },
434 parisc11_asm => {
435 template => 1,
436 cpuid_obj => "pariscid.o",
437 bn_obj => "bn_asm.o parisc-mont.o",
438 aes_obj => "aes_core.o aes_cbc.o aes-parisc.o",
439 sha1_obj => "sha1-parisc.o sha256-parisc.o sha512-parisc.o",
440 rc4_obj => "rc4-parisc.o",
441 modes_obj => "ghash-parisc.o",
442 perlasm_scheme => "32"
443 },
5e1b2353
RL
444 parisc20_64_asm => {
445 template => 1,
7ead0c89
AP
446 inherit_from => [ "parisc11_asm" ],
447 bn_obj => sub { my $r=join(" ",@_); $r=~s/bn_asm/pa-risc2W/; $r; },
5e1b2353
RL
448 perlasm_scheme => "64",
449 },
7d46b942
RL
450 ppc64_asm => {
451 template => 1,
452 cpuid_obj => "ppccpuid.o ppccap.o",
453 bn_obj => "bn-ppc.o ppc-mont.o ppc64-mont.o",
454 aes_obj => "aes_core.o aes_cbc.o aes-ppc.o vpaes-ppc.o aesp8-ppc.o",
455 sha1_obj => "sha1-ppc.o sha256-ppc.o sha512-ppc.o sha256p8-ppc.o sha512p8-ppc.o",
456 modes_obj => "ghashp8-ppc.o",
457 },
458 ppc32_asm => {
b1245529 459 inherit_from => [ "ppc64_asm" ],
7d46b942
RL
460 template => 1
461 },
f09e7ca9 462);
3e83e686 463
7ead0c89
AP
464{ my $no_asm_templates=0;
465 foreach (@ARGV) { $no_asm_templates=1 if (/^\-?no\-asm$/); }
466 sub asm { $no_asm_templates?():@_; }
467}
468
469
aaf878cc
RL
470sub stringtohash {
471 my $in = shift @_;
472 if (ref($in) eq "HASH") {
473 return $in;
474 }
475 my @stringsequence = (
476 "cc",
477 "cflags",
478 "unistd",
479 "thread_cflag",
480 "sys_id",
481 "lflags",
482 "bn_ops",
483 "cpuid_obj",
484 "bn_obj",
485 "ec_obj",
486 "des_obj",
487 "aes_obj",
488 "bf_obj",
489 "md5_obj",
490 "sha1_obj",
491 "cast_obj",
492 "rc4_obj",
493 "rmd160_obj",
494 "rc5_obj",
495 "wp_obj",
496 "cmll_obj",
497 "modes_obj",
498 "engines_obj",
499 "perlasm_scheme",
500 "dso_scheme",
501 "shared_target",
502 "shared_cflag",
503 "shared_ldflag",
504 "shared_extension",
505 "ranlib",
506 "arflags",
507 "multilib",
508 );
509
510 # return a ref to a hash, that's what the outer braces are for.
511 return { map { shift @stringsequence => $_ } split /:/, $in };
512};
513
f09e7ca9
RS
514# Read configuration target stanzas from a file, so that people can have
515# local files with their own definitions
516sub read_config {
517 my $fname = shift;
518 open(CONFFILE, "< $fname")
519 or die "Can't open configuration file '$fname'!\n";
520 my $x = $/;
521 undef $/;
522 my $content = <CONFFILE>;
523 $/ = $x;
524 close(CONFFILE);
525 my %targets = ();
526 eval $content;
aaf878cc
RL
527
528 # Make sure we have debug- targets first
529 my @keys =
530 sort {
531 my $a_nd = $a =~ m/^debug-/ ? $' :$a;
532 my $b_nd = $b =~ m/^debug-/ ? $' :$b;
533 my $res = 0;
534
535 if (($a_nd == $a) == ($b_nd == $b)) {
536 # they are both debug- or not, compare them as they are
537 $res = $a cmp $b;
538 } elsif ($a_nd != $a) {
539 # $a is debug-, make it lesser
540 $res = -1;
541 } else {
542 # $b is debug-, make $a greater
543 $res = 1;
544 }
545 $res;
546 } keys %targets;
547
548 foreach (@keys) {
549 if (ref($targets{$_}) ne "HASH") {
550 # Value is assumed to be a string. Split it up to
551 # become a hash table of parameters. Also, try to
552 # merge debug- variants with the non-debug target.
553
554 # Start with converting the value from a string to a
555 # standardised hash of fields. Using $tohash is safe,
556 # if the input is already a hash ref, it's just returned
557 # back.
558 $targets{$_} = stringtohash($targets{$_});
559
560 # If the current target is a debug target, there might
561 # be a corresponding non-debug target that we can merge
562 # with. If it isn't a debug- target, we've already done
563 # as much merging as we can and do not need to bother
564 # with that any more.
565 if ($_ =~ m/^debug-/) {
566 my $debugkey = $_;
567 my $nondebugkey = $';
568 my $debug = $targets{$debugkey};
569 my $nondebug;
570
571 if ($targets{$nondebugkey}) {
572 $nondebug = stringtohash($targets{$nondebugkey});
573 }
574
575 if ($nondebug) {
576 # There's both a debug and non-debug variant of
577 # this target, so we should try to merge them
578 # together.
579
580 # First, check that the non-debug variant isn't
581 # already built up with all it should have.
582 if ($nondebug->{debug_cflags}
b1245529 583 || $nondebug->{release_cflags}
aaf878cc 584 || $nondebug->{debug_lflags}
b1245529 585 || $nondebug->{release_lflags}) {
aaf878cc
RL
586 warn "there's a debug target $debugkey to be merged with a target $nondebugkey, but the latter seems to already have both nodebug and debug information. This requires human intervention. Skipping $debugkey...";
587 next;
588 }
589
590 # Now, check similarity.
591 # For keys they have in common, support that
592 # cflags and lflags can differ, otherwise they
593 # must have exactly the same values for them
594 # to be merged into one.
595 my $similarenough = 1;
596 for (keys %{$debug}) {
597 if ($nondebug->{$_} ne $debug->{$_}
598 && $_ !~ m/^[cl]flags$/) {
599 $similarenough = 0;
600 last;
601 }
602 }
603
604 if ($similarenough) {
605 # Here's where the magic happens, split the
606 # options in the debug and non-debug variants
607 # cflags and ldflags into three strings each,
608 # one with common flags, one with extra debug
609 # flags and one with extra non-debug flags.
610
611 # The result ends up in %h_nondebug, which
612 # becomes the merged variant when we're done.
613 # for each of cflags and lflags, they are
614 # replaced with cflags, debug_cflags,
b1245529 615 # release_cflags and similar for lflags.
aaf878cc
RL
616 #
617 # The purpose is that 'cflags' should be
618 # used together with 'debug_cflags' or
b1245529 619 # 'release_cflags' depending on what the
aaf878cc
RL
620 # user asks for.
621 foreach (("cflags", "lflags")) {
622 my @list_d = split /\s+/, $debug->{$_};
623 my @list_nd = split /\s+/, $nondebug->{$_};
624 my %presence = (); # bitmap
625 # 1: present in @list_d
626 # 2: present in @list_nd
627 # 3: present in both
628 map { $presence{$_} += 1; } @list_d;
629 map { $presence{$_} += 2; } @list_nd;
630
631 delete $nondebug->{$_};
632 # Note: we build from the original lists to
633 # preserve order, it might be important
634 $nondebug->{"debug-".$_} =
635 join(" ",
636 grep { $presence{$_} == 1 } @list_d);
637 $nondebug->{"nodebug-".$_} =
638 join(" ",
639 grep { $presence{$_} == 2 } @list_nd);
640 $nondebug->{$_} =
641 join(" ",
642 grep { $presence{$_} == 3 } @list_d);
643 }
644
645 $targets{$nondebugkey} = $nondebug;
646 delete $targets{$debugkey};
647 }
648 }
649 }
650 }
651 }
652
f09e7ca9 653 %table = (%table, %targets);
09816a2e 654
b1245529
RL
655 # Local function to resolve inheritance
656 my $resolve_inheritance;
657 $resolve_inheritance =
658 sub {
659 my $target = shift;
660 my @breadcrumbs = @_;
661
662 if (grep { $_ eq $target } @breadcrumbs) {
663 die "inherit_from loop! target backtrace:\n "
664 ,$target,"\n ",join("\n ", @breadcrumbs),"\n";
665 }
666
667 # Recurse through all inheritances. They will be resolved on
668 # the fly, so when this operation is done, they will all just
669 # be a bunch of attributes with string values.
670 # What we get here, though, are keys with references to lists
671 # of the combined values of them all. We will deal with lists
672 # after this stage is done.
673 my %combined_inheritance = ();
674 if ($table{$target}->{inherit_from}) {
675 foreach (@{$table{$target}->{inherit_from}}) {
676 my %inherited_config =
677 $resolve_inheritance->($_, $target, @breadcrumbs);
678
679 # 'template' is a marker that's considered private to
680 # the config that had it.
681 delete $inherited_config{template};
682
683 map {
684 if (!$combined_inheritance{$_}) {
685 $combined_inheritance{$_} = [];
686 }
687 push @{$combined_inheritance{$_}}, $inherited_config{$_};
688 } keys %inherited_config;
689 }
690 }
691
692 # We won't need inherit_from in this target any more, since
693 # we've resolved all the inheritances that lead to this
694 delete $table{$target}->{inherit_from};
695
696 # Now is the time to deal with those lists. Here's the place
697 # to decide what shall be done with those lists, all based on
698 # the values of the target we're currently dealing with.
699 # - If a value is a coderef, it will be executed with the list
700 # of inherited values as arguments.
701 # - If the corresponding key doesn't have a value at all or is
702 # the emoty string, the inherited value list will be run
703 # through the default combiner (below), and the result
704 # becomes this target's value.
705 # - Otherwise, this target's value is assumed to be a string
706 # that will simply override the inherited list of values.
707 my $default_combiner = sub { join(' ',@_) };
708
709 my %all_keys =
710 map { $_ => 1 } (keys %combined_inheritance,
711 keys %{$table{$target}});
712 foreach (sort keys %all_keys) {
713
714 # Current target doesn't have a value for the current key?
715 # Assign it the default combiner, the rest of this loop
716 # body will handle it just like any other coderef.
717 if (!exists $table{$target}->{$_}) {
718 $table{$target}->{$_} = $default_combiner;
7d46b942
RL
719 }
720
b1245529
RL
721 my $valuetype = ref($table{$target}->{$_});
722 if ($valuetype eq "CODE") {
723 # CODE reference, execute it with the inherited values
724 # as arguments.
725 $table{$target}->{$_} =
726 $table{$target}->{$_}->(@{$combined_inheritance{$_}});
727 } elsif ($valuetype eq "") {
728 # Scalar, just leave it as is.
7d46b942 729 } else {
b1245529
RL
730 # Some other type of reference that we don't handle.
731 # Better to abort at this point.
732 die "cannot handle reference type $valuetype,"
733 ," found in target $target -> $_\n";
7d46b942
RL
734 }
735 }
736
b1245529
RL
737 # Finally done, return the result.
738 %{$table{$target}};
739 };
7d46b942 740
b1245529
RL
741 # Go through all new targets and resolve inheritance and template
742 # references.
743 foreach (keys %targets) {
744 # We're ignoring the returned values here, they are only valuable
745 # to the inner recursion of this function.
746 $resolve_inheritance->($_);
09816a2e 747 }
f09e7ca9 748}
15c7adb0 749
f09e7ca9 750my ($vol, $dir, $dummy) = File::Spec->splitpath($0);
97a0cc52
RL
751my $pattern = File::Spec->catpath($vol, $dir, "Configurations/*.conf");
752foreach (sort glob($pattern) ) {
f09e7ca9
RS
753 &read_config($_);
754}
d02b48c6 755
33c3ecf7 756my @MK1MF_Builds=qw(VC-WIN64I VC-WIN64A
eba2b51d 757 debug-VC-WIN64I debug-VC-WIN64A
71b7858b 758 VC-NT VC-CE VC-WIN32 debug-VC-WIN32
fce0ba5f 759 BC-32
eef0c1f3
DSH
760 netware-clib netware-clib-bsdsock
761 netware-libc netware-libc-bsdsock);
efadf60f 762
e5f3045f 763my $prefix="";
6727565a 764my $libdir="";
462ba4f6 765my $openssldir="";
967d95f0 766my $exe_ext="";
122276a7 767my $install_prefix= "$ENV{'INSTALL_PREFIX'}";
cbfb39d1 768my $cross_compile_prefix="";
166c9cb0 769my $fipslibdir="/usr/local/ssl/fips-2.0/lib/";
1ab2f7f1 770my $nofipscanistercheck=0;
1ab2f7f1 771my $baseaddr="0xFB00000";
5f8d5c96
BM
772my $no_threads=0;
773my $threads=0;
c9a112f5
BM
774my $no_shared=0; # but "no-shared" is default
775my $zlib=1; # but "no-zlib" is default
47bbaa5b 776my $no_rfc3779=0;
1641cb60 777my $no_asm=0;
bc2aadad 778my $no_dso=0;
987bebaf 779my $no_gmp=0;
f5d7a031 780my @skip=();
42ba5d23 781my $Makefile="Makefile";
1641cb60 782my $des_locl="crypto/des/des_locl.h";
dee502be
RL
783my $des ="include/openssl/des.h";
784my $bn ="include/openssl/bn.h";
785my $md2 ="include/openssl/md2.h";
786my $rc4 ="include/openssl/rc4.h";
1641cb60 787my $rc4_locl="crypto/rc4/rc4_locl.h";
dee502be
RL
788my $idea ="include/openssl/idea.h";
789my $rc2 ="include/openssl/rc2.h";
1641cb60
BL
790my $bf ="crypto/bf/bf_locl.h";
791my $bn_asm ="bn_asm.o";
792my $des_enc="des_enc.o fcrypt_b.o";
874a3757 793my $aes_enc="aes_core.o aes_cbc.o";
1641cb60
BL
794my $bf_enc ="bf_enc.o";
795my $cast_enc="c_enc.o";
28754624 796my $rc4_enc="rc4_enc.o rc4_skey.o";
1641cb60 797my $rc5_enc="rc5_enc.o";
6a8517f2 798my $cmll_enc="camellia.o cmll_misc.o cmll_cbc.o";
2613c1fa 799my $processor="";
0396479d 800my $default_ranlib;
99aab161 801my $perl;
1ab2f7f1 802my $fips=0;
99aab161 803
8b527be2
RL
804# Explicitelly known options that are possible to disable. They can
805# be regexps, and will be used like this: /^no-${option}$/
806# For developers: keep it sorted alphabetically
807
808my @disablables = (
809 "aes",
810 "asm",
811 "bf",
812 "camellia",
813 "capieng",
814 "cast",
815 "cmac",
816 "cms",
817 "comp",
818 "ct",
819 "deprecated",
820 "des",
821 "dgram",
822 "dh",
823 "dsa",
824 "dso",
825 "dtls1?",
826 "dynamic[-_]engine",
827 "ec",
828 "ec2m",
829 "ec_nistp_64_gcc_128",
830 "engine",
831 "err", # Really???
832 "gmp",
833 "gost",
834 "heartbeats",
835 "hmac",
836 "hw(-.+)?",
837 "idea",
838 "jpake",
839 "locking", # Really???
840 "md2",
841 "md4",
842 "md5",
843 "mdc2",
844 "md[-_]ghost94",
845 "nextprotoneg",
846 "ocb",
847 "ocsp",
848 "posix-io",
849 "psk",
850 "rc2",
851 "rc4",
852 "rc5",
853 "rdrand",
854 "rfc3779",
855 "rijndael", # Old AES name
856 "rmd160",
857 "rsa",
858 "scrypt",
859 "sct",
860 "sctp",
861 "seed",
862 "sha",
863 "shared",
864 "sock",
865 "srp",
866 "srtp",
867 "sse2",
868 "ssl",
869 "ssl3",
870 "ssl3-method",
871 "ssl-trace",
872 "static-engine",
873 "stdio",
874 "store",
875 "threads",
876 "tls",
877 "tls1",
878 "unit-test",
879 "whirlpool",
880 "zlib",
881 "zlib-dynamic",
882 );
883
c9a112f5
BM
884# All of the following is disabled by default (RC5 was enabled before 0.9.8):
885
7a762197 886my %disabled = ( # "what" => "comment" [or special keyword "experimental"]
07c4c14c 887 "deprecated" => "default",
7d8bb912 888 "ec_nistp_64_gcc_128" => "default",
987bebaf 889 "gmp" => "default",
7d8bb912
BM
890 "jpake" => "experimental",
891 "md2" => "default",
892 "rc5" => "default",
7e159e01 893 "sctp" => "default",
7d8bb912 894 "shared" => "default",
93ab9e42 895 "ssl-trace" => "default",
ae3b4f23 896 "store" => "experimental",
e0fc7961 897 "unit-test" => "default",
7d8bb912
BM
898 "zlib" => "default",
899 "zlib-dynamic" => "default"
900 );
7a762197 901my @experimental = ();
c9a112f5 902
7a762197
BM
903# This is what $depflags will look like with the above defaults
904# (we need this to see if we should advise the user to run "make depend"):
47bbaa5b 905my $default_depflags = " -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_EC_NISTP_64_GCC_128 -DOPENSSL_NO_GMP -DOPENSSL_NO_JPAKE -DOPENSSL_NO_MD2 -DOPENSSL_NO_RC5 -DOPENSSL_NO_SCTP -DOPENSSL_NO_SSL_TRACE -DOPENSSL_NO_STORE -DOPENSSL_NO_UNIT_TEST";
7a762197
BM
906
907# Explicit "no-..." options will be collected in %disabled along with the defaults.
908# To remove something from %disabled, use "enable-foo" (unless it's experimental).
909# For symmetry, "disable-foo" is a synonym for "no-foo".
910
911# For features called "experimental" here, a more explicit "experimental-foo" is needed to enable.
912# We will collect such requests in @experimental.
913# To avoid accidental use of experimental features, applications will have to use -DOPENSSL_EXPERIMENTAL_FOO.
ab185b60
BM
914
915
d0590fe6 916my $no_sse2=0;
b6e4dac2 917
462ba4f6 918&usage if ($#ARGV < 0);
d02b48c6 919
c59cb511
RL
920my $flags;
921my $depflags;
7a762197 922my $openssl_experimental_defines;
c59cb511
RL
923my $openssl_algorithm_defines;
924my $openssl_thread_defines;
cf1b7d96 925my $openssl_sys_defines="";
c59cb511
RL
926my $openssl_other_defines;
927my $libs;
928my $target;
929my $options;
451dc18f 930my $make_depend=0;
f9b3bff6 931my %withargs=();
9e43c6b5 932my $build_prefix = "release_";
c59cb511
RL
933
934my @argvcopy=@ARGV;
935my $argvstring="";
936my $argv_unprocessed=1;
937
938while($argv_unprocessed)
d02b48c6 939 {
c59cb511
RL
940 $flags="";
941 $depflags="";
7a762197 942 $openssl_experimental_defines="";
c59cb511
RL
943 $openssl_algorithm_defines="";
944 $openssl_thread_defines="";
cf1b7d96 945 $openssl_sys_defines="";
c59cb511
RL
946 $openssl_other_defines="";
947 $libs="";
948 $target="";
949 $options="";
c59cb511
RL
950
951 $argv_unprocessed=0;
952 $argvstring=join(' ',@argvcopy);
953
954PROCESS_ARGS:
16b6081e 955 {
489eb740 956 my %unsupported_options = ();
c59cb511 957 foreach (@argvcopy)
f5d7a031 958 {
c59cb511 959 s /^-no-/no-/; # some people just can't read the instructions
c9a112f5
BM
960
961 # rewrite some options in "enable-..." form
962 s /^-?-?shared$/enable-shared/;
7e159e01 963 s /^sctp$/enable-sctp/;
c9a112f5
BM
964 s /^threads$/enable-threads/;
965 s /^zlib$/enable-zlib/;
966 s /^zlib-dynamic$/enable-zlib-dynamic/;
967
8b527be2
RL
968 if (/^(no|disable|enable|experimental)-(.+)$/)
969 {
970 my $word = $2;
971 if (!grep { $word =~ /^${_}$/ } @disablables)
972 {
489eb740 973 $unsupported_options{$_} = 1;
8b527be2
RL
974 next;
975 }
976 }
c9a112f5 977 if (/^no-(.+)$/ || /^disable-(.+)$/)
d02b48c6 978 {
7a762197 979 if (!($disabled{$1} eq "experimental"))
e172d60d 980 {
7a762197
BM
981 if ($1 eq "ssl")
982 {
7a762197
BM
983 $disabled{"ssl3"} = "option(ssl)";
984 }
985 elsif ($1 eq "tls")
986 {
987 $disabled{"tls1"} = "option(tls)"
988 }
3881d810
DSH
989 elsif ($1 eq "ssl3-method")
990 {
991 $disabled{"ssl3-method"} = "option(ssl)";
992 $disabled{"ssl3"} = "option(ssl)";
993 }
7a762197
BM
994 else
995 {
996 $disabled{$1} = "option";
997 }
fce0ba5f 998 }
7a762197
BM
999 }
1000 elsif (/^enable-(.+)$/ || /^experimental-(.+)$/)
1001 {
1002 my $algo = $1;
1003 if ($disabled{$algo} eq "experimental")
b6e4dac2 1004 {
7a762197
BM
1005 die "You are requesting an experimental feature; please say 'experimental-$algo' if you are sure\n"
1006 unless (/^experimental-/);
1007 push @experimental, $algo;
b6e4dac2 1008 }
7a762197 1009 delete $disabled{$algo};
c9a112f5 1010
7a762197 1011 $threads = 1 if ($algo eq "threads");
c9a112f5
BM
1012 }
1013 elsif (/^--test-sanity$/)
1014 {
1015 exit(&test_sanity());
d02b48c6 1016 }
9e43c6b5 1017 elsif (/^--strict-warnings$/)
0c28f277
DSH
1018 {
1019 $strict_warnings = 1;
1020 }
9e43c6b5
RL
1021 elsif (/^--debug$/)
1022 {
1023 $build_prefix = "debug_";
1024 }
1025 elsif (/^--release$/)
1026 {
1027 $build_prefix = "release_";
1028 }
c59cb511 1029 elsif (/^reconfigure/ || /^reconf/)
d02b48c6 1030 {
c59cb511
RL
1031 if (open(IN,"<$Makefile"))
1032 {
1033 while (<IN>)
1034 {
67475a7e 1035 chomp;
c59cb511
RL
1036 if (/^CONFIGURE_ARGS=(.*)/)
1037 {
1038 $argvstring=$1;
1039 @argvcopy=split(' ',$argvstring);
1040 die "Incorrect data to reconfigure, please do a normal configuration\n"
1041 if (grep(/^reconf/,@argvcopy));
1042 print "Reconfiguring with: $argvstring\n";
1043 $argv_unprocessed=1;
1044 close(IN);
1045 last PROCESS_ARGS;
1046 }
1047 }
1048 close(IN);
1049 }
1050 die "Insufficient data to reconfigure, please do a normal configuration\n";
d02b48c6 1051 }
c59cb511 1052 elsif (/^386$/)
c9a112f5 1053 { $processor=386; }
9fdb2cc5
DSH
1054 elsif (/^fips$/)
1055 {
1056 $fips=1;
7d8bb912 1057 }
c59cb511 1058 elsif (/^rsaref$/)
3eb0ed6d 1059 {
ccb9643f
RL
1060 # No RSAref support any more since it's not needed.
1061 # The check for the option is there so scripts aren't
1062 # broken
462ba4f6 1063 }
1ab2f7f1
DSH
1064 elsif (/^nofipscanistercheck$/)
1065 {
1066 $fips = 1;
1067 $nofipscanistercheck = 1;
1068 }
c59cb511 1069 elsif (/^[-+]/)
462ba4f6 1070 {
800a4a70 1071 if (/^--prefix=(.*)$/)
c59cb511
RL
1072 {
1073 $prefix=$1;
1074 }
6727565a
DSH
1075 elsif (/^--libdir=(.*)$/)
1076 {
1077 $libdir=$1;
1078 }
c59cb511
RL
1079 elsif (/^--openssldir=(.*)$/)
1080 {
1081 $openssldir=$1;
1082 }
1083 elsif (/^--install.prefix=(.*)$/)
1084 {
1085 $install_prefix=$1;
1086 }
1291dfde 1087 elsif (/^--with-zlib-lib=(.*)$/)
ad2695b1 1088 {
1291dfde
DSH
1089 $withargs{"zlib-lib"}=$1;
1090 }
1091 elsif (/^--with-zlib-include=(.*)$/)
1092 {
1093 $withargs{"zlib-include"}="-I$1";
ad2695b1 1094 }
cc8bd545
DSH
1095 elsif (/^--with-fipslibdir=(.*)$/)
1096 {
1097 $fipslibdir="$1/";
1098 }
1099 elsif (/^--with-baseaddr=(.*)$/)
1100 {
1101 $baseaddr="$1";
1102 }
cbfb39d1
AP
1103 elsif (/^--cross-compile-prefix=(.*)$/)
1104 {
1105 $cross_compile_prefix=$1;
1106 }
f09e7ca9
RS
1107 elsif (/^--config=(.*)$/)
1108 {
1109 read_config $1;
1110 }
800a4a70 1111 elsif (/^-[lL](.*)$/ or /^-Wl,/)
c59cb511 1112 {
800a4a70
AP
1113 $libs.=$_." ";
1114 }
1115 else # common if (/^[-+]/), just pass down...
1116 {
1117 $_ =~ s/%([0-9a-f]{1,2})/chr(hex($1))/gei;
1118 $flags.=$_." ";
c59cb511 1119 }
3eb0ed6d 1120 }
c59cb511 1121 elsif ($_ =~ /^([^:]+):(.+)$/)
e5f3045f 1122 {
c59cb511
RL
1123 eval "\$table{\$1} = \"$2\""; # allow $xxx constructs in the string
1124 $target=$1;
e5f3045f 1125 }
d02b48c6
RE
1126 else
1127 {
a761b89d 1128 die "target already defined - $target (offending arg: $_)\n" if ($target ne "");
c59cb511
RL
1129 $target=$_;
1130 }
c9a112f5
BM
1131
1132 unless ($_ eq $target || /^no-/ || /^disable-/)
1133 {
1134 # "no-..." follows later after implied disactivations
1135 # have been derived. (Don't take this too seroiusly,
1136 # we really only write OPTIONS to the Makefile out of
1137 # nostalgia.)
1138
1139 if ($options eq "")
1140 { $options = $_; }
1141 else
1142 { $options .= " ".$_; }
d02b48c6 1143 }
fbabb752 1144 }
489eb740
RL
1145
1146 if (keys %unsupported_options)
1147 {
1148 die "***** Unsupported options: ",
1149 join(", ", keys %unsupported_options), "\n";
1150 }
fbabb752 1151 }
16b6081e 1152 }
b6e4dac2 1153
b6e4dac2 1154
c9a112f5
BM
1155if ($processor eq "386")
1156 {
1157 $disabled{"sse2"} = "forced";
1158 }
1159
c9a112f5
BM
1160if (!defined($disabled{"zlib-dynamic"}))
1161 {
1162 # "zlib-dynamic" was specifically enabled, so enable "zlib"
1163 delete $disabled{"zlib"};
1164 }
b6e4dac2 1165
c9a112f5
BM
1166if (defined($disabled{"rijndael"}))
1167 {
1168 $disabled{"aes"} = "forced";
1169 }
1170if (defined($disabled{"des"}))
1171 {
1172 $disabled{"mdc2"} = "forced";
1173 }
1174if (defined($disabled{"ec"}))
b6e4dac2 1175 {
c9a112f5
BM
1176 $disabled{"ecdsa"} = "forced";
1177 $disabled{"ecdh"} = "forced";
b6e4dac2
RL
1178 }
1179
c9a112f5
BM
1180# SSL 3.0 and TLS requires MD5 and SHA and either RSA or DSA+DH
1181if (defined($disabled{"md5"}) || defined($disabled{"sha"})
1182 || (defined($disabled{"rsa"})
1183 && (defined($disabled{"dsa"}) || defined($disabled{"dh"}))))
b6e4dac2 1184 {
c9a112f5
BM
1185 $disabled{"ssl3"} = "forced";
1186 $disabled{"tls1"} = "forced";
b6e4dac2
RL
1187 }
1188
c9a112f5 1189
d4f0339c 1190if (defined($disabled{"ec"}) || defined($disabled{"dsa"})
984d6c60 1191 || defined($disabled{"dh"}) || defined($disabled{"stdio"}))
ef236ec3
DSH
1192 {
1193 $disabled{"gost"} = "forced";
1194 }
1195
edc032b5 1196
436a376b
BM
1197if ($target eq "TABLE") {
1198 foreach $target (sort keys %table) {
aaf878cc 1199 print_table_entry($target, "TABLE");
436a376b 1200 }
436a376b
BM
1201 exit 0;
1202}
1203
10a926c1
UM
1204if ($target eq "LIST") {
1205 foreach (sort keys %table) {
1206 print;
1207 print "\n";
1208 }
1209 exit 0;
1210}
1211
aaf878cc
RL
1212if ($target eq "HASH") {
1213 print "%table = (\n";
1214 foreach (sort keys %table) {
1215 print_table_entry($_, "HASH");
1216 }
1217 exit 0;
1218}
1219
49e04548
RL
1220if ($target =~ m/^CygWin32(-.*)$/) {
1221 $target = "Cygwin".$1;
1222}
1223
c59cb511
RL
1224print "Configuring for $target\n";
1225
9e43c6b5 1226# Support for legacy targets having a name starting with 'debug-'
aaf878cc 1227my ($d, $t) = $target =~ m/^(debug-)?(.*)$/;
aaf878cc 1228if ($d) {
9e43c6b5 1229 $build_prefix = "debug_";
aaf878cc
RL
1230
1231 # If we do not find debug-foo in the table, the target is set to foo,
b1245529 1232 # but only if the foo target has a noon-empty debug_cflags or debug_lflags
aaf878cc 1233 # attribute.
b1245529
RL
1234 if (!$table{$target} && ($table{$t}->{debug_cflags}
1235 || $table{$t}->{debug_lflags})) {
aaf878cc
RL
1236 $target = $t;
1237 }
1238}
1239
9e43c6b5
RL
1240&usage if (!defined($table{$target})
1241 || $table{$target}->{template}
1242 || ($build_prefix eq "debug_"
21ab1237 1243 && $target !~ /^debug-/
9e43c6b5
RL
1244 && !($table{$target}->{debug_cflags}
1245 || $table{$target}->{debug_lflags})));
462ba4f6 1246
9fdb2cc5
DSH
1247if ($fips)
1248 {
1249 delete $disabled{"shared"} if ($disabled{"shared"} eq "default");
1250 }
c9a112f5
BM
1251
1252foreach (sort (keys %disabled))
1253 {
1254 $options .= " no-$_";
1255
1256 printf " no-%-12s %-10s", $_, "[$disabled{$_}]";
1257
1258 if (/^dso$/)
1259 { $no_dso = 1; }
1260 elsif (/^threads$/)
1261 { $no_threads = 1; }
1262 elsif (/^shared$/)
1263 { $no_shared = 1; }
1264 elsif (/^zlib$/)
1265 { $zlib = 0; }
fbf002bb
DSH
1266 elsif (/^static-engine$/)
1267 { }
c9a112f5
BM
1268 elsif (/^zlib-dynamic$/)
1269 { }
c9a112f5
BM
1270 elsif (/^sse2$/)
1271 { $no_sse2 = 1; }
1272 else
1273 {
1274 my ($ALGO, $algo);
30fafdeb 1275 ($ALGO = $algo = $_) =~ tr/[\-a-z]/[_A-Z]/;
c9a112f5
BM
1276
1277 if (/^asm$/ || /^err$/ || /^hw$/ || /^hw-/)
1278 {
1279 $openssl_other_defines .= "#define OPENSSL_NO_$ALGO\n";
1280 print " OPENSSL_NO_$ALGO";
fce0ba5f 1281
5df70a9e
AP
1282 if (/^err$/) { $flags .= "-DOPENSSL_NO_ERR "; }
1283 elsif (/^asm$/) { $no_asm = 1; }
c9a112f5
BM
1284 }
1285 else
1286 {
2a4af947
AP
1287 ($ALGO,$algo) = ("RMD160","rmd160") if ($algo eq "ripemd");
1288
c9a112f5
BM
1289 $openssl_algorithm_defines .= "#define OPENSSL_NO_$ALGO\n";
1290 print " OPENSSL_NO_$ALGO";
1291
e36827f6
MC
1292 push @skip, $algo;
1293 # fix-up crypto/directory name(s)
1294 $skip[$#skip]="whrlpool" if $algo eq "whirlpool";
1295 $skip[$#skip]="ripemd" if $algo eq "rmd160";
2a4af947 1296
e36827f6 1297 print " (skip dir)";
ab185b60 1298
e36827f6 1299 $depflags .= " -DOPENSSL_NO_$ALGO";
c9a112f5
BM
1300 }
1301 }
1302
1303 print "\n";
1304 }
1305
7a762197 1306my $exp_cflags = "";
ccc5784e 1307
7a762197
BM
1308foreach (sort @experimental)
1309 {
1310 my $ALGO;
1311 ($ALGO = $_) =~ tr/[a-z]/[A-Z]/;
1312
1313 # opensslconf.h will set OPENSSL_NO_... unless OPENSSL_EXPERIMENTAL_... is defined
1314 $openssl_experimental_defines .= "#define OPENSSL_NO_$ALGO\n";
1315 $exp_cflags .= " -DOPENSSL_EXPERIMENTAL_$ALGO";
1316 }
c9a112f5 1317
4d8743f4 1318my $IsMK1MF=scalar grep /^$target$/,@MK1MF_Builds;
a1e464f9 1319
9be54812 1320$exe_ext=".exe" if ($target eq "Cygwin" || $target eq "DJGPP" || $target =~ /^mingw/);
eef0c1f3 1321$exe_ext=".nlm" if ($target =~ /netware/);
d0590fe6 1322$exe_ext=".pm" if ($target =~ /vos/);
5496cd3e 1323$openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq "");
e5f3045f 1324$prefix=$openssldir if $prefix eq "";
462ba4f6 1325
28a80034
RL
1326$default_ranlib= &which("ranlib") or $default_ranlib="true";
1327$perl=$ENV{'PERL'} or $perl=&which("perl5") or $perl=&which("perl")
1328 or $perl="perl";
dafd8333 1329my $make = $ENV{'MAKE'} || "make";
28a80034 1330
34775923 1331$cross_compile_prefix=$ENV{'CROSS_COMPILE'} if $cross_compile_prefix eq "";
f99f41cf 1332
462ba4f6 1333chop $openssldir if $openssldir =~ /\/$/;
bc645199 1334chop $prefix if $prefix =~ /.\/$/;
462ba4f6 1335
e5f3045f 1336$openssldir=$prefix . "/ssl" if $openssldir eq "";
451dc18f 1337$openssldir=$prefix . "/" . $openssldir if $openssldir !~ /(^\/|^[a-zA-Z]:[\\\/])/;
d02b48c6 1338
efadf60f 1339
4d8743f4 1340print "IsMK1MF=$IsMK1MF\n";
efadf60f 1341
7f625320 1342# Allow environment CC to override compiler...
9b956bec 1343my $cc = $ENV{CC} || $table{$target}->{cc};
aaf878cc 1344
b1245529 1345# For cflags and lflags, add the debug_ or release_ attributes
aaf878cc
RL
1346# Do it in such a way that no spurious space is appended (hence the grep).
1347my $cflags = join(" ",
9b956bec
RL
1348 grep { $_ } ($table{$target}->{cflags},
1349 $table{$target}->{$build_prefix."cflags"}));
aaf878cc 1350my $lflags = join(" ",
9b956bec
RL
1351 grep { $_ } ($table{$target}->{lflags},
1352 $table{$target}->{$build_prefix."lflags"}));
1353
1354my $unistd = $table{$target}->{unistd};
1355my $thread_cflag = $table{$target}->{thread_cflag};
1356my $sys_id = $table{$target}->{sys_id};
1357my $bn_ops = $table{$target}->{bn_ops};
1358my $cpuid_obj = $table{$target}->{cpuid_obj};
1359my $bn_obj = $table{$target}->{bn_obj};
1360my $ec_obj = $table{$target}->{ec_obj};
1361my $des_obj = $table{$target}->{des_obj};
1362my $aes_obj = $table{$target}->{aes_obj};
1363my $bf_obj = $table{$target}->{bf_obj};
1364my $md5_obj = $table{$target}->{md5_obj};
1365my $sha1_obj = $table{$target}->{sha1_obj};
1366my $cast_obj = $table{$target}->{cast_obj};
1367my $rc4_obj = $table{$target}->{rc4_obj};
1368my $rmd160_obj = $table{$target}->{rmd160_obj};
1369my $rc5_obj = $table{$target}->{rc5_obj};
1370my $wp_obj = $table{$target}->{wp_obj};
1371my $cmll_obj = $table{$target}->{cmll_obj};
1372my $modes_obj = $table{$target}->{modes_obj};
1373my $engines_obj = $table{$target}->{engines_obj};
1374my $perlasm_scheme = $table{$target}->{perlasm_scheme};
1375my $dso_scheme = $table{$target}->{dso_scheme};
1376my $shared_target = $table{$target}->{shared_target};
1377my $shared_cflag = $table{$target}->{shared_cflag};
1378my $shared_ldflag = $table{$target}->{shared_ldflag};
1379my $shared_extension = $table{$target}->{shared_extension};
1380my $ranlib = $ENV{'RANLIB'} || $table{$target}->{ranlib};
970097ae 1381my $ar = $ENV{'AR'} || "ar";
9b956bec
RL
1382my $arflags = $table{$target}->{arflags};
1383my $multilib = $table{$target}->{multilib};
d0d046ec 1384
b730b03f
AP
1385# if $prefix/lib$multilib is not an existing directory, then
1386# assume that it's not searched by linker automatically, in
1387# which case adding $multilib suffix causes more grief than
1388# we're ready to tolerate, so don't...
1389$multilib="" if !-d "$prefix/lib$multilib";
1390
6a9d28f9
AP
1391$libdir="lib$multilib" if $libdir eq "";
1392
7a762197
BM
1393$cflags = "$cflags$exp_cflags";
1394
d6c76457
AP
1395# '%' in $lflags is used to split flags to "pre-" and post-flags
1396my ($prelflags,$postlflags)=split('%',$lflags);
1397if (defined($postlflags)) { $lflags=$postlflags; }
1398else { $lflags=$prelflags; undef $prelflags; }
1399
cbecd29a
AP
1400if ($target =~ /^mingw/ && `$cc --target-help 2>&1` !~ m/\-mno\-cygwin/m)
1401 {
1402 $cflags =~ s/\-mno\-cygwin\s*//;
1403 $shared_ldflag =~ s/\-mno\-cygwin\s*//;
1404 }
1405
63d8834c
AP
1406if ($target =~ /linux.*\-mips/ && !$no_asm && $flags !~ /\-m(ips|arch=)/) {
1407 # minimally required architecture flags for assembly modules
1408 $cflags="-mips2 $cflags" if ($target =~ /mips32/);
1409 $cflags="-mips3 $cflags" if ($target =~ /mips64/);
1410}
1411
2964ba8c 1412my $no_shared_warn=0;
14bcdb08 1413my $no_user_cflags=0;
2964ba8c 1414
14bcdb08
AP
1415if ($flags ne "") { $cflags="$flags$cflags"; }
1416else { $no_user_cflags=1; }
5f8d5c96 1417
bc2aadad
GT
1418# The DSO code currently always implements all functions so that no
1419# applications will have to worry about that from a compilation point
1420# of view. However, the "method"s may return zero unless that platform
1421# has support compiled in for them. Currently each method is enabled
1422# by a define "DSO_<name>" ... we translate the "dso_scheme" config
1423# string entry into using the following logic;
eca57e92 1424my $dso_cflags;
bc2aadad
GT
1425if (!$no_dso && $dso_scheme ne "")
1426 {
9ec0126e 1427 $dso_scheme =~ tr/[a-z]/[A-Z]/;
bc2aadad
GT
1428 if ($dso_scheme eq "DLFCN")
1429 {
eca57e92 1430 $dso_cflags = "-DDSO_DLFCN -DHAVE_DLFCN_H";
bc2aadad
GT
1431 }
1432 elsif ($dso_scheme eq "DLFCN_NO_H")
1433 {
eca57e92 1434 $dso_cflags = "-DDSO_DLFCN";
bc2aadad
GT
1435 }
1436 else
1437 {
eca57e92 1438 $dso_cflags = "-DDSO_$dso_scheme";
bc2aadad 1439 }
eca57e92 1440 $cflags = "$dso_cflags $cflags";
bc2aadad 1441 }
9ec0126e 1442
5f8d5c96 1443my $thread_cflags;
fb044c59 1444my $thread_defines;
5f8d5c96
BM
1445if ($thread_cflag ne "(unknown)" && !$no_threads)
1446 {
1447 # If we know how to do it, support threads by default.
1448 $threads = 1;
1449 }
14bcdb08 1450if ($thread_cflag eq "(unknown)" && $threads)
5f8d5c96 1451 {
14bcdb08
AP
1452 # If the user asked for "threads", [s]he is also expected to
1453 # provide any system-dependent compiler options that are
1454 # necessary.
1455 if ($no_user_cflags)
1456 {
1457 print "You asked for multi-threading support, but didn't\n";
1458 print "provide any system-specific compiler options\n";
1459 exit(1);
1460 }
cf1b7d96
RL
1461 $thread_cflags="-DOPENSSL_THREADS $cflags" ;
1462 $thread_defines .= "#define OPENSSL_THREADS\n";
5f8d5c96
BM
1463 }
1464else
1465 {
cf1b7d96
RL
1466 $thread_cflags="-DOPENSSL_THREADS $thread_cflag $cflags";
1467 $thread_defines .= "#define OPENSSL_THREADS\n";
a7b991bd
BM
1468# my $def;
1469# foreach $def (split ' ',$thread_cflag)
1470# {
1471# if ($def =~ s/^-D// && $def !~ /^_/)
1472# {
1473# $thread_defines .= "#define $def\n";
1474# }
1475# }
fce0ba5f 1476 }
5f8d5c96 1477
95649972 1478$lflags="$libs$lflags" if ($libs ne "");
d02b48c6 1479
dfeab068
RE
1480if ($no_asm)
1481 {
6019cdd3 1482 $cpuid_obj=$bn_obj=$ec_obj=
ac71d81e 1483 $des_obj=$aes_obj=$bf_obj=$cast_obj=$rc4_obj=$rc5_obj=$cmll_obj=
ed28aef8 1484 $modes_obj=$sha1_obj=$md5_obj=$rmd160_obj=$wp_obj=$engines_obj="";
9fdb2cc5
DSH
1485 $cflags=~s/\-D[BL]_ENDIAN// if ($fips);
1486 $thread_cflags=~s/\-D[BL]_ENDIAN// if ($fips);
dfeab068 1487 }
03bc500a
DSH
1488elsif (defined($disabled{ec2m}))
1489 {
1490 $bn_obj =~ s/\w+-gf2m.o//;
1491 }
dfeab068 1492
6f7ac8e1
AP
1493if (!$no_shared)
1494 {
1495 $cast_obj=""; # CAST assembler is not PIC
1496 }
1497
5f8d5c96
BM
1498if ($threads)
1499 {
14bcdb08 1500 $cflags=$thread_cflags;
e452de9d
RL
1501 $openssl_thread_defines .= $thread_defines;
1502 }
1503
1504if ($zlib)
1505 {
1506 $cflags = "-DZLIB $cflags";
c9a112f5
BM
1507 if (defined($disabled{"zlib-dynamic"}))
1508 {
cc7399e7
DSH
1509 if (defined($withargs{"zlib-lib"}))
1510 {
1511 $lflags = "$lflags -L" . $withargs{"zlib-lib"} . " -lz";
1512 }
1513 else
1514 {
1515 $lflags = "$lflags -lz";
1516 }
c9a112f5
BM
1517 }
1518 else
1519 {
1520 $cflags = "-DZLIB_SHARED $cflags";
1521 }
5f8d5c96
BM
1522 }
1523
c0fc27f8
MC
1524#Build the library with OPENSSL_USE_DEPRECATED if deprecation is not disabled
1525if(!defined($disabled{"deprecated"}))
1526 {
1527 $cflags = "-DOPENSSL_USE_DEPRECATED $cflags";
1528 }
07c4c14c 1529
f4316c36 1530# You will find shlib_mark1 and shlib_mark2 explained in Makefile.org
a22fb399 1531my $shared_mark = "";
6f7ac8e1
AP
1532if ($shared_target eq "")
1533 {
9fdb2cc5 1534 $no_shared_warn = 1 if !$no_shared && !$fips;
6f7ac8e1
AP
1535 $no_shared = 1;
1536 }
1537if (!$no_shared)
b436a982 1538 {
a22fb399
RL
1539 if ($shared_cflag ne "")
1540 {
28e276f1 1541 $cflags = "$shared_cflag -DOPENSSL_PIC $cflags";
a22fb399 1542 }
d2dcf4f4 1543 }
b436a982 1544
fbf002bb 1545if (!$IsMK1MF)
ecd45314 1546 {
4c1a6e00 1547 # add {no-}static-engine to options to allow mkdef.pl to work without extra arguments
fbf002bb
DSH
1548 if ($no_shared)
1549 {
1550 $openssl_other_defines.="#define OPENSSL_NO_DYNAMIC_ENGINE\n";
4c1a6e00 1551 $options.=" static-engine";
fbf002bb
DSH
1552 }
1553 else
1554 {
1555 $openssl_other_defines.="#define OPENSSL_NO_STATIC_ENGINE\n";
4c1a6e00 1556 $options.=" no-static-engine";
fbf002bb 1557 }
6cb68620 1558 }
ecd45314 1559
beef7145 1560$cpuid_obj.=" uplink.o uplink-x86.o" if ($cflags =~ /\-DOPENSSL_USE_APPLINK/);
1187ee7d 1561
c313e32a
AP
1562#
1563# Platform fix-ups
1564#
1565if ($target =~ /\-icc$/) # Intel C compiler
1a979201 1566 {
1187ee7d
AP
1567 my $iccver=0;
1568 if (open(FD,"$cc -V 2>&1 |"))
1569 {
1570 while(<FD>) { $iccver=$1 if (/Version ([0-9]+)\./); }
1571 close(FD);
1572 }
1a979201
AP
1573 if ($iccver>=8)
1574 {
cf5ecc3e 1575 $cflags=~s/\-KPIC/-fPIC/;
1a979201
AP
1576 # Eliminate unnecessary dependency from libirc.a. This is
1577 # essential for shared library support, as otherwise
1578 # apps/openssl can end up in endless loop upon startup...
1579 $cflags.=" -Dmemcpy=__builtin_memcpy -Dmemset=__builtin_memset";
1580 }
1187ee7d
AP
1581 if ($iccver>=9)
1582 {
cf5ecc3e
AP
1583 $lflags.=" -i-static";
1584 $lflags=~s/\-no_cpprt/-no-cpprt/;
1187ee7d
AP
1585 }
1586 if ($iccver>=10)
1587 {
cf5ecc3e
AP
1588 $lflags=~s/\-i\-static/-static-intel/;
1589 }
1590 if ($iccver>=11)
1591 {
1592 $cflags.=" -no-intel-extensions"; # disable Cilk
1593 $lflags=~s/\-no\-cpprt/-no-cxxlib/;
1187ee7d 1594 }
1a979201
AP
1595 }
1596
c313e32a
AP
1597# Unlike other OSes (like Solaris, Linux, Tru64, IRIX) BSD run-time
1598# linkers (tested OpenBSD, NetBSD and FreeBSD) "demand" RPATH set on
1599# .so objects. Apparently application RPATH is not global and does
1600# not apply to .so linked with other .so. Problem manifests itself
1601# when libssl.so fails to load libcrypto.so. One can argue that we
1602# should engrave this into Makefile.shared rules or into BSD-* config
1603# lines above. Meanwhile let's try to be cautious and pass -rpath to
1604# linker only when --prefix is not /usr.
1605if ($target =~ /^BSD\-/)
1606 {
1607 $shared_ldflag.=" -Wl,-rpath,\$(LIBRPATH)" if ($prefix !~ m|^/usr[/]*$|);
1608 }
1609
cf1b7d96
RL
1610if ($sys_id ne "")
1611 {
68b00c23
RS
1612 #$cflags="-DOPENSSL_SYS_$sys_id $cflags";
1613 $openssl_sys_defines="#define OPENSSL_SYS_$sys_id\n";
cf1b7d96
RL
1614 }
1615
0396479d
BM
1616if ($ranlib eq "")
1617 {
1618 $ranlib = $default_ranlib;
1619 }
1620
1750ebcb
DSH
1621#my ($bn1)=split(/\s+/,$bn_obj);
1622#$bn1 = "" unless defined $bn1;
1623#$bn1=$bn_asm unless ($bn1 =~ /\.o$/);
1624#$bn_obj="$bn1";
1625
c9a112f5 1626$cpuid_obj="" if ($processor eq "386");
f8c469de 1627
1750ebcb 1628$bn_obj = $bn_asm unless $bn_obj ne "";
d05a4745
BM
1629# bn-586 is the only one implementing bn_*_part_words
1630$cflags.=" -DOPENSSL_BN_ASM_PART_WORDS" if ($bn_obj =~ /bn-586/);
4287ade5 1631$cflags.=" -DOPENSSL_IA32_SSE2" if (!$no_sse2 && $bn_obj =~ /86/);
dfeab068 1632
d05a4745 1633$cflags.=" -DOPENSSL_BN_ASM_MONT" if ($bn_obj =~ /-mont/);
361512da 1634$cflags.=" -DOPENSSL_BN_ASM_MONT5" if ($bn_obj =~ /-mont5/);
925596f8 1635$cflags.=" -DOPENSSL_BN_ASM_GF2m" if ($bn_obj =~ /-gf2m/);
5ac7bde7 1636
1ab2f7f1
DSH
1637if ($fips)
1638 {
1639 $openssl_other_defines.="#define OPENSSL_FIPS\n";
1ab2f7f1
DSH
1640 }
1641
b2dba9bf 1642$cpuid_obj="mem_clr.o" unless ($cpuid_obj =~ /\.o$/);
58964a49
RE
1643$des_obj=$des_enc unless ($des_obj =~ /\.o$/);
1644$bf_obj=$bf_enc unless ($bf_obj =~ /\.o$/);
1645$cast_obj=$cast_enc unless ($cast_obj =~ /\.o$/);
1646$rc4_obj=$rc4_enc unless ($rc4_obj =~ /\.o$/);
1647$rc5_obj=$rc5_enc unless ($rc5_obj =~ /\.o$/);
1648if ($sha1_obj =~ /\.o$/)
1649 {
1650# $sha1_obj=$sha1_enc;
d0590fe6
AP
1651 $cflags.=" -DSHA1_ASM" if ($sha1_obj =~ /sx86/ || $sha1_obj =~ /sha1/);
1652 $cflags.=" -DSHA256_ASM" if ($sha1_obj =~ /sha256/);
1653 $cflags.=" -DSHA512_ASM" if ($sha1_obj =~ /sha512/);
69216cc5 1654 if ($sha1_obj =~ /sse2/)
d0590fe6
AP
1655 { if ($no_sse2)
1656 { $sha1_obj =~ s/\S*sse2\S+//; }
1657 elsif ($cflags !~ /OPENSSL_IA32_SSE2/)
1658 { $cflags.=" -DOPENSSL_IA32_SSE2"; }
1659 }
58964a49
RE
1660 }
1661if ($md5_obj =~ /\.o$/)
1662 {
1663# $md5_obj=$md5_enc;
1664 $cflags.=" -DMD5_ASM";
1665 }
1666if ($rmd160_obj =~ /\.o$/)
1667 {
1668# $rmd160_obj=$rmd160_enc;
1669 $cflags.=" -DRMD160_ASM";
1670 }
d0590fe6
AP
1671if ($aes_obj =~ /\.o$/)
1672 {
e8d93e34 1673 $cflags.=" -DAES_ASM" if ($aes_obj =~ m/\baes\-/);;
77aae965 1674 # aes-ctr.o is not a real file, only indication that assembler
874a3757 1675 # module implements AES_ctr32_encrypt...
77aae965 1676 $cflags.=" -DAES_CTR_ASM" if ($aes_obj =~ s/\s*aes\-ctr\.o//);
478b50cf 1677 # aes-xts.o indicates presence of AES_xts_[en|de]crypt...
77aae965 1678 $cflags.=" -DAES_XTS_ASM" if ($aes_obj =~ s/\s*aes\-xts\.o//);
1db4a63b 1679 $aes_obj =~ s/\s*(vpaes|aesni)\-x86\.o//g if ($no_sse2);
8ca28da0 1680 $cflags.=" -DVPAES_ASM" if ($aes_obj =~ m/vpaes/);
993adc05 1681 $cflags.=" -DBSAES_ASM" if ($aes_obj =~ m/bsaes/);
d0590fe6 1682 }
7de4b5b0
AP
1683else {
1684 $aes_obj=$aes_enc;
1685 }
4c5e19b6 1686$wp_obj="" if ($wp_obj =~ /mmx/ && $processor eq "386");
ce0ed3b7 1687if ($wp_obj =~ /\.o$/ && !$disabled{"whirlpool"})
ed26604a 1688 {
4c5e19b6
AP
1689 $cflags.=" -DWHIRLPOOL_ASM";
1690 }
1691else {
1692 $wp_obj="wp_block.o";
ed26604a 1693 }
6a8517f2 1694$cmll_obj=$cmll_enc unless ($cmll_obj =~ /.o$/);
82741e9c 1695if ($modes_obj =~ /ghash\-/)
8a1c92ce
AP
1696 {
1697 $cflags.=" -DGHASH_ASM";
1698 }
84714790
AP
1699if ($ec_obj =~ /ecp_nistz256/)
1700 {
1701 $cflags.=" -DECP_NISTZ256_ASM";
1702 }
d02b48c6 1703
1ed0c662
RL
1704# "Stringify" the C flags string. This permits it to be made part of a string
1705# and works as well on command lines.
1706$cflags =~ s/([\\\"])/\\\1/g;
1707
0973910f 1708my $version = "unknown";
fc6a6a10 1709my $version_num = "unknown";
0973910f
UM
1710my $major = "unknown";
1711my $minor = "unknown";
b436a982
RL
1712my $shlib_version_number = "unknown";
1713my $shlib_version_history = "unknown";
1714my $shlib_major = "unknown";
1715my $shlib_minor = "unknown";
0973910f 1716
dee502be 1717open(IN,'<include/openssl/opensslv.h') || die "unable to read opensslv.h:$!\n";
0973910f
UM
1718while (<IN>)
1719 {
1720 $version=$1 if /OPENSSL.VERSION.TEXT.*OpenSSL (\S+) /;
fc6a6a10 1721 $version_num=$1 if /OPENSSL.VERSION.NUMBER.*0x(\S+)/;
b436a982
RL
1722 $shlib_version_number=$1 if /SHLIB_VERSION_NUMBER *"([^"]+)"/;
1723 $shlib_version_history=$1 if /SHLIB_VERSION_HISTORY *"([^"]*)"/;
0973910f
UM
1724 }
1725close(IN);
b436a982 1726if ($shlib_version_history ne "") { $shlib_version_history .= ":"; }
0973910f 1727
1fac96e4 1728if ($version =~ /(^[0-9]*)\.([0-9\.]*)/)
0973910f
UM
1729 {
1730 $major=$1;
1731 $minor=$2;
1732 }
1733
b436a982
RL
1734if ($shlib_version_number =~ /(^[0-9]*)\.([0-9\.]*)/)
1735 {
1736 $shlib_major=$1;
1737 $shlib_minor=$2;
1738 }
1739
58dd1ce9
EK
1740my $ecc = $cc;
1741$ecc = "clang" if `$cc --version 2>&1` =~ /clang/;
1742
0c28f277
DSH
1743if ($strict_warnings)
1744 {
1745 my $wopt;
f386742c 1746 die "ERROR --strict-warnings requires gcc or clang" unless ($ecc =~ /gcc(-\d(\.\d)*)?$/ or $ecc =~ /clang$/);
0c28f277
DSH
1747 foreach $wopt (split /\s+/, $gcc_devteam_warn)
1748 {
6703c4ea 1749 $cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/)
0c28f277 1750 }
190c8c60
BL
1751 if ($ecc eq "clang")
1752 {
1753 foreach $wopt (split /\s+/, $clang_devteam_warn)
1754 {
6703c4ea 1755 $cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/)
190c8c60
BL
1756 }
1757 }
a1d3f3d1
RL
1758 if ($target !~ /^mingw/)
1759 {
1760 foreach $wopt (split /\s+/, $memleak_devteam_backtrace)
1761 {
1762 $cflags .= " $wopt" unless ($cflags =~ /(^|\s)$wopt(\s|$)/)
1763 }
28cbe2ab
BL
1764 if ($target =~ /^BSD-/)
1765 {
1766 $lflags .= " -lexecinfo";
1767 }
1768 }
0c28f277
DSH
1769 }
1770
78c990c1 1771open(IN,"<Makefile.org") || die "unable to read Makefile.org:$!\n";
c2aa4f20
RL
1772unlink("$Makefile.new") || die "unable to remove old $Makefile.new:$!\n" if -e "$Makefile.new";
1773open(OUT,">$Makefile.new") || die "unable to create $Makefile.new:$!\n";
78c990c1 1774print OUT "### Generated automatically from Makefile.org by Configure.\n\n";
f5d7a031 1775my $sdirs=0;
edd4d402 1776
d02b48c6
RE
1777while (<IN>)
1778 {
67475a7e 1779 chomp;
f5d7a031 1780 $sdirs = 1 if /^SDIRS=/;
f5d7a031
UM
1781 if ($sdirs) {
1782 my $dir;
1783 foreach $dir (@skip) {
ed551cdd
DSH
1784 s/(\s)$dir /$1/;
1785 s/\s$dir$//;
f5d7a031
UM
1786 }
1787 }
f6f0420d 1788 $sdirs = 0 unless /\\$/;
7e23e857 1789 s/fips // if (/^DIRS=/ && !$fips);
a63bf2c5 1790 s/engines // if (/^DIRS=/ && $disabled{"engine"});
ef236ec3 1791 s/ccgost// if (/^ENGDIRS=/ && $disabled{"gost"});
0973910f
UM
1792 s/^VERSION=.*/VERSION=$version/;
1793 s/^MAJOR=.*/MAJOR=$major/;
1794 s/^MINOR=.*/MINOR=$minor/;
b436a982
RL
1795 s/^SHLIB_VERSION_NUMBER=.*/SHLIB_VERSION_NUMBER=$shlib_version_number/;
1796 s/^SHLIB_VERSION_HISTORY=.*/SHLIB_VERSION_HISTORY=$shlib_version_history/;
1797 s/^SHLIB_MAJOR=.*/SHLIB_MAJOR=$shlib_major/;
1798 s/^SHLIB_MINOR=.*/SHLIB_MINOR=$shlib_minor/;
a22fb399 1799 s/^SHLIB_EXT=.*/SHLIB_EXT=$shared_extension/;
e5f3045f 1800 s/^INSTALLTOP=.*$/INSTALLTOP=$prefix/;
c23632d3 1801 s/^MULTILIB=.*$/MULTILIB=$multilib/;
462ba4f6 1802 s/^OPENSSLDIR=.*$/OPENSSLDIR=$openssldir/;
6727565a 1803 s/^LIBDIR=.*$/LIBDIR=$libdir/;
e5f3045f 1804 s/^INSTALL_PREFIX=.*$/INSTALL_PREFIX=$install_prefix/;
dfeab068 1805 s/^PLATFORM=.*$/PLATFORM=$target/;
31ff97b2 1806 s/^OPTIONS=.*$/OPTIONS=$options/;
c59cb511 1807 s/^CONFIGURE_ARGS=.*$/CONFIGURE_ARGS=$argvstring/;
cbfb39d1
AP
1808 if ($cross_compile_prefix)
1809 {
8aab301b
DSH
1810 s/^CC=.*$/CROSS_COMPILE= $cross_compile_prefix\nCC= \$\(CROSS_COMPILE\)$cc/;
1811 s/^AR=\s*/AR= \$\(CROSS_COMPILE\)/;
1812 s/^NM=\s*/NM= \$\(CROSS_COMPILE\)/;
1813 s/^RANLIB=\s*/RANLIB= \$\(CROSS_COMPILE\)/;
1814 s/^MAKEDEPPROG=.*$/MAKEDEPPROG= \$\(CROSS_COMPILE\)$cc/ if $cc eq "gcc";
cbfb39d1
AP
1815 }
1816 else {
1817 s/^CC=.*$/CC= $cc/;
8844a69c 1818 s/^AR=\s*ar/AR= $ar/;
cbfb39d1 1819 s/^RANLIB=.*/RANLIB= $ranlib/;
58dd1ce9 1820 s/^MAKEDEPPROG=.*$/MAKEDEPPROG= $cc/ if $ecc eq "gcc" || $ecc eq "clang";
cbfb39d1 1821 }
d02b48c6 1822 s/^CFLAG=.*$/CFLAG= $cflags/;
7a762197 1823 s/^DEPFLAG=.*$/DEPFLAG=$depflags/;
d6c76457 1824 s/^PEX_LIBS=.*$/PEX_LIBS= $prelflags/;
d02b48c6 1825 s/^EX_LIBS=.*$/EX_LIBS= $lflags/;
967d95f0 1826 s/^EXE_EXT=.*$/EXE_EXT= $exe_ext/;
14e21f86 1827 s/^CPUID_OBJ=.*$/CPUID_OBJ= $cpuid_obj/;
06287285 1828 s/^BN_ASM=.*$/BN_ASM= $bn_obj/;
6019cdd3 1829 s/^EC_ASM=.*$/EC_ASM= $ec_obj/;
d02b48c6 1830 s/^DES_ENC=.*$/DES_ENC= $des_obj/;
0ddd3ea2 1831 s/^AES_ENC=.*$/AES_ENC= $aes_obj/;
d02b48c6 1832 s/^BF_ENC=.*$/BF_ENC= $bf_obj/;
58964a49
RE
1833 s/^CAST_ENC=.*$/CAST_ENC= $cast_obj/;
1834 s/^RC4_ENC=.*$/RC4_ENC= $rc4_obj/;
1835 s/^RC5_ENC=.*$/RC5_ENC= $rc5_obj/;
1836 s/^MD5_ASM_OBJ=.*$/MD5_ASM_OBJ= $md5_obj/;
1837 s/^SHA1_ASM_OBJ=.*$/SHA1_ASM_OBJ= $sha1_obj/;
1838 s/^RMD160_ASM_OBJ=.*$/RMD160_ASM_OBJ= $rmd160_obj/;
ed26604a 1839 s/^WP_ASM_OBJ=.*$/WP_ASM_OBJ= $wp_obj/;
6a8517f2 1840 s/^CMLL_ENC=.*$/CMLL_ENC= $cmll_obj/;
8a1c92ce 1841 s/^MODES_ASM_OBJ.=*$/MODES_ASM_OBJ= $modes_obj/;
ed28aef8 1842 s/^ENGINES_ASM_OBJ.=*$/ENGINES_ASM_OBJ= $engines_obj/;
fa8e921f 1843 s/^PERLASM_SCHEME=.*$/PERLASM_SCHEME= $perlasm_scheme/;
2613c1fa 1844 s/^PROCESSOR=.*/PROCESSOR= $processor/;
179add2b 1845 s/^ARFLAGS=.*/ARFLAGS= $arflags/;
99aab161 1846 s/^PERL=.*/PERL= $perl/;
ad2695b1
DSH
1847 s/^LIBZLIB=.*/LIBZLIB=$withargs{"zlib-lib"}/;
1848 s/^ZLIB_INCLUDE=.*/ZLIB_INCLUDE=$withargs{"zlib-include"}/;
1ab2f7f1 1849 s/^FIPSLIBDIR=.*/FIPSLIBDIR=$fipslibdir/;
d47d0d2b
DSH
1850 s/^FIPSCANLIB=.*/FIPSCANLIB=libcrypto/ if $fips;
1851 s/^SHARED_FIPS=.*/SHARED_FIPS=/;
1852 s/^SHLIBDIRS=.*/SHLIBDIRS= crypto ssl/;
1ab2f7f1 1853 s/^BASEADDR=.*/BASEADDR=$baseaddr/;
b436a982 1854 s/^SHLIB_TARGET=.*/SHLIB_TARGET=$shared_target/;
a22fb399
RL
1855 s/^SHLIB_MARK=.*/SHLIB_MARK=$shared_mark/;
1856 s/^SHARED_LIBS=.*/SHARED_LIBS=\$(SHARED_CRYPTO) \$(SHARED_SSL)/ if (!$no_shared);
0fd44e2d
RL
1857 if ($shared_extension ne "" && $shared_extension =~ /^\.s([ol])\.[^\.]*$/)
1858 {
1859 my $sotmp = $1;
07c08ed4
RL
1860 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.s$sotmp/;
1861 }
1862 elsif ($shared_extension ne "" && $shared_extension =~ /^\.[^\.]*\.dylib$/)
1863 {
1864 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.dylib/;
0fd44e2d
RL
1865 }
1866 elsif ($shared_extension ne "" && $shared_extension =~ /^\.s([ol])\.[^\.]*\.[^\.]*$/)
1867 {
1868 my $sotmp = $1;
1869 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.s$sotmp.\$(SHLIB_MAJOR) .s$sotmp/;
1870 }
07c08ed4
RL
1871 elsif ($shared_extension ne "" && $shared_extension =~ /^\.[^\.]*\.[^\.]*\.dylib$/)
1872 {
1873 s/^SHARED_LIBS_LINK_EXTS=.*/SHARED_LIBS_LINK_EXTS=.\$(SHLIB_MAJOR).dylib .dylib/;
1874 }
a5595fde 1875 s/^SHARED_LDFLAGS=.*/SHARED_LDFLAGS=$shared_ldflag/;
d02b48c6
RE
1876 print OUT $_."\n";
1877 }
1878close(IN);
1879close(OUT);
c2aa4f20
RL
1880rename($Makefile,"$Makefile.bak") || die "unable to rename $Makefile\n" if -e $Makefile;
1881rename("$Makefile.new",$Makefile) || die "unable to rename $Makefile.new\n";
f2d4be3b 1882
58964a49
RE
1883print "CC =$cc\n";
1884print "CFLAG =$cflags\n";
1885print "EX_LIBS =$lflags\n";
b7efa56a 1886print "CPUID_OBJ =$cpuid_obj\n";
06287285 1887print "BN_ASM =$bn_obj\n";
6019cdd3 1888print "EC_ASM =$ec_obj\n";
58964a49 1889print "DES_ENC =$des_obj\n";
0ddd3ea2 1890print "AES_ENC =$aes_obj\n";
58964a49
RE
1891print "BF_ENC =$bf_obj\n";
1892print "CAST_ENC =$cast_obj\n";
1893print "RC4_ENC =$rc4_obj\n";
1894print "RC5_ENC =$rc5_obj\n";
1895print "MD5_OBJ_ASM =$md5_obj\n";
1896print "SHA1_OBJ_ASM =$sha1_obj\n";
1897print "RMD160_OBJ_ASM=$rmd160_obj\n";
8a1c92ce
AP
1898print "CMLL_ENC =$cmll_obj\n";
1899print "MODES_OBJ =$modes_obj\n";
ed28aef8 1900print "ENGINES_OBJ =$engines_obj\n";
2613c1fa 1901print "PROCESSOR =$processor\n";
99aab161 1902print "RANLIB =$ranlib\n";
179add2b 1903print "ARFLAGS =$arflags\n";
99aab161 1904print "PERL =$perl\n";
d02b48c6 1905
1641cb60
BL
1906my $des_ptr=0;
1907my $des_risc1=0;
1908my $des_risc2=0;
1909my $des_unroll=0;
1910my $bn_ll=0;
1911my $def_int=2;
1912my $rc4_int=$def_int;
1913my $md2_int=$def_int;
1914my $idea_int=$def_int;
1915my $rc2_int=$def_int;
1916my $rc4_idx=0;
2dae04d0 1917my $rc4_chunk=0;
1641cb60
BL
1918my $bf_ptr=0;
1919my @type=("char","short","int","long");
1920my ($b64l,$b64,$b32,$b16,$b8)=(0,0,1,0,0);
62dc5aad 1921my $export_var_as_fn=0;
1641cb60
BL
1922
1923my $des_int;
d02b48c6
RE
1924
1925foreach (sort split(/\s+/,$bn_ops))
1926 {
1927 $des_ptr=1 if /DES_PTR/;
1928 $des_risc1=1 if /DES_RISC1/;
1929 $des_risc2=1 if /DES_RISC2/;
1930 $des_unroll=1 if /DES_UNROLL/;
1931 $des_int=1 if /DES_INT/;
1932 $bn_ll=1 if /BN_LLONG/;
1933 $rc4_int=0 if /RC4_CHAR/;
1934 $rc4_int=3 if /RC4_LONG/;
1935 $rc4_idx=1 if /RC4_INDEX/;
2dae04d0
AP
1936 $rc4_chunk=1 if /RC4_CHUNK/;
1937 $rc4_chunk=2 if /RC4_CHUNK_LL/;
d02b48c6
RE
1938 $md2_int=0 if /MD2_CHAR/;
1939 $md2_int=3 if /MD2_LONG/;
1940 $idea_int=1 if /IDEA_SHORT/;
1941 $idea_int=3 if /IDEA_LONG/;
1942 $rc2_int=1 if /RC2_SHORT/;
1943 $rc2_int=3 if /RC2_LONG/;
1944 $bf_ptr=1 if $_ eq "BF_PTR";
1945 $bf_ptr=2 if $_ eq "BF_PTR2";
d02b48c6 1946 ($b64l,$b64,$b32,$b16,$b8)=(0,1,0,0,0) if /SIXTY_FOUR_BIT/;
58964a49 1947 ($b64l,$b64,$b32,$b16,$b8)=(1,0,0,0,0) if /SIXTY_FOUR_BIT_LONG/;
d02b48c6
RE
1948 ($b64l,$b64,$b32,$b16,$b8)=(0,0,1,0,0) if /THIRTY_TWO_BIT/;
1949 ($b64l,$b64,$b32,$b16,$b8)=(0,0,0,1,0) if /SIXTEEN_BIT/;
1950 ($b64l,$b64,$b32,$b16,$b8)=(0,0,0,0,1) if /EIGHT_BIT/;
62dc5aad 1951 $export_var_as_fn=1 if /EXPORT_VAR_AS_FN/;
d02b48c6
RE
1952 }
1953
8e10f2b3 1954open(IN,'<crypto/opensslconf.h.in') || die "unable to read crypto/opensslconf.h.in:$!\n";
dee502be
RL
1955unlink("include/openssl/opensslconf.h.new") || die "unable to remove old include/openssl/opensslconf.h.new:$!\n" if -e "include/openssl/opensslconf.h.new";
1956open(OUT,'>include/openssl/opensslconf.h.new') || die "unable to create include/openssl/opensslconf.h.new:$!\n";
26dc267f 1957print OUT "/* opensslconf.h */\n";
fb044c59 1958print OUT "/* WARNING: Generated automatically from opensslconf.h.in by Configure. */\n\n";
26dc267f 1959
17e80c6b
RS
1960print OUT "#ifdef __cplusplus\n";
1961print OUT "extern \"C\" {\n";
1962print OUT "#endif\n";
26dc267f 1963print OUT "/* OpenSSL was configured with the following options: */\n";
5031a89d 1964my $openssl_algorithm_defines_trans = $openssl_algorithm_defines;
7a762197 1965$openssl_experimental_defines =~ s/^\s*#\s*define\s+OPENSSL_NO_(.*)/#ifndef OPENSSL_EXPERIMENTAL_$1\n# ifndef OPENSSL_NO_$1\n# define OPENSSL_NO_$1\n# endif\n#endif/mg;
5031a89d 1966$openssl_algorithm_defines_trans =~ s/^\s*#\s*define\s+OPENSSL_(.*)/# if defined(OPENSSL_$1) \&\& !defined($1)\n# define $1\n# endif/mg;
cf1b7d96 1967$openssl_algorithm_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
fb77c6fb 1968$openssl_algorithm_defines = " /* no ciphers excluded */\n" if $openssl_algorithm_defines eq "";
cf1b7d96
RL
1969$openssl_thread_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
1970$openssl_sys_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
1971$openssl_other_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#endif/mg;
1972print OUT $openssl_sys_defines;
75e98d05 1973print OUT "#ifndef OPENSSL_DOING_MAKEDEPEND\n\n";
7a762197
BM
1974print OUT $openssl_experimental_defines;
1975print OUT "\n";
cf1b7d96 1976print OUT $openssl_algorithm_defines;
7a762197 1977print OUT "\n#endif /* OPENSSL_DOING_MAKEDEPEND */\n\n";
cf1b7d96
RL
1978print OUT $openssl_thread_defines;
1979print OUT $openssl_other_defines,"\n";
26dc267f 1980
5031a89d
RL
1981print OUT "/* The OPENSSL_NO_* macros are also defined as NO_* if the application\n";
1982print OUT " asks for it. This is a transient feature that is provided for those\n";
1983print OUT " who haven't had the time to do the appropriate changes in their\n";
1984print OUT " applications. */\n";
1985print OUT "#ifdef OPENSSL_ALGORITHM_DEFINES\n";
1986print OUT $openssl_algorithm_defines_trans;
1987print OUT "#endif\n\n";
1988
b2dba9bf 1989print OUT "#define OPENSSL_CPUID_OBJ\n\n" if ($cpuid_obj ne "mem_clr.o");
ebaec63e 1990
d02b48c6
RE
1991while (<IN>)
1992 {
cd46aa4a 1993 if (/^#define\s+OPENSSLDIR/)
f9afd9f8
GT
1994 {
1995 my $foo = $openssldir;
1996 $foo =~ s/\\/\\\\/g;
1997 print OUT "#define OPENSSLDIR \"$foo\"\n";
1998 }
90819805 1999 elsif (/^#define\s+ENGINESDIR/)
f9afd9f8 2000 {
6a9d28f9 2001 my $foo = "$prefix/$libdir/engines";
f9afd9f8
GT
2002 $foo =~ s/\\/\\\\/g;
2003 print OUT "#define ENGINESDIR \"$foo\"\n";
2004 }
62dc5aad
RL
2005 elsif (/^#((define)|(undef))\s+OPENSSL_EXPORT_VAR_AS_FUNCTION/)
2006 { printf OUT "#undef OPENSSL_EXPORT_VAR_AS_FUNCTION\n"
2007 if $export_var_as_fn;
2008 printf OUT "#%s OPENSSL_EXPORT_VAR_AS_FUNCTION\n",
2009 ($export_var_as_fn)?"define":"undef"; }
e766a681
BM
2010 elsif (/^#define\s+OPENSSL_UNISTD/)
2011 {
2012 $unistd = "<unistd.h>" if $unistd eq "";
2013 print OUT "#define OPENSSL_UNISTD $unistd\n";
2014 }
462ba4f6 2015 elsif (/^#((define)|(undef))\s+SIXTY_FOUR_BIT_LONG/)
d02b48c6
RE
2016 { printf OUT "#%s SIXTY_FOUR_BIT_LONG\n",($b64l)?"define":"undef"; }
2017 elsif (/^#((define)|(undef))\s+SIXTY_FOUR_BIT/)
2018 { printf OUT "#%s SIXTY_FOUR_BIT\n",($b64)?"define":"undef"; }
2019 elsif (/^#((define)|(undef))\s+THIRTY_TWO_BIT/)
2020 { printf OUT "#%s THIRTY_TWO_BIT\n",($b32)?"define":"undef"; }
2021 elsif (/^#((define)|(undef))\s+SIXTEEN_BIT/)
2022 { printf OUT "#%s SIXTEEN_BIT\n",($b16)?"define":"undef"; }
2023 elsif (/^#((define)|(undef))\s+EIGHT_BIT/)
2024 { printf OUT "#%s EIGHT_BIT\n",($b8)?"define":"undef"; }
2025 elsif (/^#((define)|(undef))\s+BN_LLONG\s*$/)
2026 { printf OUT "#%s BN_LLONG\n",($bn_ll)?"define":"undef"; }
8e10f2b3 2027 elsif (/^\#define\s+DES_LONG\s+.*/)
d02b48c6
RE
2028 { printf OUT "#define DES_LONG unsigned %s\n",
2029 ($des_int)?'int':'long'; }
8e10f2b3 2030 elsif (/^\#(define|undef)\s+DES_PTR/)
d02b48c6
RE
2031 { printf OUT "#%s DES_PTR\n",($des_ptr)?'define':'undef'; }
2032 elsif (/^\#(define|undef)\s+DES_RISC1/)
2033 { printf OUT "#%s DES_RISC1\n",($des_risc1)?'define':'undef'; }
2034 elsif (/^\#(define|undef)\s+DES_RISC2/)
2035 { printf OUT "#%s DES_RISC2\n",($des_risc2)?'define':'undef'; }
2036 elsif (/^\#(define|undef)\s+DES_UNROLL/)
2037 { printf OUT "#%s DES_UNROLL\n",($des_unroll)?'define':'undef'; }
8e10f2b3 2038 elsif (/^#define\s+RC4_INT\s/)
d02b48c6 2039 { printf OUT "#define RC4_INT unsigned %s\n",$type[$rc4_int]; }
2dae04d0
AP
2040 elsif (/^#undef\s+RC4_CHUNK/)
2041 {
2042 printf OUT "#undef RC4_CHUNK\n" if $rc4_chunk==0;
2043 printf OUT "#define RC4_CHUNK unsigned long\n" if $rc4_chunk==1;
2044 printf OUT "#define RC4_CHUNK unsigned long long\n" if $rc4_chunk==2;
2045 }
8e10f2b3 2046 elsif (/^#((define)|(undef))\s+RC4_INDEX/)
d02b48c6 2047 { printf OUT "#%s RC4_INDEX\n",($rc4_idx)?"define":"undef"; }
8e7f966b 2048 elsif (/^#(define|undef)\s+I386_ONLY/)
c9a112f5 2049 { printf OUT "#%s I386_ONLY\n", ($processor eq "386")?
8e7f966b 2050 "define":"undef"; }
8e10f2b3 2051 elsif (/^#define\s+MD2_INT\s/)
d02b48c6 2052 { printf OUT "#define MD2_INT unsigned %s\n",$type[$md2_int]; }
8e10f2b3 2053 elsif (/^#define\s+IDEA_INT\s/)
d02b48c6 2054 {printf OUT "#define IDEA_INT unsigned %s\n",$type[$idea_int];}
8e10f2b3 2055 elsif (/^#define\s+RC2_INT\s/)
d02b48c6 2056 {printf OUT "#define RC2_INT unsigned %s\n",$type[$rc2_int];}
8e10f2b3 2057 elsif (/^#(define|undef)\s+BF_PTR/)
d02b48c6
RE
2058 {
2059 printf OUT "#undef BF_PTR\n" if $bf_ptr == 0;
2060 printf OUT "#define BF_PTR\n" if $bf_ptr == 1;
2061 printf OUT "#define BF_PTR2\n" if $bf_ptr == 2;
8e10f2b3 2062 }
d02b48c6
RE
2063 else
2064 { print OUT $_; }
2065 }
5dfc369f 2066close(IN);
17e80c6b
RS
2067print OUT "#ifdef __cplusplus\n";
2068print OUT "}\n";
2069print OUT "#endif\n";
5dfc369f 2070close(OUT);
dee502be
RL
2071rename("include/openssl/opensslconf.h","include/openssl/opensslconf.h.bak") || die "unable to rename include/openssl/opensslconf.h\n" if -e "include/openssl/opensslconf.h";
2072rename("include/openssl/opensslconf.h.new","include/openssl/opensslconf.h") || die "unable to rename include/openssl/opensslconf.h.new\n";
9becf666 2073
e766a681 2074
9becf666
DSH
2075# Fix the date
2076
d02b48c6
RE
2077print "SIXTY_FOUR_BIT_LONG mode\n" if $b64l;
2078print "SIXTY_FOUR_BIT mode\n" if $b64;
2079print "THIRTY_TWO_BIT mode\n" if $b32;
2080print "SIXTEEN_BIT mode\n" if $b16;
2081print "EIGHT_BIT mode\n" if $b8;
2082print "DES_PTR used\n" if $des_ptr;
2083print "DES_RISC1 used\n" if $des_risc1;
2084print "DES_RISC2 used\n" if $des_risc2;
2085print "DES_UNROLL used\n" if $des_unroll;
2086print "DES_INT used\n" if $des_int;
2087print "BN_LLONG mode\n" if $bn_ll;
2088print "RC4 uses u$type[$rc4_int]\n" if $rc4_int != $def_int;
2089print "RC4_INDEX mode\n" if $rc4_idx;
2dae04d0
AP
2090print "RC4_CHUNK is undefined\n" if $rc4_chunk==0;
2091print "RC4_CHUNK is unsigned long\n" if $rc4_chunk==1;
2092print "RC4_CHUNK is unsigned long long\n" if $rc4_chunk==2;
d02b48c6
RE
2093print "MD2 uses u$type[$md2_int]\n" if $md2_int != $def_int;
2094print "IDEA uses u$type[$idea_int]\n" if $idea_int != $def_int;
2095print "RC2 uses u$type[$rc2_int]\n" if $rc2_int != $def_int;
fce0ba5f
FLM
2096print "BF_PTR used\n" if $bf_ptr == 1;
2097print "BF_PTR2 used\n" if $bf_ptr == 2;
cba5068d 2098
fd9ad230
RL
2099{
2100 my $perlguess = $perl =~ m@^/@ ? $perl : '/usr/local/bin/perl';
2101
2102 &dofile("tools/c_rehash",$perlguess,
2103 '^#!/' => '#!%s',
2104 '^my \$dir;$' => 'my $dir = "' . $openssldir . '";',
2105 '^my \$prefix;$' => 'my $prefix = "' . $prefix . '";');
2106 &dofile("apps/CA.pl",$perl,
2107 '^#!/' => '#!%s');
2108}
4d8743f4 2109if($IsMK1MF) {
664b9985
BM
2110 open (OUT,">crypto/buildinf.h") || die "Can't open buildinf.h";
2111 printf OUT <<EOF;
57119943
BM
2112#ifndef MK1MF_BUILD
2113 /* auto-generated by Configure for crypto/cversion.c:
2114 * for Unix builds, crypto/Makefile.ssl generates functional definitions;
2115 * Windows builds (and other mk1mf builds) compile cversion.c with
2116 * -DMK1MF_BUILD and use definitions added to this file by util/mk1mf.pl. */
2117 #error "Windows builds (PLATFORM=$target) use mk1mf.pl-created Makefiles"
2118#endif
9e935d7e 2119EOF
8e10f2b3 2120 close(OUT);
a1e464f9 2121} else {
dafd8333 2122 my $make_command = "$make PERL=\'$perl\'";
451dc18f 2123 my $make_targets = "";
ab185b60 2124 $make_targets .= " depend" if $depflags ne $default_depflags && $make_depend;
cde8ad1a 2125 (system $make_command.$make_targets) == 0 or die "make $make_targets failed"
451dc18f 2126 if $make_targets ne "";
78c990c1 2127 if ($depflags ne $default_depflags && !$make_depend) {
451dc18f
RL
2128 print <<EOF;
2129
ab185b60
BM
2130Since you've disabled or enabled at least one algorithm, you need to do
2131the following before building:
451dc18f
RL
2132
2133 make depend
2134EOF
2135 }
8e10f2b3
UM
2136}
2137
fc6a6a10 2138# create the ms/version32.rc file if needed
eef0c1f3 2139if ($IsMK1MF && ($target !~ /^netware/)) {
fc6a6a10
DSH
2140 my ($v1, $v2, $v3, $v4);
2141 if ($version_num =~ /(^[0-9a-f]{1})([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})/i) {
2142 $v1=hex $1;
2143 $v2=hex $2;
2144 $v3=hex $3;
2145 $v4=hex $4;
2146 }
2147 open (OUT,">ms/version32.rc") || die "Can't open ms/version32.rc";
2148 print OUT <<EOF;
2149#include <winver.h>
2150
2151LANGUAGE 0x09,0x01
2152
21531 VERSIONINFO
2154 FILEVERSION $v1,$v2,$v3,$v4
2155 PRODUCTVERSION $v1,$v2,$v3,$v4
2156 FILEFLAGSMASK 0x3fL
2157#ifdef _DEBUG
2158 FILEFLAGS 0x01L
2159#else
2160 FILEFLAGS 0x00L
2161#endif
2162 FILEOS VOS__WINDOWS32
2163 FILETYPE VFT_DLL
2164 FILESUBTYPE 0x0L
2165BEGIN
2166 BLOCK "StringFileInfo"
2167 BEGIN
2168 BLOCK "040904b0"
2169 BEGIN
fce0ba5f 2170 // Required:
fc6a6a10
DSH
2171 VALUE "CompanyName", "The OpenSSL Project, http://www.openssl.org/\\0"
2172 VALUE "FileDescription", "OpenSSL Shared Library\\0"
2173 VALUE "FileVersion", "$version\\0"
2174#if defined(CRYPTO)
2175 VALUE "InternalName", "libeay32\\0"
2176 VALUE "OriginalFilename", "libeay32.dll\\0"
2177#elif defined(SSL)
2178 VALUE "InternalName", "ssleay32\\0"
2179 VALUE "OriginalFilename", "ssleay32.dll\\0"
a479d72d 2180#endif
fc6a6a10
DSH
2181 VALUE "ProductName", "The OpenSSL Toolkit\\0"
2182 VALUE "ProductVersion", "$version\\0"
2183 // Optional:
2184 //VALUE "Comments", "\\0"
51cbee35 2185 VALUE "LegalCopyright", "Copyright © 1998-2015 The OpenSSL Project. Copyright © 1995-1998 Eric A. Young, Tim J. Hudson. All rights reserved.\\0"
fc6a6a10
DSH
2186 //VALUE "LegalTrademarks", "\\0"
2187 //VALUE "PrivateBuild", "\\0"
2188 //VALUE "SpecialBuild", "\\0"
2189 END
2190 END
2191 BLOCK "VarFileInfo"
2192 BEGIN
2193 VALUE "Translation", 0x409, 0x4b0
2194 END
2195END
2196EOF
2197 close(OUT);
2198 }
fce0ba5f 2199
63d3f44a
BM
2200print <<EOF;
2201
89ec98e0 2202Configured for $target.
63d3f44a 2203EOF
5f8d5c96
BM
2204
2205print <<\EOF if (!$no_threads && !$threads);
2206
2207The library could not be configured for supporting multi-threaded
2208applications as the compiler options required on this system are not known.
ff1b7e09 2209See file INSTALL for details if you need multi-threading.
ec577822
BM
2210EOF
2211
2964ba8c
RL
2212print <<\EOF if ($no_shared_warn);
2213
2214You gave the option 'shared'. Normally, that would give you shared libraries.
2215Unfortunately, the OpenSSL configuration doesn't include shared library support
2216for this platform yet, so it will pretend you gave the option 'no-shared'. If
2217you can inform the developpers (openssl-dev\@openssl.org) how to support shared
aaae0aa4
BM
2218libraries on this platform, they will at least look at it and try their best
2219(but please first make sure you have tried with a current version of OpenSSL).
2964ba8c
RL
2220EOF
2221
d02b48c6
RE
2222exit(0);
2223
462ba4f6 2224sub usage
d02b48c6 2225 {
462ba4f6 2226 print STDERR $usage;
10a926c1 2227 print STDERR "\npick os/compiler from:\n";
1641cb60 2228 my $j=0;
6457ad15 2229 my $i;
10a926c1 2230 my $k=0;
6457ad15 2231 foreach $i (sort keys %table)
d02b48c6 2232 {
462ba4f6 2233 next if $i =~ /^debug/;
10a926c1
UM
2234 $k += length($i) + 1;
2235 if ($k > 78)
2236 {
2237 print STDERR "\n";
2238 $k=length($i);
2239 }
2240 print STDERR $i . " ";
462ba4f6
UM
2241 }
2242 foreach $i (sort keys %table)
2243 {
2244 next if $i !~ /^debug/;
10a926c1
UM
2245 $k += length($i) + 1;
2246 if ($k > 78)
2247 {
2248 print STDERR "\n";
2249 $k=length($i);
2250 }
2251 print STDERR $i . " ";
d02b48c6 2252 }
10a926c1 2253 print STDERR "\n\nNOTE: If in doubt, on Unix-ish systems use './config'.\n";
462ba4f6 2254 exit(1);
d02b48c6
RE
2255 }
2256
99aab161
UM
2257sub which
2258 {
2259 my($name)=@_;
2260 my $path;
2261 foreach $path (split /:/, $ENV{PATH})
2262 {
28a80034 2263 if (-f "$path/$name$exe_ext" and -x _)
99aab161 2264 {
28a80034
RL
2265 return "$path/$name$exe_ext" unless ($name eq "perl" and
2266 system("$path/$name$exe_ext -e " . '\'exit($]<5.0);\''));
99aab161
UM
2267 }
2268 }
2269 }
2270
462ba4f6
UM
2271sub dofile
2272 {
2273 my $f; my $p; my %m; my @a; my $k; my $ff;
2274 ($f,$p,%m)=@_;
2275
31ff97b2 2276 open(IN,"<$f.in") || open(IN,"<$f") || die "unable to open $f:$!\n";
462ba4f6
UM
2277 @a=<IN>;
2278 close(IN);
2279 foreach $k (keys %m)
2280 {
2281 grep(/$k/ && ($_=sprintf($m{$k}."\n",$p)),@a);
2282 }
863fe2ec 2283 open(OUT,">$f.new") || die "unable to open $f.new:$!\n";
462ba4f6
UM
2284 print OUT @a;
2285 close(OUT);
863fe2ec
BM
2286 rename($f,"$f.bak") || die "unable to rename $f\n" if -e $f;
2287 rename("$f.new",$f) || die "unable to rename $f.new\n";
462ba4f6 2288 }
436a376b
BM
2289
2290sub print_table_entry
2291 {
2292 my $target = shift;
aaf878cc 2293 my $type = shift;
436a376b 2294
7d46b942
RL
2295 # Don't print the templates
2296 return if $table{$target}->{template};
2297
aaf878cc
RL
2298 if ($type eq "TABLE") {
2299 print <<EOF
436a376b
BM
2300
2301*** $target
aaf878cc
RL
2302\$cc = $table{$target}->{cc}
2303\$cflags = $table{$target}->{cflags}
b1245529
RL
2304\$debug_cflags = $table{$target}->{debug_cflags}
2305\$release_cflags = $table{$target}->{release_cflags}
aaf878cc
RL
2306\$unistd = $table{$target}->{unistd}
2307\$thread_cflag = $table{$target}->{thread_cflag}
2308\$sys_id = $table{$target}->{sys_id}
2309\$lflags = $table{$target}->{lflags}
b1245529
RL
2310\$debug_lflags = $table{$target}->{debug_lflags}
2311\$release_lflags = $table{$target}->{release_lflags}
aaf878cc
RL
2312\$bn_ops = $table{$target}->{bn_ops}
2313\$cpuid_obj = $table{$target}->{cpuid_obj}
2314\$bn_obj = $table{$target}->{bn_obj}
2315\$ec_obj = $table{$target}->{ec_obj}
2316\$des_obj = $table{$target}->{des_obj}
2317\$aes_obj = $table{$target}->{aes_obj}
2318\$bf_obj = $table{$target}->{bf_obj}
2319\$md5_obj = $table{$target}->{md5_obj}
2320\$sha1_obj = $table{$target}->{sha1_obj}
2321\$cast_obj = $table{$target}->{cast_obj}
2322\$rc4_obj = $table{$target}->{rc4_obj}
2323\$rmd160_obj = $table{$target}->{rmd160_obj}
2324\$rc5_obj = $table{$target}->{rc5_obj}
2325\$wp_obj = $table{$target}->{wp_obj}
2326\$cmll_obj = $table{$target}->{cmll_obj}
2327\$modes_obj = $table{$target}->{modes_obj}
2328\$engines_obj = $table{$target}->{engines_obj}
2329\$perlasm_scheme = $table{$target}->{perlasm_scheme}
2330\$dso_scheme = $table{$target}->{dso_scheme}
2331\$shared_target= $table{$target}->{shared_target}
2332\$shared_cflag = $table{$target}->{shared_cflag}
2333\$shared_ldflag = $table{$target}->{shared_ldflag}
2334\$shared_extension = $table{$target}->{shared_extension}
2335\$ranlib = $table{$target}->{ranlib}
2336\$arflags = $table{$target}->{arflags}
2337\$multilib = $table{$target}->{multilib}
436a376b 2338EOF
aaf878cc
RL
2339 } elsif ($type eq "HASH") {
2340 my @sequence = (
2341 "cc",
2342 "cflags",
b1245529
RL
2343 "debug_cflags",
2344 "release_cflags",
aaf878cc
RL
2345 "unistd",
2346 "thread_cflag",
2347 "sys_id",
2348 "lflags",
b1245529
RL
2349 "debug_lflags",
2350 "release_lflags",
aaf878cc
RL
2351 "bn_ops",
2352 "cpuid_obj",
2353 "bn_obj",
2354 "ec_obj",
2355 "des_obj",
2356 "aes_obj",
2357 "bf_obj",
2358 "md5_obj",
2359 "sha1_obj",
2360 "cast_obj",
2361 "rc4_obj",
2362 "rmd160_obj",
2363 "rc5_obj",
2364 "wp_obj",
2365 "cmll_obj",
2366 "modes_obj",
2367 "engines_obj",
2368 "perlasm_scheme",
2369 "dso_scheme",
2370 "shared_target",
2371 "shared_cflag",
2372 "shared_ldflag",
2373 "shared_extension",
2374 "ranlib",
2375 "arflags",
2376 "multilib",
2377 );
2378 my $largest =
2379 length((sort { length($a) <=> length($b) } @sequence)[-1]);
2380 print " '$target' => {\n";
2381 foreach (@sequence) {
2382 if ($table{$target}->{$_}) {
2383 print " '",$_,"'"," " x ($largest - length($_))," => '",$table{$target}->{$_},"',\n";
2384 }
2385 }
2386 print " },\n";
2387 }
436a376b 2388 }
d0d046ec
RL
2389
2390sub test_sanity
2391 {
2392 my $errorcnt = 0;
2393
2394 print STDERR "=" x 70, "\n";
2395 print STDERR "=== SANITY TESTING!\n";
2396 print STDERR "=== No configuration will be done, all other arguments will be ignored!\n";
2397 print STDERR "=" x 70, "\n";
2398
2399 foreach $target (sort keys %table)
2400 {
aaf878cc
RL
2401 my $pre_dso_scheme = "perlasm_scheme";
2402 my $dso_scheme = "dso_scheme";
2403 my $post_dso_scheme = "shared_target";
2404
d0d046ec 2405
aaf878cc 2406 if ($table{$target}->{$pre_dso_scheme} =~ /^(beos|dl|dlfcn|win32|vms)$/)
c9c21d3b
RL
2407 {
2408 $errorcnt++;
aaf878cc 2409 print STDERR "SANITY ERROR: '$target' has the dso_scheme values\n";
c9c21d3b
RL
2410 print STDERR " in the previous field\n";
2411 }
aaf878cc 2412 elsif ($table{$target}->{$post_dso_scheme} =~ /^(beos|dl|dlfcn|win32|vms)$/)
c9c21d3b
RL
2413 {
2414 $errorcnt++;
aaf878cc 2415 print STDERR "SANITY ERROR: '$target' has the dso_scheme values\n";
c9c21d3b
RL
2416 print STDERR " in the following field\n";
2417 }
aaf878cc 2418 elsif ($table{$target}->{$dso_scheme} !~ /^(beos|dl|dlfcn|win32|vms|)$/)
d0d046ec
RL
2419 {
2420 $errorcnt++;
aaf878cc 2421 print STDERR "SANITY ERROR: '$target' has the dso_scheme field = ",$table{$target}->{$dso_scheme},"\n";
fd621f7d 2422 print STDERR " valid values are 'beos', 'dl', 'dlfcn', 'win32' and 'vms'\n";
d0d046ec
RL
2423 }
2424 }
613599ff 2425 print STDERR "No sanity errors detected!\n" if $errorcnt == 0;
d0d046ec
RL
2426 return $errorcnt;
2427 }