- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
29 lines
773 B
Diff
29 lines
773 B
Diff
From 426ee79adeecc24605426030a486d7c5a755048c Mon Sep 17 00:00:00 2001
|
|
From: Andre McCurdy <armccurdy@gmail.com>
|
|
Date: Wed, 3 Feb 2016 18:05:41 -0800
|
|
Subject: [PATCH] avoid including <sys/poll.h> directly
|
|
|
|
musl libc generates warnings if <sys/poll.h> is included directly.
|
|
|
|
Upstream-Status: Pending
|
|
|
|
Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
|
|
|
|
---
|
|
sys/dvb/gstdvbsrc.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/sys/dvb/gstdvbsrc.c b/sys/dvb/gstdvbsrc.c
|
|
index b8e5b1a..5bca6e5 100644
|
|
--- a/sys/dvb/gstdvbsrc.c
|
|
+++ b/sys/dvb/gstdvbsrc.c
|
|
@@ -98,7 +98,7 @@
|
|
#include <gst/gst.h>
|
|
#include <gst/glib-compat-private.h>
|
|
#include <sys/ioctl.h>
|
|
-#include <sys/poll.h>
|
|
+#include <poll.h>
|
|
#include <fcntl.h>
|
|
#include <errno.h>
|
|
#include <stdio.h>
|