Add BIO_ADDR_clear to libeay.num
[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         ex_libs          => "-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",
29         ex_libs          => "-ldl",
30         bn_ops           => "BN_LLONG",
31         dso_scheme       => "dlfcn",
32         shared_target    => "linux-shared",
33         shared_cflag     => "-fPIC",
34         shared_ldflag    => "-m32",
35         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
36     },
37     "debug-steve-opt" => {
38         inherit_from     => [ "x86_64_asm" ],
39         cc               => "gcc",
40         cflags           => "$gcc_devteam_warn -pthread -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g",
41         thread_cflag     => "-D_REENTRANT",
42         ex_libs          => "-ldl",
43         bn_ops           => "SIXTY_FOUR_BIT_LONG",
44         perlasm_scheme   => "elf",
45         dso_scheme       => "dlfcn",
46         shared_target    => "linux-shared",
47         shared_cflag     => "-fPIC",
48         shared_ldflag    => "-m64",
49         shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
50     },
51 );