From 1add10bfbc6f0667284f58cb388ae02f695b4a57 Mon Sep 17 00:00:00 2001 From: Michael Haubenwallner Date: Thu, 26 Feb 2015 12:23:27 +0100 Subject: [PATCH] Ensure config.h is included first, bug#89336. config.h may define ABI-specific macros, especially for AIX, so has to be included before any system header - via fcint.h. https://bugs.freedesktop.org/show_bug.cgi?id=89336 --- src/fcarch.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fcarch.c b/src/fcarch.c index 398f4bb..4a921c0 100644 --- a/src/fcarch.c +++ b/src/fcarch.c @@ -21,10 +21,9 @@ * PERFORMANCE OF THIS SOFTWARE. */ -#include - #include "fcint.h" #include "fcarch.h" +#include FC_ASSERT_STATIC (1 == sizeof (char)); FC_ASSERT_STATIC (2 == sizeof (FcChar16));