From dfcb04e731af520587046e89f0324759ef8c479f Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Mon, 14 Dec 2009 16:14:11 -0800 Subject: [PATCH] 64-bit fix, config.h needed to be at the top of the source file. --- src/tuio.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/tuio.c b/src/tuio.c index 8d6558a..de068d5 100644 --- a/src/tuio.c +++ b/src/tuio.c @@ -23,6 +23,10 @@ * Ryan Huffman (ryanhuffman@gmail.com) */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include @@ -31,10 +35,6 @@ #include "tuio.h" -#ifdef HAVE_CONFIG_H -#include "config.h" -#endif - /* InputInfoPtr for main tuio device */ static InputInfoPtr g_pInfo; static int pipefd[2] = {-1, -1}; -- 2.11.4.GIT