summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-05-25 23:35:54 +0200
committerRichard Levitte <levitte@openssl.org>2016-05-26 00:48:23 +0200
commitdc6b5c7beb9f637f6cf5b5412e810bd0a9e1983b (patch)
tree6fd7873ecd3c8fd1274654371adfffa945b37c72 /e_os.h
parent656bbdc68c4f6e79209cb7622fac0ca1301dee24 (diff)
Handle Visual C warning about non-standard function names.
Visual C version from version 2003 complain about certain function names, for example: apps\apps.c(2572) : warning C4996: 'open': The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _open. See online help for details. This adds preprocessor aliases for them in e_os.h. Additionally, crypto/conf/conf_lib.c needs to include e_os.h to catch those aliases. RT#4488 RT#4489 Reviewed-by: Matt Caswell <matt@openssl.org>
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/e_os.h b/e_os.h
index 1c4c204c9a..53e0ecf800 100644
--- a/e_os.h
+++ b/e_os.h
@@ -469,6 +469,13 @@ struct servent *PASCAL getservbyname(const char *, const char *);
# if defined(OPENSSL_SYS_WINDOWS)
# define strcasecmp _stricmp
# define strncasecmp _strnicmp
+# if (_MSC_VER >= 1310)
+# define open _open
+# define fdopen _fdopen
+# define close _close
+# define strdup _strdup
+# define unlink _unlink
+# endif
# elif defined(OPENSSL_SYS_VMS)
/* VMS below version 7.0 doesn't have strcasecmp() */
# include "internal/o_str.h"