diff options
author | intrigeri <intrigeri@debian.org> | 2015-02-13 16:20:14 -0500 |
---|---|---|
committer | Colin Walters <walters@verbum.org> | 2015-02-13 16:20:14 -0500 |
commit | 1c238c020f790f858a0b2fad6a1305d09198d4bf (patch) | |
tree | b67c6283b006b0dd14120c34a98e6ef77a9b9894 /tests | |
parent | 27411245988b624afd7703d503323707bed1ae58 (diff) | |
download | gobject-introspection-1c238c020f790f858a0b2fad6a1305d09198d4bf.tar.gz |
gimarshallingtests: Don't unconditionally include config.h
https://bugzilla.gnome.org/show_bug.cgi?id=738989
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gimarshallingtests.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/gimarshallingtests.c b/tests/gimarshallingtests.c index 59b5ba99..c8f97740 100644 --- a/tests/gimarshallingtests.c +++ b/tests/gimarshallingtests.c @@ -2,7 +2,10 @@ *vim: tabstop=4 shiftwidth=4 expandtab */ +/* This file gets installed, so we can't assume config.h is available */ +#ifdef HAVE_CONFIG_H #include "config.h" +#endif #include "gimarshallingtests.h" |