summaryrefslogtreecommitdiffstats
path: root/meta/recipes-graphics/drm/libdrm/0001-tests-kms-steal-crtc-Include-sys-select.h.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-graphics/drm/libdrm/0001-tests-kms-steal-crtc-Include-sys-select.h.patch')
-rw-r--r--meta/recipes-graphics/drm/libdrm/0001-tests-kms-steal-crtc-Include-sys-select.h.patch96
1 files changed, 0 insertions, 96 deletions
diff --git a/meta/recipes-graphics/drm/libdrm/0001-tests-kms-steal-crtc-Include-sys-select.h.patch b/meta/recipes-graphics/drm/libdrm/0001-tests-kms-steal-crtc-Include-sys-select.h.patch
deleted file mode 100644
index e4ecbac16c..0000000000
--- a/meta/recipes-graphics/drm/libdrm/0001-tests-kms-steal-crtc-Include-sys-select.h.patch
+++ /dev/null
@@ -1,96 +0,0 @@
1From fb53d7a1be116a172b56625f290fcf88b6d158ca Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 20 Jan 2016 05:23:00 +0000
4Subject: [PATCH] tests: Include sys/select.h
5
6Used in compliance with POSIX 2001/2008
7
8Fixes errors e.g.
9error: implicit declaration of function 'select'
10
11and helps with missing definitions of FD_* defines
12
13Signed-off-by: Khem Raj <raj.khem@gmail.com>
14Reviewed-by: Thierry Reding <thierry.reding@gmail.com>
15---
16Upstream-Status: Submitted
17
18 configure.ac | 2 +-
19 tests/kms/kms-steal-crtc.c | 3 +++
20 tests/kms/kms-universal-planes.c | 3 +++
21 tests/modetest/modetest.c | 3 +++
22 tests/vbltest/vbltest.c | 3 +++
23 5 files changed, 13 insertions(+), 1 deletion(-)
24
25diff --git a/configure.ac b/configure.ac
26index 057a846..258e2f6 100644
27--- a/configure.ac
28+++ b/configure.ac
29@@ -53,7 +53,7 @@ AC_USE_SYSTEM_EXTENSIONS
30 AC_SYS_LARGEFILE
31 AC_FUNC_ALLOCA
32
33-AC_CHECK_HEADERS([sys/mkdev.h sys/sysctl.h])
34+AC_CHECK_HEADERS([sys/mkdev.h sys/sysctl.h sys/select.h])
35
36 # Initialize libtool
37 LT_PREREQ([2.2])
38diff --git a/tests/kms/kms-steal-crtc.c b/tests/kms/kms-steal-crtc.c
39index 2f7f327..497772e 100644
40--- a/tests/kms/kms-steal-crtc.c
41+++ b/tests/kms/kms-steal-crtc.c
42@@ -31,6 +31,9 @@
43 #include <stdio.h>
44 #include <string.h>
45 #include <unistd.h>
46+#ifdef HAVE_SYS_SELECT_H
47+#include <sys/select.h>
48+#endif
49
50 #include <drm_fourcc.h>
51
52diff --git a/tests/kms/kms-universal-planes.c b/tests/kms/kms-universal-planes.c
53index 9151231..d8e5fc4 100644
54--- a/tests/kms/kms-universal-planes.c
55+++ b/tests/kms/kms-universal-planes.c
56@@ -32,6 +32,9 @@
57 #include <stdio.h>
58 #include <string.h>
59 #include <unistd.h>
60+#ifdef HAVE_SYS_SELECT_H
61+#include <sys/select.h>
62+#endif
63
64 #include <drm_fourcc.h>
65 #include "xf86drm.h"
66diff --git a/tests/modetest/modetest.c b/tests/modetest/modetest.c
67index 22e3e81..d5a4062 100644
68--- a/tests/modetest/modetest.c
69+++ b/tests/modetest/modetest.c
70@@ -55,6 +55,9 @@
71 #include <errno.h>
72 #include <sys/poll.h>
73 #include <sys/time.h>
74+#ifdef HAVE_SYS_SELECT_H
75+#include <sys/select.h>
76+#endif
77
78 #include "xf86drm.h"
79 #include "xf86drmMode.h"
80diff --git a/tests/vbltest/vbltest.c b/tests/vbltest/vbltest.c
81index 1833321..086407e 100644
82--- a/tests/vbltest/vbltest.c
83+++ b/tests/vbltest/vbltest.c
84@@ -37,6 +37,9 @@
85 #include <errno.h>
86 #include <sys/poll.h>
87 #include <sys/time.h>
88+#ifdef HAVE_SYS_SELECT_H
89+#include <sys/select.h>
90+#endif
91
92 #include "xf86drm.h"
93 #include "xf86drmMode.h"
94--
952.7.0
96