From e9bbfa5340907d09378e518bfa6c87bb774ff397 Mon Sep 17 00:00:00 2001
From: andreast <andreast@138bc75d-0d04-0410-961f-82ee72b054a4>
Date: Mon, 16 Aug 2004 16:32:26 +0000
Subject: [PATCH] 2004-08-16  Andreas Tobler  <a.tobler@schweiz.ch>

	* solaris_threads.c: Remove ifdef around #include "private/gc_priv.h"
	since they're not known at this time.
	* solaris_pthreads.c: Likewise.


git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@86062 138bc75d-0d04-0410-961f-82ee72b054a4
---
 boehm-gc/ChangeLog          | 6 ++++++
 boehm-gc/solaris_pthreads.c | 5 ++---
 boehm-gc/solaris_threads.c  | 5 +----
 3 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog
index c9281e707d96..c7895bad1562 100644
--- a/boehm-gc/ChangeLog
+++ b/boehm-gc/ChangeLog
@@ -1,3 +1,9 @@
+2004-08-16  Andreas Tobler  <a.tobler@schweiz.ch>
+
+	* solaris_threads.c: Remove ifdef around #include "private/gc_priv.h"
+	since they're not known at this time.
+	* solaris_pthreads.c: Likewise.
+
 2004-08-15  Andreas Tobler  <a.tobler@schweiz.ch>
 
 	PR target/14931
diff --git a/boehm-gc/solaris_pthreads.c b/boehm-gc/solaris_pthreads.c
index 1e43d0904f9a..90f60058f6d5 100644
--- a/boehm-gc/solaris_pthreads.c
+++ b/boehm-gc/solaris_pthreads.c
@@ -16,9 +16,8 @@
  * Modified by Peter C. for Solaris Posix Threads.
  */
 
-# if defined(GC_SOLARIS_PTHREADS) || defined(GC_THREADS)
-# include "private/gc_priv.h"
-# endif
+#include "private/gc_priv.h"
+
 # if defined(GC_SOLARIS_PTHREADS)
 # include <pthread.h>
 # include <thread.h>
diff --git a/boehm-gc/solaris_threads.c b/boehm-gc/solaris_threads.c
index 0a07690a27aa..b599c5816ad2 100644
--- a/boehm-gc/solaris_threads.c
+++ b/boehm-gc/solaris_threads.c
@@ -16,10 +16,7 @@
  */
 /* Boehm, September 14, 1994 4:44 pm PDT */
 
-# if defined(GC_SOLARIS_THREADS) || defined(GC_SOLARIS_PTHREADS) \
-     || defined(GC_THREADS)
-#   include "private/gc_priv.h"
-# endif
+#include "private/gc_priv.h"
 
 # if defined(GC_SOLARIS_THREADS) || defined(GC_SOLARIS_PTHREADS)
 # include "private/solaris_threads.h"
-- 
GitLab