diff options
author | Patrick Lam <plam@MIT.EDU> | 2006-04-25 05:57:41 +0000 |
---|---|---|
committer | Patrick Lam <plam@MIT.EDU> | 2006-04-25 05:57:41 +0000 |
commit | f045376c0831f068e8fd8fd61773a5ed83dede7f (patch) | |
tree | 49042c5245d6005ffec38b54939bec1db4806865 /fc-match | |
parent | 55e145b0250e5c233d9fed1f8f5efe690374cdf2 (diff) |
Include $(top_srcdir), $(top_srcdir)/src before anything else.
Shuffle order of includes for building out of srcdir on win32.
reviewed by: plam
Diffstat (limited to 'fc-match')
-rw-r--r-- | fc-match/fc-match.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/fc-match/fc-match.c b/fc-match/fc-match.c index fa45018..d9742c9 100644 --- a/fc-match/fc-match.c +++ b/fc-match/fc-match.c @@ -22,11 +22,6 @@ * PERFORMANCE OF THIS SOFTWARE. */ -#include <fontconfig/fontconfig.h> -#include <stdio.h> -#include <unistd.h> -#include <stdlib.h> -#include <string.h> #ifdef HAVE_CONFIG_H #include <config.h> #else @@ -36,6 +31,12 @@ #define HAVE_GETOPT 1 #endif +#include <fontconfig/fontconfig.h> +#include <stdio.h> +#include <unistd.h> +#include <stdlib.h> +#include <string.h> + #ifndef HAVE_GETOPT #define HAVE_GETOPT 0 #endif |