This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mono / os / gc_wrapper.h
1 #include <config.h>
2
3 #ifdef HAVE_BOEHM_GC
4
5 #ifdef  HAVE_GC_GC_H
6 #include <gc/gc.h>
7 #include <gc/gc_typed.h>
8 #include <gc/gc_gcj.h>
9 #include <gc/gc_mark.h>
10 #else
11
12 #if defined(HAVE_GC_H) || defined(USE_INCLUDED_LIBGC)
13 #include <gc.h>
14 #include <gc_typed.h>
15 #include <gc_gcj.h>
16 #include <gc_mark.h>
17 #else
18 #error have boehm GC without headers, you probably need to install them by hand
19 #endif
20
21 #endif
22
23 #endif