Remove outdated legacy crypto options
[openssl.git] / Configurations / 99-personal-steve.conf
1 ## -*- mode: perl; -*-
2 ## Personal configuration targets
3 ##
4 ## If you edit this file, run this command before committing
5 ##      make -f Makefile.in TABLE
6 ## This file is interpolated by the Configure script.
7
8 %targets = (
9     "debug-steve64" => {
10         inherit_from     => [ "x86_64_asm" ],
11         cc               => "gcc",
12         cflags           => "$gcc_devteam_warn -pthread -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
13         thread_cflag     => "-D_REENTRANT",
14         lflags           => "-ldl",
15         bn_ops           => "SIXTY_FOUR_BIT_LONG",
16         perlasm_scheme   => "elf",
17         dso_scheme       => "dlfcn",
18         shared_target    => "linux-shared",
19         shared_cflag     => "-fPIC",
20         shared_ldflag    => "-m64",
21         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
22     },
23     "debug-steve32" => {
24         inherit_from     => [ "x86_elf_asm" ],
25         cc               => "gcc",
26         cflags           => "$gcc_devteam_warn -pthread -m32 -DL_ENDIAN -DCONF_DEBUG -g",
27         thread_cflag     => "-D_REENTRANT",
28         lflags           => "-rdynamic -ldl",
29         bn_ops           => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
30         dso_scheme       => "dlfcn",
31         shared_target    => "linux-shared",
32         shared_cflag     => "-fPIC",
33         shared_ldflag    => "-m32",
34         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
35     },
36     "debug-steve-opt" => {
37         inherit_from     => [ "x86_64_asm" ],
38         cc               => "gcc",
39         cflags           => "$gcc_devteam_warn -pthread -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
40         thread_cflag     => "-D_REENTRANT",
41         lflags           => "-ldl",
42         bn_ops           => "SIXTY_FOUR_BIT_LONG",
43         perlasm_scheme   => "elf",
44         dso_scheme       => "dlfcn",
45         shared_target    => "linux-shared",
46         shared_cflag     => "-fPIC",
47         shared_ldflag    => "-m64",
48         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
49     },
50 );