From 28c67ed737e3f46d034e0b9e50d7e51f3f72d1d9 Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Mon, 2 Jul 2007 14:38:13 +0000 Subject: re PR libgomp/26308 (libgomp bootstrap failure on Tru64 UNIX V4.0F) PR libgomp/26308 * config/posix/lock.c (_XOPEN_SOURCE): Don't define on Tru64 UNIX. From-SVN: r126208 --- libgomp/ChangeLog | 5 +++++ libgomp/config/posix/lock.c | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/libgomp/ChangeLog b/libgomp/ChangeLog index a4abc44..6e5b09f 100644 --- a/libgomp/ChangeLog +++ b/libgomp/ChangeLog @@ -1,3 +1,8 @@ +2007-07-02 Rainer Orth + + PR libgomp/26308 + * config/posix/lock.c (_XOPEN_SOURCE): Don't define on Tru64 UNIX. + 2007-06-21 Jakub Jelinek PR middle-end/32362 diff --git a/libgomp/config/posix/lock.c b/libgomp/config/posix/lock.c index 062174d..59459bb 100644 --- a/libgomp/config/posix/lock.c +++ b/libgomp/config/posix/lock.c @@ -33,8 +33,12 @@ to do better and streamline the locking as well as reduce the size of the types exported. */ -/* We need Unix98 extensions to get recursive locks. */ +/* We need Unix98 extensions to get recursive locks. On Tru64 UNIX V4.0F, + the declarations are available without _XOPEN_SOURCE, which actually + breaks compilation. */ +#ifndef __osf__ #define _XOPEN_SOURCE 500 +#endif #include "libgomp.h" -- cgit v1.1