From: Petri Lehtinen Date: Sun, 5 Sep 2010 14:16:47 +0000 (+0300) Subject: Use config.h only if it exists X-Git-Tag: v2.0~50 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=jansson.git;a=commitdiff_plain;h=a112563214884785d1e90b49a6ad22502f76ef47 Use config.h only if it exists This makes it easier to compile without the configure script (e.g. on Windows). --- diff --git a/src/utf.h b/src/utf.h index d0ae6e9..19ec6e5 100644 --- a/src/utf.h +++ b/src/utf.h @@ -8,7 +8,9 @@ #ifndef UTF_H #define UTF_H +#ifdef HAVE_CONFIG_H #include +#endif #ifdef HAVE_INTTYPES_H /* inttypes.h includes stdint.h in a standard environment, so there's