nixpkgs/pkgs/os-specific/linux/splashutils/fdset.patch
Eelco Dolstra 2261f6d265 * Revert to Splashutils 1.3.
svn path=/nixpkgs/trunk/; revision=8582
2007-04-16 14:20:29 +00:00

21 lines
363 B
Diff

diff --git a/core/render.c b/core/render.c
index 290ea97..47319a8 100644
--- a/render.c
+++ b/render.c
@@ -9,8 +9,15 @@
*
*/
+/*
+ * HACK WARNING:
+ * This is necessary to get FD_SET and FD_ZERO on platforms other than x86.
+ */
+
#ifdef TARGET_KERNEL
+#define __KERNEL__
#include <linux/posix_types.h>
+#undef __KERNEL__
#endif
#include <stdio.h>