Codebase list openssl / a345ce6
Remove last references to DEBUG_SAFESTACK The DEBUG_SAFESTACK preprocessor define is obsolete since 2008 when the non-safestack code was removed by commit 985de8634000. Reviewed-by: Paul Dale <paul.dale@oracle.com> (Merged from https://github.com/openssl/openssl/pull/9070) (cherry picked from commit d4f63f1c39c3908cd81fda07448144bafb9aba4a) Dr. Matthias St. Pierre 4 years ago
2 changed file(s) with 2 addition(s) and 5 deletion(s). Raw diff Collapse all Expand all
8383 inherit_from => [ 'BASE_unix', "x86_64_asm" ],
8484 cc => "clang",
8585 cflags => combine(join(' ', @gcc_devteam_warn),
86 "-Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wno-error=unused-const-variable -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
86 "-Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wno-error=unused-const-variable -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_UNUSED -g3 -O3 -pipe",
8787 threads("${BSDthreads}")),
8888 bn_ops => "SIXTY_FOUR_BIT_LONG",
8989 thread_scheme => "pthreads",
9898 cc => "clang",
9999 cflags => combine("-arch x86_64 -DL_ENDIAN",
100100 join(' ', @gcc_devteam_warn),
101 "-Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wno-error=unused-const-variable -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_SAFESTACK -DDEBUG_UNUSED -g3 -O3 -pipe",
101 "-Wno-error=overlength-strings -Wno-error=extended-offsetof -Wno-error=language-extension-token -Wno-error=unused-const-variable -Wstrict-overflow -Qunused-arguments -DBN_DEBUG -DCONF_DEBUG -DDEBUG_UNUSED -g3 -O3 -pipe",
102102 threads("${BSDthreads}")),
103103 sys_id => "MACOSX",
104104 bn_ops => "SIXTY_FOUR_BIT_LONG",
8686 # linked openssl executable has rather debugging value than
8787 # production quality.
8888 #
89 # DEBUG_SAFESTACK use type-safe stacks to enforce type-safety on stack items
90 # provided to stack calls. Generates unique stack functions for
91 # each possible stack type.
9289 # BN_LLONG use the type 'long long' in crypto/bn/bn.h
9390 # RC4_CHAR use 'char' instead of 'int' for RC4_INT in crypto/rc4/rc4.h
9491 # Following are set automatically by this script