X-Git-Url: http://nsz.repo.hu/git/?a=blobdiff_plain;f=config.h.in;h=1478e95e03312a49a3e4918a1ac95de656eecf45;hb=ac396855358f04bc4bf1105053241cb4580f0e25;hp=e135d287482706e74a6d64187dd2880b367ab6c2;hpb=f18a4483825ae96f7fd57ec8122b3c006eb451be;p=libfirm diff --git a/config.h.in b/config.h.in index e135d2874..1478e95e0 100644 --- a/config.h.in +++ b/config.h.in @@ -92,12 +92,30 @@ /* define to 1 to enable debugging stuff. */ #undef DEBUG_libfirm +/* define to 1 to use the libcore */ +#undef WITH_LIBCORE + +/* define to 1 to use the ILP solver */ +#undef WITH_ILP + +/* define to 1 to enable Firm to call the JVM */ +#undef WITH_JVM + +/* define to 1 if we use gnu extensions */ +#undef _GNU_SOURCE + +/* define to 1 to have wchar_t support for identifiers */ +#define FIRM_ENABLE_WCHAR + /* Define to disable assertion checking. */ #undef NDEBUG /* undef to disable inlining */ #undef USE_INLINING +/* Define to 1 if Firm hooks are activated */ +#undef FIRM_ENABLE_HOOKS + /* Define to 1 if Firm statistics are activated */ #undef FIRM_STATISTICS @@ -106,3 +124,10 @@ #else #define INLINE #endif + +/* Firm statistics need hooks */ +#ifdef FIRM_STATISTICS +#ifndef FIRM_ENABLE_HOOKS +#define FIRM_ENABLE_HOOKS +#endif +#endif