PR: 2717
authorDr. Stephen Henson <steve@openssl.org>
Sun, 12 Feb 2012 18:25:11 +0000 (18:25 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Sun, 12 Feb 2012 18:25:11 +0000 (18:25 +0000)
Submitted by: Tim Rice <tim@multitalents.net>

Make compilation work on OpenServer 5.0.7

apps/apps.c
crypto/ui/ui_openssl.c

index 153e723dc834786168b34863c4d73785f4f6ea51..cf6891176b6b56626b5e340ddbddddbadd252655 100644 (file)
  *
  */
 
-#ifndef _POSIX_C_SOURCE
+#if !defined(_POSIX_C_SOURCE) && defined(OPENSSL_SYS_VMS)
 #define _POSIX_C_SOURCE 2      /* On VMS, you need to define this to get
                                   the declaration of fileno().  The value
                                   2 is to make sure no function defined
index 1bc25f48d5e1dac06b29562355d801781b6f32f9..5832a73cf59ab979744642b530c2531242746f43 100644 (file)
  * sigaction and fileno included. -pedantic would be more appropriate for
  * the intended purposes, but we can't prevent users from adding -ansi.
  */
-#ifndef _POSIX_C_SOURCE
+#if !defined(_POSIX_C_SOURCE) && defined(OPENSSL_SYS_VMS)
 #define _POSIX_C_SOURCE 2
 #endif
 #include <signal.h>