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