aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2005-05-21 17:39:43 +0000
committerRichard Levitte <levitte@openssl.org>2005-05-21 17:39:43 +0000
commitfe8bf9560dbe5998e8857869508d2fe4b4f5dbf6 (patch)
tree0622ee9caa7d93452c4370eb2900b1625dd92593
parente4c9b85e65b6d5f0394ae122e0534de9a8becad5 (diff)
downloadopenssl-fe8bf9560dbe5998e8857869508d2fe4b4f5dbf6.tar.gz
When _XOPEN_SOURCE is defined, make sure it's defined to 500. Required in
http://www.opengroup.org/onlinepubs/007908799/xsh/compilation.html. Notified by David Wolfe <dwolfe5272@yahoo.com>
-rw-r--r--crypto/rand/randfile.c2
-rw-r--r--ssl/kssl.c2
-rw-r--r--ssl/ssltest.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/crypto/rand/randfile.c b/crypto/rand/randfile.c
index dda020fb10..d69bdf8b8a 100644
--- a/crypto/rand/randfile.c
+++ b/crypto/rand/randfile.c
@@ -57,7 +57,7 @@
*/
/* We need to define this to get macros like S_IFBLK and S_IFCHR */
-#define _XOPEN_SOURCE 1
+#define _XOPEN_SOURCE 500
#include <errno.h>
#include <stdio.h>
diff --git a/ssl/kssl.c b/ssl/kssl.c
index 49602bb878..b8192cdfc7 100644
--- a/ssl/kssl.c
+++ b/ssl/kssl.c
@@ -68,7 +68,7 @@
#include <openssl/opensslconf.h>
-#define _XOPEN_SOURCE /* glibc2 needs this to declare strptime() */
+#define _XOPEN_SOURCE 500 /* glibc2 needs this to declare strptime() */
#include <time.h>
#undef _XOPEN_SOURCE /* To avoid clashes with anything else... */
#include <string.h>
diff --git a/ssl/ssltest.c b/ssl/ssltest.c
index f8e86c3ceb..e47af50a4b 100644
--- a/ssl/ssltest.c
+++ b/ssl/ssltest.c
@@ -128,7 +128,7 @@
#define USE_SOCKETS
#include "e_os.h"
-#define _XOPEN_SOURCE 1 /* Or isascii won't be declared properly on
+#define _XOPEN_SOURCE 500 /* Or isascii won't be declared properly on
VMS (at least with DECompHP C). */
#include <ctype.h>