From: Richard Levitte Date: Mon, 2 May 2016 14:02:04 +0000 (+0200) Subject: Remove personal configs from version control X-Git-Tag: OpenSSL_1_1_0-pre6~968 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=85e2fe81136087961ef1b6a40058d3916db08d70;p=oweals%2Fopenssl.git Remove personal configs from version control As per a team decision back in 2014. Reviewed-by: Stephen Henson --- diff --git a/Configurations/99-personal-ben.conf b/Configurations/99-personal-ben.conf deleted file mode 100644 index 50b9315cf3..0000000000 --- a/Configurations/99-personal-ben.conf +++ /dev/null @@ -1,95 +0,0 @@ -## -*- mode: perl; -*- -## Personal configuration targets - -%targets = ( - "debug-ben" => { - cc => "gcc", - cflags => "$gcc_devteam_warn -DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DDEBUG_SAFESTACK -O2 -pipe", - thread_scheme => "(unknown)", - }, - "debug-ben-openbsd" => { - cc => "gcc", - cflags => "-DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -O2 -pedantic -Wall -Wshadow -Werror -pipe", - thread_scheme => "(unknown)", - }, - "debug-ben-openbsd-debug" => { - cc => "gcc", - cflags => "-DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DPEDANTIC -DDEBUG_SAFESTACK -DOPENSSL_OPENBSD_DEV_CRYPTO -DOPENSSL_NO_ASM -g3 -O2 -pedantic -Wall -Wshadow -Werror -pipe", - thread_scheme => "(unknown)", - }, - "debug-ben-debug" => { - cc => "gcc", - cflags => "$gcc_devteam_warn -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DOPENSSL_NO_HW_PADLOCK -g3 -O2 -pipe", - thread_scheme => "(unknown)", - }, - "debug-ben-debug-64" => { - inherit_from => [ "x86_64_asm" ], - cc => "gcc", - cflags => combine("$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe", - threads("${BSDthreads}")), - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - 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 => combine("$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", - threads("${BSDthreads}")), - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - 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 => combine("$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -pipe", - threads("${BSDthreads}")), - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - 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_scheme => "(unknown)", - }, - "debug-ben-no-opt" => { - cc => "gcc", - cflags => " -Wall -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations -DDEBUG_SAFESTACK -Werror -DL_ENDIAN -Wall -g3", - thread_scheme => "(unknown)", - }, - "debug-ben-strict" => { - cc => "gcc", - cflags => "-DBN_DEBUG -DREF_DEBUG -DCONF_DEBUG -DBN_CTX_DEBUG -DCONST_STRICT -O2 -Wall -Wshadow -Werror -Wpointer-arith -Wcast-qual -Wwrite-strings -pipe", - thread_scheme => "(unknown)", - }, - "debug-ben-darwin64" => { - inherit_from => [ "x86_64_asm" ], - cc => "cc", - cflags => combine("$gcc_devteam_warn -Wno-language-extension-token -Wno-extended-offsetof -arch x86_64 -O3 -DL_ENDIAN -DMD32_REG_T=int -Wall", - threads("-D_REENTRANT")), - sys_id => "MACOSX", - plib_lflags => "-Wl,-search_paths_first", - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - 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 deleted file mode 100644 index df9b49ce92..0000000000 --- a/Configurations/99-personal-bodo.conf +++ /dev/null @@ -1,21 +0,0 @@ -## -*- mode: perl; -*- -## Personal configuration targets - -%targets = ( - "debug-bodo" => { - inherit_from => [ "x86_64_asm" ], - cc => "gcc", - cflags => combine("$gcc_devteam_warn -Wno-error=overlength-strings -DBN_DEBUG -DBN_DEBUG_RAND -DCONF_DEBUG -m64 -DL_ENDIAN -DTERMIO -g -DMD32_REG_T=int", - threads("-D_REENTRANT")), - ex_libs => add(" ","-ldl"), - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - 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 deleted file mode 100644 index 5bddfaef83..0000000000 --- a/Configurations/99-personal-geoff.conf +++ /dev/null @@ -1,29 +0,0 @@ -## -*- mode: perl; -*- -## Personal configuration targets - -%targets = ( - "debug-geoff32" => { - cc => "gcc", - cflags => combine("-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -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", - threads("-D_REENTRANT")), - ex_libs => add(" ","-ldl"), - bn_ops => "BN_LLONG", - thread_scheme => "pthreads", - dso_scheme => "dlfcn", - shared_target => "linux-shared", - shared_cflag => "-fPIC", - shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", - }, - "debug-geoff64" => { - cc => "gcc", - cflags => combine("-DBN_DEBUG -DBN_DEBUG_RAND -DBN_STRICT -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", - threads("-D_REENTRANT")), - ex_libs => add(" ","-ldl"), - bn_ops => "SIXTY_FOUR_BIT_LONG RC4_CHAR", - thread_scheme => "pthreads", - 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 deleted file mode 100644 index c67252b510..0000000000 --- a/Configurations/99-personal-levitte.conf +++ /dev/null @@ -1,21 +0,0 @@ -## -*- mode: perl; -*- -## Personal configuration targets - -%targets = ( - "levitte-linux-elf" => { - inherit_from => [ "linux-elf" ], - cflags => add(picker(debug => "-ggdb -g3")), - defines => add(picker(debug => "LEVITTE_DEBUG"), - { separator => undef }), - build_scheme => [ "unified", "unix" ], - build_file => "Makefile", - }, - "levitte-linux-x86_64" => { - inherit_from => [ "linux-x86_64" ], - cflags => add(picker(debug => "-ggdb -g3")), - defines => add(picker(debug => "LEVITTE_DEBUG"), - { separator => undef }), - build_scheme => [ "unified", "unix" ], - build_file => "Makefile", - }, -); diff --git a/Configurations/99-personal-rse.conf b/Configurations/99-personal-rse.conf deleted file mode 100644 index 9999fcd3cf..0000000000 --- a/Configurations/99-personal-rse.conf +++ /dev/null @@ -1,12 +0,0 @@ -## -*- mode: perl; -*- -## Personal configuration targets - -%targets = ( - "debug-rse" => { - inherit_from => [ "x86_elf_asm" ], - cc => "cc", - cflags => "-DL_ENDIAN -pipe -O -g -ggdb3 -Wall", - thread_scheme => "(unknown)", - bn_ops => "BN_LLONG", - }, -); diff --git a/Configurations/99-personal-steve.conf b/Configurations/99-personal-steve.conf deleted file mode 100644 index 473fd240d4..0000000000 --- a/Configurations/99-personal-steve.conf +++ /dev/null @@ -1,50 +0,0 @@ -## -*- mode: perl; -*- -## Personal configuration targets - -%targets = ( - "debug-steve64" => { - inherit_from => [ "x86_64_asm" ], - cc => "gcc", - cflags => combine("$gcc_devteam_warn -pthread -m64 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g", - threads("-D_REENTRANT")), - ex_libs => add(" ","-ldl"), - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - 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 => combine("$gcc_devteam_warn -pthread -m32 -DL_ENDIAN -DCONF_DEBUG -g", - threads("-D_REENTRANT")), - lflags => "-rdynamic", - ex_libs => add(" ","-ldl"), - bn_ops => "BN_LLONG", - thread_scheme => "pthreads", - 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 => combine("$gcc_devteam_warn -pthread -m64 -O3 -DL_ENDIAN -DTERMIO -DCONF_DEBUG -g", - threads("-D_REENTRANT")), - ex_libs => add(" ","-ldl"), - bn_ops => "SIXTY_FOUR_BIT_LONG", - thread_scheme => "pthreads", - perlasm_scheme => "elf", - dso_scheme => "dlfcn", - shared_target => "linux-shared", - shared_cflag => "-fPIC", - shared_ldflag => "-m64", - shared_extension => ".so.\$(SHLIB_MAJOR).\$(SHLIB_MINOR)", - }, -);