summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bnspeed.c
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/bn/bnspeed.c')
-rw-r--r--crypto/bn/bnspeed.c19
1 files changed, 9 insertions, 10 deletions
diff --git a/crypto/bn/bnspeed.c b/crypto/bn/bnspeed.c
index 0321f66d6c..31bf9fd795 100644
--- a/crypto/bn/bnspeed.c
+++ b/crypto/bn/bnspeed.c
@@ -69,11 +69,10 @@
#include <openssl/crypto.h>
#include <openssl/err.h>
-#ifndef MSDOS
+#if !defined(MSDOS) && (!defined(VMS) || defined(__DECC))
#define TIMES
#endif
-#ifndef VMS
#ifndef _IRIX
#include <time.h>
#endif
@@ -81,15 +80,15 @@
#include <sys/types.h>
#include <sys/times.h>
#endif
-#else /* VMS */
-#include <types.h>
-struct tms {
- time_t tms_utime;
- time_t tms_stime;
- time_t tms_uchild; /* I dunno... */
- time_t tms_uchildsys; /* so these names are a guess :-) */
- }
+
+/* Depending on the VMS version, the tms structure is perhaps defined.
+ The __TMS macro will show if it was. If it wasn't defined, we should
+ undefine TIMES, since that tells the rest of the program how things
+ should be handled. -- Richard Levitte */
+#if defined(VMS) && defined(__DECC) && !defined(__TMS)
+#undef TIMES
#endif
+
#ifndef TIMES
#include <sys/timeb.h>
#endif