MSC_VER <= 1200 isn't supported; remove dead code
VisualStudio 6 and earlier aren't supported. Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4263)
This commit is contained in:
parent
32c1356302
commit
b2db9c18b2
4 changed files with 4 additions and 16 deletions
4
CHANGES
4
CHANGES
|
@ -9,6 +9,10 @@
|
|||
|
||||
Changes between 1.1.0f and 1.1.1 [xx XXX xxxx]
|
||||
|
||||
*) Some macro definitions to support VS6 have been removed. Visual
|
||||
Studio 6 has not worked since 1.1.0
|
||||
[Rich Salz]
|
||||
|
||||
*) Add ERR_clear_last_mark(), to allow callers to clear the last mark
|
||||
without clearing the errors.
|
||||
[Richard Levitte]
|
||||
|
|
|
@ -399,9 +399,6 @@ static SHA_LONG64 __fastcall __pull64be(const void *x)
|
|||
}
|
||||
# endif
|
||||
# define PULL64(x) __pull64be(&(x))
|
||||
# if _MSC_VER<=1200
|
||||
# pragma inline_depth(0)
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
# endif
|
||||
|
|
8
e_os.h
8
e_os.h
|
@ -196,14 +196,6 @@ static __inline unsigned int _strlen31(const char *str)
|
|||
}
|
||||
# endif
|
||||
# include <malloc.h>
|
||||
# if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
|
||||
/* compensate for bug in VC6 ctype.h */
|
||||
# undef isspace
|
||||
# undef isdigit
|
||||
# undef isalnum
|
||||
# undef isupper
|
||||
# undef isxdigit
|
||||
# endif
|
||||
# if defined(_MSC_VER) && !defined(_WIN32_WCE) && !defined(_DLL) && defined(stdin)
|
||||
# if _MSC_VER>=1300 && _MSC_VER<1600
|
||||
# undef stdin
|
||||
|
|
|
@ -23,11 +23,6 @@
|
|||
# include <openssl/bn.h>
|
||||
# include <openssl/opensslconf.h>
|
||||
|
||||
# if defined(_MSC_VER) && defined(_MIPS_) && (_MSC_VER/100==12)
|
||||
/* suppress "too big too optimize" warning */
|
||||
# pragma warning(disable:4959)
|
||||
# endif
|
||||
|
||||
static size_t crv_len = 0;
|
||||
static EC_builtin_curve *curves = NULL;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue