summaryrefslogtreecommitdiffstats
path: root/e_os.h
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-09-21 05:42:01 +0000
committerRichard Levitte <levitte@openssl.org>2000-09-21 05:42:01 +0000
commitc5f8bbbc0b94f3ec3f3f8f2aabbe3cc81f7b8158 (patch)
treec8f72ab928a04717188255fc7887f0a07d12ab28 /e_os.h
parent4759abc5f268710bb5b75b38152958d7a1a3f95f (diff)
Portability patch for HP MPE/iX. Submitted by Mark Bixby <mark_bixby@hp.com>
Diffstat (limited to 'e_os.h')
-rw-r--r--e_os.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/e_os.h b/e_os.h
index 77efc6e35b..0c0784f9a9 100644
--- a/e_os.h
+++ b/e_os.h
@@ -275,6 +275,9 @@ extern "C" {
# define NO_SYS_PARAM_H
# else
/* !defined VMS */
+# ifdef MPE
+# define NO_SYS_PARAM_H
+# endif
# ifdef OPENSSL_UNISTD
# include OPENSSL_UNISTD
# else
@@ -344,7 +347,9 @@ extern HINSTANCE _hInstance;
# ifndef NO_SYS_PARAM_H
# include <sys/param.h>
# endif
-# include <sys/time.h> /* Needed under linux for FD_XXX */
+# ifndef MPE
+# include <sys/time.h> /* Needed under linux for FD_XXX */
+# endif
# include <netdb.h>
# if defined(VMS) && !defined(__DECC)