summaryrefslogtreecommitdiff
path: root/x11/xproto/patches/patch-Xpoll.h.in
blob: a1f7097e6a884ca94239cc629b4b5823e64ace4c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
$NetBSD: patch-Xpoll.h.in,v 1.1 2015/07/21 12:40:36 wiz Exp $

Fix FD_SETSIZE definition.

Move the define of FD_SETSIZE before the include of select.h, so that
is actually does something useful.

--- Xpoll.h.in.orig	2015-07-01 15:16:11.000000000 +0000
+++ Xpoll.h.in
@@ -54,6 +54,12 @@ from The Open Group.
 
 #ifndef USE_POLL
 
+#define XFD_SETSIZE	512
+
+#ifndef FD_SETSIZE
+#define FD_SETSIZE	XFD_SETSIZE
+#endif
+
 #include <X11/Xos.h>
 
 #include <sys/select.h>  /* Get the FD_* macros. */
@@ -67,12 +73,6 @@ typedef long fd_mask;
 # endif
 #endif
 
-#define XFD_SETSIZE	512
-
-#ifndef FD_SETSIZE
-#define FD_SETSIZE	XFD_SETSIZE
-#endif
-
 #ifndef NBBY
 #define NBBY	8		/* number of bits in a byte */
 #endif