aboutsummaryrefslogtreecommitdiffstats
path: root/community/v4l-utils/types.patch
diff options
context:
space:
mode:
authorprspkt <prspkt@protonmail.com>2019-11-22 19:19:47 +0200
committerRasmus Thomsen <oss@cogitri.dev>2019-11-23 00:25:46 +0000
commitec3bbccdbc21766ab9de68924004d6750f63ea9f (patch)
tree93cf6dc13dd35c9052760ebc851181177477154e /community/v4l-utils/types.patch
parent048edcc19c3887cb4ab5673b72e1679a3a66e77c (diff)
downloadaports-ec3bbccdbc21766ab9de68924004d6750f63ea9f.tar.bz2
aports-ec3bbccdbc21766ab9de68924004d6750f63ea9f.tar.xz
community/v4l-utils: upgrade to 1.18.0
* Ensure getsubopt.patch cleanly applies. * Fix 'unknown type name' for error_t and u_int32_t.
Diffstat (limited to 'community/v4l-utils/types.patch')
-rw-r--r--community/v4l-utils/types.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/community/v4l-utils/types.patch b/community/v4l-utils/types.patch
new file mode 100644
index 0000000000..340bb81c02
--- /dev/null
+++ b/community/v4l-utils/types.patch
@@ -0,0 +1,26 @@
+--- a/utils/keytable/keymap.h
++++ b/utils/keytable/keymap.h
+@@ -2,6 +2,10 @@
+ #ifndef __KEYMAP_H
+ #define __KEYMAP_H
+
++#include <stdint.h>
++typedef uint32_t u_int32_t;
++typedef int error_t;
++
+ struct keymap {
+ struct keymap *next;
+ char *name;
+--- a/utils/ir-ctl/keymap.h
++++ b/utils/ir-ctl/keymap.h
+@@ -2,6 +2,10 @@
+ #ifndef __KEYMAP_H
+ #define __KEYMAP_H
+
++#include <stdint.h>
++typedef uint32_t u_int32_t;
++typedef int error_t;
++
+ struct keymap {
+ struct keymap *next;
+ char *name;