blob: 0a0bff2cc1ad7f41cff696cfde02ca369795b47a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Description: fbterms FTBFS for architectures without epoll support
Forwarded: not yet
Bug-Debian: https://bugs.debian.org/909680
Author: Helmut Grohne <helmut@subdivi.de>
--- fbterm-1.7.orig/src/fbio.cpp
+++ fbterm-1.7/src/fbio.cpp
@@ -30,6 +30,7 @@
#define NR_EPOLL_FDS 10
s32 epollFd;
#else
+#include <sys/select.h>
static fd_set fds;
static u32 maxfd = 0;
#endif
|