diff options
Diffstat (limited to 'camel/camel-uid-cache.c')
-rw-r--r-- | camel/camel-uid-cache.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/camel/camel-uid-cache.c b/camel/camel-uid-cache.c index 2b5faddb91..0997e9a6a7 100644 --- a/camel/camel-uid-cache.c +++ b/camel/camel-uid-cache.c @@ -23,8 +23,9 @@ * USA */ -#include "config.h" -#include "camel-uid-cache.h" +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif #include <errno.h> #include <fcntl.h> @@ -32,6 +33,8 @@ #include <sys/stat.h> #include <unistd.h> +#include "camel-uid-cache.h" + static void free_uid (gpointer key, gpointer value, gpointer data); static void maybe_write_uid (gpointer key, gpointer value, gpointer data); |