From: Ivan Maidanski Date: Thu, 12 Apr 2012 20:02:47 +0000 (+0400) Subject: tests: Fix subthread_create to have PARALLEL_MARK as requested X-Git-Tag: gc7_3alpha2~19 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9e0800fa1ca6d20cb61174b1d40793e8109662a0;p=gc tests: Fix subthread_create to have PARALLEL_MARK as requested * tests/subthread_create.c: Include config.h if HAVE_CONFIG_H (to have PARALLEL_MARK defined if configured so). --- diff --git a/tests/subthread_create.c b/tests/subthread_create.c index 8b7b0879..cbdc5e3c 100644 --- a/tests/subthread_create.c +++ b/tests/subthread_create.c @@ -1,4 +1,9 @@ +#ifdef HAVE_CONFIG_H + /* For PARALLEL_MARK */ +# include "private/config.h" +#endif + #ifndef GC_THREADS # define GC_THREADS #endif