From 5439317ba12635d3a8a03e0e55e38eef76ff9b51 Mon Sep 17 00:00:00 2001 From: James Booth Date: Wed, 11 May 2016 22:30:39 +0100 Subject: [PATCH 1/3] Reorder headers in common.c Fixes unknown type name '_fpos64_t' error on Cygwin --- src/common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common.c b/src/common.c index a8282fe7..13a2366c 100644 --- a/src/common.c +++ b/src/common.c @@ -33,9 +33,9 @@ */ #include "config.h" +#include #include #include -#include #include #include #include From 598b2b3235b008cb9ec240b0df0193dd8bec4965 Mon Sep 17 00:00:00 2001 From: James Booth Date: Wed, 11 May 2016 22:32:22 +0100 Subject: [PATCH 2/3] Add missing string.h include in blocking.c --- src/xmpp/blocking.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/xmpp/blocking.c b/src/xmpp/blocking.c index 766313e0..a272b0c9 100644 --- a/src/xmpp/blocking.c +++ b/src/xmpp/blocking.c @@ -33,6 +33,7 @@ */ #include +#include #ifdef HAVE_LIBMESODE #include From cf8452d95f7a172f0609cd2f647f23a52aeb62d1 Mon Sep 17 00:00:00 2001 From: James Booth Date: Wed, 11 May 2016 22:50:19 +0100 Subject: [PATCH 3/3] Reorder headers in inputwin.c Fixes unknown type name '_fpos64_t' error on Cygwin --- src/ui/inputwin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/inputwin.c b/src/ui/inputwin.c index c94c0a8c..2c7eae34 100644 --- a/src/ui/inputwin.c +++ b/src/ui/inputwin.c @@ -35,10 +35,10 @@ #define _XOPEN_SOURCE_EXTENDED #include "config.h" +#include #include #include #include -#include #include #include #include