[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Mon Mar 16 22:30:39 UTC 2015
The branch master has been updated
via e3c159648d19e0396b23dba02b85be2bf12ce24c (commit)
via a5250ec02f4d8b27d786c415ae882801972bfccd (commit)
from d52dcf8da7f15bf75fbf065bac2c4557470ea2fa (commit)
- Log -----------------------------------------------------------------
commit e3c159648d19e0396b23dba02b85be2bf12ce24c
Author: Richard Levitte <levitte at openssl.org>
Date: Mon Mar 16 22:36:19 2015 +0100
Do not keep TABLE in version control.
TABLE was always a debugging tool, and permitted everyone to see the
effect of changes in the string-format configs. The hash-format
configs being much more readable, distributing TABLE becomes much less
necessary.
Being able to produce a TABLE is kept, however, as it still is a
useful debugging tool for configs, what with multi-level inheritance
and all.
Reviewed-by: Andy Polyakov <appro at openssl.org>
commit a5250ec02f4d8b27d786c415ae882801972bfccd
Author: Richard Levitte <levitte at openssl.org>
Date: Thu Mar 12 14:58:07 2015 +0100
Configuration cleanup: personal configs
Move obviously personal configurations to personal files.
Note: those files should really not be in the main repo at all
Reviewed-by: Andy Polyakov <appro at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
.gitignore | 1 +
Configurations/90-team.conf | 214 ------------
Configurations/99-personal-ben.conf | 94 ++++++
Configurations/99-personal-bodo.conf | 23 ++
Configurations/99-personal-geoff.conf | 32 ++
Configurations/99-personal-levitte.conf | 59 ++++
Configurations/99-personal-rse.conf | 15 +
Configurations/99-personal-steve.conf | 49 +++
TABLE | 556 ++------------------------------
9 files changed, 304 insertions(+), 739 deletions(-)
create mode 100644 Configurations/99-personal-ben.conf
create mode 100644 Configurations/99-personal-bodo.conf
create mode 100644 Configurations/99-personal-geoff.conf
create mode 100644 Configurations/99-personal-levitte.conf
create mode 100644 Configurations/99-personal-rse.conf
create mode 100644 Configurations/99-personal-steve.conf
diff --git a/.gitignore b/.gitignore
index 4a624e8..2f27dc6 100644
--- a/.gitignore
+++ b/.gitignore
@@ -12,6 +12,7 @@
/Makefile.bak
/Makefile
/MINFO
+/TABLE
/*.a
/include
/*.pc
diff --git a/Configurations/90-team.conf b/Configurations/90-team.conf
index 66d1eae..0e78a14 100644
--- a/Configurations/90-team.conf
+++ b/Configurations/90-team.conf
@@ -17,114 +17,6 @@
thread_cflag => "(unknown)",
lflags => "-lefence",
},
- "debug-ben" => {
- cc => "gcc",
- cflags => "$gcc_devteam_warn -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DDEBUG_SAFESTACK -O2 -pipe",
- thread_cflag => "(unknown)",
- },
- "debug-ben-openbsd" => {
- cc => "gcc",
- cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -O2 -pedantic -Wall -Wshadow -Werror -pipe",
- thread_cflag => "(unknown)",
- },
- "debug-ben-openbsd-debug" => {
- cc => "gcc",
- cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -g3 -O2 -pedantic -Wall -Wshadow -Werror -pipe",
- thread_cflag => "(unknown)",
- },
- "debug-ben-debug" => {
- cc => "gcc",
- cflags => "$gcc_devteam_warn -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DOPENSSL_NO_HW_PADLOCK -g3 -O2 -pipe",
- thread_cflag => "(unknown)",
- },
- "debug-ben-debug-64" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "gcc",
- cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
- thread_cflag => "${BSDthreads}",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "bsd-gcc-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-ben-debug-64-clang" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "clang",
- cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
- thread_cflag => "${BSDthreads}",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "bsd-gcc-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-ben-debug-64-noopt" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "gcc",
- cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -pipe",
- thread_cflag => "${BSDthreads}",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "bsd-gcc-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-ben-macos" => {
- cc => "cc",
- cflags => "$gcc_devteam_warn -DOPENSSL_NO_ASM -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -arch i386 -O3 -DL_ENDIAN -g3 -pipe",
- thread_cflag => "(unknown)",
- },
- "debug-ben-no-opt" => {
- cc => "gcc",
- cflags => "-Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG -Werror -DL_ENDIAN -Wall -g3",
- thread_cflag => "(unknown)",
- },
- "debug-ben-strict" => {
- cc => "gcc",
- cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DCONST_STRICT -O2 -Wall -Wshadow -Werror -Wpointer-arith -Wcast-qual -Wwrite-strings -pipe",
- thread_cflag => "(unknown)",
- },
- "debug-ben-darwin64" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "cc",
- cflags => "$gcc_devteam_warn -Wno-language-extension-token -Wno-extended-offsetof -arch x86_64 -O3 -DL_ENDIAN -DMD32_REG_T=int -Wall",
- thread_cflag => "-D_REENTRANT",
- sys_id => "MACOSX",
- lflags => "-Wl,-search_paths_first%",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "macosx",
- dso_scheme => "dlfcn",
- shared_target => "darwin-shared",
- shared_cflag => "-fPIC -fno-common",
- shared_ldflag => "-arch x86_64 -dynamiclib",
- shared_extension => ".\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib",
- },
- "debug-rse" => {
- inherit_from => [ "x86_elf_asm" ],
- cc => "cc",
- cflags => "-DL_ENDIAN -pipe -O -g -ggdb3 -Wall",
- thread_cflag => "(unknown)",
- bn_ops => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
- },
- "debug-bodo" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "gcc",
- cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DBN_DEBUG_RAND -DCONF_DEBUG -DBIO_PAIR_DEBUG -m64 -DL_ENDIAN -DTERMIO -g -DMD32_REG_T=int",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_ldflag => "-m64",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- multilib => "64",
- },
"debug-erbridge" => {
inherit_from => [ "x86_64_asm" ],
cc => "gcc",
@@ -140,112 +32,6 @@
shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
multilib => "64",
},
- "debug-steve64" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "gcc",
- cflags => "$gcc_devteam_warn -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_ldflag => "-m64",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-steve32" => {
- inherit_from => [ "x86_elf_asm" ],
- cc => "gcc",
- cflags => "$gcc_devteam_warn -m32 -DL_ENDIAN -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g -pipe",
- thread_cflag => "-D_REENTRANT",
- lflags => "-rdynamic -ldl",
- bn_ops => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_ldflag => "-m32",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-steve-opt" => {
- inherit_from => [ "x86_64_asm" ],
- cc => "gcc",
- cflags => "$gcc_devteam_warn -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_ldflag => "-m64",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
-
- # Richard Levitte
- "debug-levitte-linux-noasm" => {
- inherit_from => [ "no_asm_filler" ],
- cc => "gcc",
- cflags => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -ggdb -g3 -Wall",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-levitte-linux-elf-extreme" => {
- inherit_from => [ "x86_elf_asm" ],
- cc => "gcc",
- cflags => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
- perlasm_scheme => "elf",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-levitte-linux-noasm-extreme" => {
- inherit_from => [ "no_asm_filler" ],
- cc => "gcc",
- cflags => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
- perlasm_scheme => "void",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
-
- "debug-geoff32" => {
- inherit_from => [ "no_asm_filler" ],
- cc => "gcc",
- cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "BN_LLONG",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
- "debug-geoff64" => {
- inherit_from => [ "no_asm_filler" ],
- cc => "gcc",
- cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
- thread_cflag => "-D_REENTRANT",
- lflags => "-ldl",
- bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR",
- dso_scheme => "dlfcn",
- shared_target => "linux-shared",
- shared_cflag => "-fPIC",
- shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
- },
"debug-linux-pentium" => {
inherit_from => [ "x86_elf_asm" ],
cc => "gcc",
diff --git a/Configurations/99-personal-ben.conf b/Configurations/99-personal-ben.conf
new file mode 100644
index 0000000..94ea6d0
--- /dev/null
+++ b/Configurations/99-personal-ben.conf
@@ -0,0 +1,94 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "debug-ben" => {
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DDEBUG_SAFESTACK -O2 -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-openbsd" => {
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -O2 -pedantic -Wall -Wshadow -Werror -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-openbsd-debug" => {
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -g3 -O2 -pedantic -Wall -Wshadow -Werror -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-debug" => {
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DOPENSSL_NO_HW_PADLOCK -g3 -O2 -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-debug-64" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
+ thread_cflag => "${BSDthreads}",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "bsd-gcc-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-ben-debug-64-clang" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "clang",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
+ thread_cflag => "${BSDthreads}",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "bsd-gcc-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-ben-debug-64-noopt" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -pipe",
+ thread_cflag => "${BSDthreads}",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "bsd-gcc-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-ben-macos" => {
+ cc => "cc",
+ cflags => "$gcc_devteam_warn -DOPENSSL_NO_ASM -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -DOPENSSL_THREADS -D_REENTRANT -DDSO_DLFCN -DHAVE_DLFCN_H -arch i386 -O3 -DL_ENDIAN -g3 -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-no-opt" => {
+ cc => "gcc",
+ cflags => " -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG -Werror -DL_ENDIAN -Wall -g3",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-strict" => {
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_CTX_DEBUG -DCRYPTO_MDEBUG -DCONST_STRICT -O2 -Wall -Wshadow -Werror -Wpointer-arith -Wcast-qual -Wwrite-strings -pipe",
+ thread_cflag => "(unknown)",
+ },
+ "debug-ben-darwin64" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "cc",
+ cflags => "$gcc_devteam_warn -Wno-language-extension-token -Wno-extended-offsetof -arch x86_64 -O3 -DL_ENDIAN -DMD32_REG_T=int -Wall",
+ thread_cflag => "-D_REENTRANT",
+ sys_id => "MACOSX",
+ lflags => "-Wl,-search_paths_first%",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "macosx",
+ dso_scheme => "dlfcn",
+ shared_target => "darwin-shared",
+ shared_cflag => "-fPIC -fno-common",
+ shared_ldflag => "-arch x86_64 -dynamiclib",
+ shared_extension => ".\$(SHLIB_MAJOR).\$(SHLIB_MINOR).dylib",
+ },
+);
diff --git a/Configurations/99-personal-bodo.conf b/Configurations/99-personal-bodo.conf
new file mode 100644
index 0000000..c9a7534
--- /dev/null
+++ b/Configurations/99-personal-bodo.conf
@@ -0,0 +1,23 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "debug-bodo" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DBN_DEBUG_RAND -DCONF_DEBUG -DBIO_PAIR_DEBUG -m64 -DL_ENDIAN -DTERMIO -g -DMD32_REG_T=int",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m64",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ multilib => "64",
+ },
+);
diff --git a/Configurations/99-personal-geoff.conf b/Configurations/99-personal-geoff.conf
new file mode 100644
index 0000000..adf0990
--- /dev/null
+++ b/Configurations/99-personal-geoff.conf
@@ -0,0 +1,32 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "debug-geoff32" => {
+ inherit_from => [ "no_asm_filler" ],
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-geoff64" => {
+ inherit_from => [ "no_asm_filler" ],
+ cc => "gcc",
+ cflags => "-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -DPURIFY -DOPENSSL_NO_DEPRECATED -DOPENSSL_NO_ASM -DOPENSSL_NO_INLINE_ASM -DL_ENDIAN -DTERMIO -DPEDANTIC -O1 -ggdb2 -Wall -Werror -Wundef -pedantic -Wshadow -Wpointer-arith -Wbad-function-cast -Wcast-align -Wsign-compare -Wmissing-prototypes -Wmissing-declarations -Wno-long-long",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+);
diff --git a/Configurations/99-personal-levitte.conf b/Configurations/99-personal-levitte.conf
new file mode 100644
index 0000000..18fbcdc
--- /dev/null
+++ b/Configurations/99-personal-levitte.conf
@@ -0,0 +1,59 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "levitte-linux-elf" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "gcc",
+ cflags => "-DL_ENDIAN -Wall",
+ debug_cflags => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG-ggdb -g3",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-levitte-linux-noasm" => {
+ inherit_from => [ "no_asm_filler" ],
+ cc => "gcc",
+ cflags => "-DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -ggdb -g3 -Wall",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-levitte-linux-elf-extreme" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "gcc",
+ cflags => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-levitte-linux-noasm-extreme" => {
+ inherit_from => [ "no_asm_filler" ],
+ cc => "gcc",
+ cflags => "-DLEVITTE_DEBUG -DREF_CHECK -DCONF_DEBUG -DBN_DEBUG -DBN_DEBUG_RAND -DCRYPTO_MDEBUG -DENGINE_CONF_DEBUG -DOPENSSL_NO_ASM -DL_ENDIAN -DPEDANTIC -ggdb -g3 -pedantic -ansi -Wall -W -Wundef -Wshadow -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wno-long-long -Wundef -Wconversion -pipe",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT",
+ perlasm_scheme => "void",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+);
diff --git a/Configurations/99-personal-rse.conf b/Configurations/99-personal-rse.conf
new file mode 100644
index 0000000..e9318fc
--- /dev/null
+++ b/Configurations/99-personal-rse.conf
@@ -0,0 +1,15 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "debug-rse" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "cc",
+ cflags => "-DL_ENDIAN -pipe -O -g -ggdb3 -Wall",
+ thread_cflag => "(unknown)",
+ bn_ops => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
+ },
+);
diff --git a/Configurations/99-personal-steve.conf b/Configurations/99-personal-steve.conf
new file mode 100644
index 0000000..454b283
--- /dev/null
+++ b/Configurations/99-personal-steve.conf
@@ -0,0 +1,49 @@
+## Personal configuration targets
+##
+## If you edit this file, run this command before committing
+## make -f Makefile.org TABLE
+## This file is interpolated by the Configure script.
+
+%targets = (
+ "debug-steve64" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m64",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-steve32" => {
+ inherit_from => [ "x86_elf_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -m32 -DL_ENDIAN -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g -pipe",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-rdynamic -ldl",
+ bn_ops => "BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m32",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+ "debug-steve-opt" => {
+ inherit_from => [ "x86_64_asm" ],
+ cc => "gcc",
+ cflags => "$gcc_devteam_warn -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -DDEBUG_SAFESTACK -Wno-overlength-strings -g",
+ thread_cflag => "-D_REENTRANT",
+ lflags => "-ldl",
+ bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_UNROLL",
+ perlasm_scheme => "elf",
+ dso_scheme => "dlfcn",
+ shared_target => "linux-shared",
+ shared_cflag => "-fPIC",
+ shared_ldflag => "-m64",
+ shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)",
+ },
+);
diff --git a/TABLE b/TABLE
index dfd39b8..f0e8b9b 100644
--- a/TABLE
+++ b/TABLE
@@ -950,44 +950,6 @@ $ranlib =
$arflags = -X32
$multilib =
-*** aix3-cc
-$cc = cc
-$cflags = -O -DB_ENDIAN -qmaxmem=16384
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = (unknown)
-$sys_id = AIX
-$lflags =
-$debug_lflags =
-$release_lflags =
-$bn_ops = BN_LLONG RC4_CHAR
-$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 =
-
*** aix64-cc
$cc = cc
$cflags = -q64 -O -DB_ENDIAN -qmaxmem=16384 -qro -qroconst
@@ -1216,44 +1178,6 @@ $ranlib =
$arflags =
$multilib =
-*** aux3-gcc
-$cc = gcc
-$cflags = -O2 -DTERMIO
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = (unknown)
-$sys_id = AUX
-$lflags = -lbsd
-$debug_lflags =
-$release_lflags =
-$bn_ops = RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR
-$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 =
-
*** bsdi-elf-gcc
$cc = gcc
$cflags = -DPERL5 -DL_ENDIAN -fomit-frame-pointer -O3 -march=i486 -Wall
@@ -1864,7 +1788,7 @@ $multilib =
*** debug-ben-no-opt
$cc = gcc
-$cflags = -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG -Werror -DL_ENDIAN -Wall -g3
+$cflags = -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DDEBUG_SAFESTACK -DCRYPTO_MDEBUG -Werror -DL_ENDIAN -Wall -g3
$debug_cflags =
$release_cflags =
$unistd =
@@ -2698,82 +2622,6 @@ $ranlib =
$arflags =
$multilib =
-*** hpux-cc
-$cc = cc
-$cflags = -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY -Ae +ESlit +O2 -z
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = (unknown)
-$sys_id =
-$lflags = -Wl,+s -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = DES_PTR DES_UNROLL DES_RISC1
-$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 = void
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = +Z
-$shared_ldflag = -b
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
-*** hpux-gcc
-$cc = gcc
-$cflags = -DB_ENDIAN -DBN_DIV2W -O3
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = (unknown)
-$sys_id =
-$lflags = -Wl,+s -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = DES_PTR DES_UNROLL DES_RISC1
-$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 = void
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = -fPIC
-$shared_ldflag = -shared
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
*** hpux-ia64-cc
$cc = cc
$cflags = -Ae +DD32 +O2 +Olit=all -z -DB_ENDIAN -D_REENTRANT
@@ -2850,120 +2698,6 @@ $ranlib =
$arflags =
$multilib = /hpux32
-*** hpux-parisc-cc
-$cc = cc
-$cflags = +O3 +Optrs_strongly_typed -Ae +ESlit -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags = -Wl,+s -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT
-$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 = void
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = +Z
-$shared_ldflag = -b
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
-*** hpux-parisc-cc-o4
-$cc = cc
-$cflags = -Ae +O4 +ESlit -z -DB_ENDIAN -DBN_DIV2W -DMD32_XARRAY
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags = -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
-$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 = void
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = +Z
-$shared_ldflag = -b
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
-*** hpux-parisc-gcc
-$cc = gcc
-$cflags = -O3 -DB_ENDIAN -DBN_DIV2W
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags = -Wl,+s -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = BN_LLONG DES_PTR DES_UNROLL DES_RISC1
-$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 = void
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = -fPIC
-$shared_ldflag = -shared
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
*** hpux-parisc1_1-cc
$cc = cc
$cflags = +DA1.1 +O3 +Optrs_strongly_typed -Ae +ESlit -DB_ENDIAN -DMD32_XARRAY
@@ -3040,82 +2774,6 @@ $ranlib =
$arflags =
$multilib = /pa1.1
-*** hpux-parisc2-cc
-$cc = cc
-$cflags = +DA2.0 +DS2.0 +O3 +Optrs_strongly_typed -Ae +ESlit -DB_ENDIAN -DMD32_XARRAY -D_REENTRANT
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag =
-$sys_id =
-$lflags = -Wl,+s -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = SIXTY_FOUR_BIT MD2_CHAR RC4_INDEX RC4_CHAR DES_UNROLL DES_RISC1 DES_INT
-$cpuid_obj = pariscid.o
-$bn_obj = pa-risc2.o parisc-mont.o
-$ec_obj =
-$des_obj =
-$aes_obj = aes_core.o aes_cbc.o aes-parisc.o
-$bf_obj =
-$md5_obj =
-$sha1_obj = sha1-parisc.o sha256-parisc.o sha512-parisc.o
-$cast_obj =
-$rc4_obj = rc4-parisc.o
-$rmd160_obj =
-$rc5_obj =
-$wp_obj =
-$cmll_obj =
-$modes_obj = ghash-parisc.o
-$engines_obj =
-$perlasm_scheme = 32
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = +Z
-$shared_ldflag = -b
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib = /pa20_32
-
-*** hpux-parisc2-gcc
-$cc = gcc
-$cflags = -march=2.0 -O3 -DB_ENDIAN -D_REENTRANT
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag =
-$sys_id =
-$lflags = -Wl,+s -ldld
-$debug_lflags =
-$release_lflags =
-$bn_ops = SIXTY_FOUR_BIT RC4_CHAR RC4_CHUNK DES_PTR DES_UNROLL DES_RISC1
-$cpuid_obj = pariscid.o
-$bn_obj = pa-risc2.o parisc-mont.o
-$ec_obj =
-$des_obj =
-$aes_obj = aes_core.o aes_cbc.o aes-parisc.o
-$bf_obj =
-$md5_obj =
-$sha1_obj = sha1-parisc.o sha256-parisc.o sha512-parisc.o
-$cast_obj =
-$rc4_obj = rc4-parisc.o
-$rmd160_obj =
-$rc5_obj =
-$wp_obj =
-$cmll_obj =
-$modes_obj = ghash-parisc.o
-$engines_obj =
-$perlasm_scheme = 32
-$dso_scheme = dl
-$shared_target= hpux-shared
-$shared_cflag = -fPIC
-$shared_ldflag = -shared
-$shared_extension = .sl.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib = /pa20_32
-
*** hpux64-ia64-cc
$cc = cc
$cflags = -Ae +DD64 +O3 +Olit=all -z -DB_ENDIAN -D_REENTRANT
@@ -3610,10 +3268,10 @@ $ranlib =
$arflags =
$multilib = 64
-*** linux-aarch64
+*** levitte-linux-elf
$cc = gcc
-$cflags = -O3 -Wall
-$debug_cflags =
+$cflags = -DL_ENDIAN -Wall
+$debug_cflags = -DLEVITTE_DEBUG -DBN_DEBUG -DREF_CHECK -DCONF_DEBUG -DCRYPTO_MDEBUG-ggdb -g3
$release_cflags =
$unistd =
$thread_cflag = -D_REENTRANT
@@ -3621,24 +3279,24 @@ $sys_id =
$lflags = -ldl
$debug_lflags =
$release_lflags =
-$bn_ops = SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR
-$cpuid_obj = armcap.o arm64cpuid.o mem_clr.o
-$bn_obj =
-$ec_obj =
-$des_obj =
-$aes_obj = aes_core.o aes_cbc.o aesv8-armx.o
-$bf_obj =
-$md5_obj =
-$sha1_obj = sha1-armv8.o sha256-armv8.o sha512-armv8.o
-$cast_obj =
-$rc4_obj =
-$rmd160_obj =
-$rc5_obj =
-$wp_obj =
-$cmll_obj =
-$modes_obj = ghashv8-armx.o
-$engines_obj =
-$perlasm_scheme = linux64
+$bn_ops = BN_LLONG DES_PTR DES_RISC1 DES_UNROLL RC4_INDEX MD2_INT
+$cpuid_obj = x86cpuid.o
+$bn_obj = bn-586.o co-586.o x86-mont.o x86-gf2m.o
+$ec_obj = ecp_nistz256.o ecp_nistz256-x86.o
+$des_obj = des-586.o crypt586.o
+$aes_obj = aes-586.o vpaes-x86.o aesni-x86.o
+$bf_obj = bf-586.o
+$md5_obj = md5-586.o
+$sha1_obj = sha1-586.o sha256-586.o sha512-586.o
+$cast_obj = cast-586.o
+$rc4_obj = rc4-586.o
+$rmd160_obj = rmd-586.o
+$rc5_obj = rc5-586.o
+$wp_obj = wp_block.o wp-mmx.o
+$cmll_obj = cmll-x86.o
+$modes_obj = ghash-x86.o
+$engines_obj = e_padlock-x86.o
+$perlasm_scheme = elf
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
@@ -3648,47 +3306,9 @@ $ranlib =
$arflags =
$multilib =
-*** linux-alpha+bwx-ccc
-$cc = ccc
-$cflags = -fast -readonly_strings -DL_ENDIAN
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags =
-$debug_lflags =
-$release_lflags =
-$bn_ops = SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL
-$cpuid_obj = alphacpuid.o
-$bn_obj = bn_asm.o alpha-mont.o
-$ec_obj =
-$des_obj =
-$aes_obj =
-$bf_obj =
-$md5_obj =
-$sha1_obj = sha1-alpha.o
-$cast_obj =
-$rc4_obj =
-$rmd160_obj =
-$rc5_obj =
-$wp_obj =
-$cmll_obj =
-$modes_obj = ghash-alpha.o
-$engines_obj =
-$perlasm_scheme = void
-$dso_scheme =
-$shared_target=
-$shared_cflag =
-$shared_ldflag =
-$shared_extension =
-$ranlib =
-$arflags =
-$multilib =
-
-*** linux-alpha+bwx-gcc
+*** linux-aarch64
$cc = gcc
-$cflags = -O3 -DL_ENDIAN
+$cflags = -O3 -Wall
$debug_cflags =
$release_cflags =
$unistd =
@@ -3697,24 +3317,24 @@ $sys_id =
$lflags = -ldl
$debug_lflags =
$release_lflags =
-$bn_ops = SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_RISC1 DES_UNROLL
-$cpuid_obj = alphacpuid.o
-$bn_obj = bn_asm.o alpha-mont.o
+$bn_ops = SIXTY_FOUR_BIT_LONG RC4_CHAR RC4_CHUNK DES_INT DES_UNROLL BF_PTR
+$cpuid_obj = armcap.o arm64cpuid.o mem_clr.o
+$bn_obj =
$ec_obj =
$des_obj =
-$aes_obj =
+$aes_obj = aes_core.o aes_cbc.o aesv8-armx.o
$bf_obj =
$md5_obj =
-$sha1_obj = sha1-alpha.o
+$sha1_obj = sha1-armv8.o sha256-armv8.o sha512-armv8.o
$cast_obj =
$rc4_obj =
$rmd160_obj =
$rc5_obj =
$wp_obj =
$cmll_obj =
-$modes_obj = ghash-alpha.o
+$modes_obj = ghashv8-armx.o
$engines_obj =
-$perlasm_scheme = void
+$perlasm_scheme = linux64
$dso_scheme = dlfcn
$shared_target= linux-shared
$shared_cflag = -fPIC
@@ -3724,44 +3344,6 @@ $ranlib =
$arflags =
$multilib =
-*** linux-alpha-ccc
-$cc = ccc
-$cflags = -fast -readonly_strings -DL_ENDIAN
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags =
-$debug_lflags =
-$release_lflags =
-$bn_ops = SIXTY_FOUR_BIT_LONG RC4_CHUNK DES_INT DES_PTR DES_RISC1 DES_UNROLL
-$cpuid_obj = alphacpuid.o
-$bn_obj = bn_asm.o alpha-mont.o
-$ec_obj =
-$des_obj =
-$aes_obj =
-$bf_obj =
-$md5_obj =
-$sha1_obj = sha1-alpha.o
-$cast_obj =
-$rc4_obj =
-$rmd160_obj =
-$rc5_obj =
-$wp_obj =
-$cmll_obj =
-$modes_obj = ghash-alpha.o
-$engines_obj =
-$perlasm_scheme = void
-$dso_scheme =
-$shared_target=
-$shared_cflag =
-$shared_ldflag =
-$shared_extension =
-$ranlib =
-$arflags =
-$multilib =
-
*** linux-alpha-gcc
$cc = gcc
$cflags = -O3 -DL_ENDIAN
@@ -5396,82 +4978,6 @@ $ranlib =
$arflags =
$multilib =
-*** solaris-sparcv7-cc
-$cc = cc
-$cflags = -xO5 -xstrconst -xdepend -Xa -DB_ENDIAN -DBN_DIV2W
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags = -lsocket -lnsl -ldl
-$debug_lflags =
-$release_lflags =
-$bn_ops = BN_LLONG RC4_CHAR RC4_CHUNK DES_PTR DES_RISC1 DES_UNROLL BF_PTR
-$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 = void
-$dso_scheme = dlfcn
-$shared_target= solaris-shared
-$shared_cflag = -KPIC
-$shared_ldflag = -G -dy -z text
-$shared_extension = .so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
-*** solaris-sparcv7-gcc
-$cc = gcc
-$cflags = -O3 -fomit-frame-pointer -Wall -DB_ENDIAN -DBN_DIV2W
-$debug_cflags =
-$release_cflags =
-$unistd =
-$thread_cflag = -D_REENTRANT
-$sys_id =
-$lflags = -lsocket -lnsl -ldl
-$debug_lflags =
-$release_lflags =
-$bn_ops = BN_LLONG RC4_CHAR RC4_CHUNK DES_UNROLL BF_PTR
-$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 = void
-$dso_scheme = dlfcn
-$shared_target= solaris-shared
-$shared_cflag = -fPIC
-$shared_ldflag = -shared
-$shared_extension = .so.$(SHLIB_MAJOR).$(SHLIB_MINOR)
-$ranlib =
-$arflags =
-$multilib =
-
*** solaris-sparcv8-cc
$cc = cc
$cflags = -xarch=v8 -xstrconst -Xa -DB_ENDIAN -DBN_DIV2W
More information about the openssl-commits
mailing list