From 1f99794cdb87db713012e4550ae2350acd964be5 Mon Sep 17 00:00:00 2001 From: David Rose Date: Tue, 7 Aug 2007 01:29:51 +0000 Subject: [PATCH] oops, compile when not HAVE_THREADS --- panda/src/pipeline/thread.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panda/src/pipeline/thread.cxx b/panda/src/pipeline/thread.cxx index 07058a75a6..6aa78f786d 100644 --- a/panda/src/pipeline/thread.cxx +++ b/panda/src/pipeline/thread.cxx @@ -124,7 +124,7 @@ output(ostream &out) const { //////////////////////////////////////////////////////////////////// void Thread:: write_status(ostream &out) { -#ifdef SIMPLE_THREADS +#if defined(HAVE_THREADS) && defined(SIMPLE_THREADS) ThreadImpl::write_status(out); #endif }