Make sure sysconf exists (it doesn't in the VMS C RTL lesser than version 7).
authorRichard Levitte <levitte@openssl.org>
Mon, 18 Nov 2002 23:05:50 +0000 (23:05 +0000)
committerRichard Levitte <levitte@openssl.org>
Mon, 18 Nov 2002 23:05:50 +0000 (23:05 +0000)
apps/speed.c

index 41fbaf36f72d074fa2c90ff62b24d1b62e6e7f58..b5e17a1f29935884451dc3a018c7d75cb425cb85 100644 (file)
 
 /* The following if from times(3) man page.  It may need to be changed */
 #ifndef HZ
-# ifdef _SC_CLK_TCK
+# if defined(_SC_CLK_TCK) \
+     && (!defined(OPENSSL_SYS_VMS) || __CTRL_VER >= 70000000)
 #  define HZ ((double)sysconf(_SC_CLK_TCK))
 # else
 #  ifndef CLK_TCK