Patrick Williams | c124f4f | 2015-09-15 14:41:29 -0500 | [diff] [blame] | 1 | From d28c655be3ac4fcb8024555983884f832ee18787 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Fri, 29 May 2015 15:17:30 -0700 |
| 4 | Subject: [PATCH] arcam-av: Include sys/select.h for fd_set definition |
| 5 | |
| 6 | fixes build errors on non-glibc based systems |
| 7 | |
| 8 | arcam-av/arcam_av.c:389:2: error: unknown type name 'fd_set' |
| 9 | |
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 11 | --- |
| 12 | Upstream-Status: Submitted |
| 13 | |
| 14 | arcam-av/arcam_av.c | 1 + |
| 15 | 1 file changed, 1 insertion(+) |
| 16 | |
| 17 | diff --git a/arcam-av/arcam_av.c b/arcam-av/arcam_av.c |
| 18 | index 0491fc6..fff96f9 100644 |
| 19 | --- a/arcam-av/arcam_av.c |
| 20 | +++ b/arcam-av/arcam_av.c |
| 21 | @@ -31,6 +31,7 @@ |
| 22 | #include <unistd.h> |
| 23 | |
| 24 | #include <sys/ipc.h> |
| 25 | +#include <sys/select.h> |
| 26 | #include <sys/shm.h> |
| 27 | #include <sys/stat.h> |
| 28 | #include <sys/stat.h> |
| 29 | -- |
| 30 | 2.1.4 |
| 31 | |