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