diff options
author | Bernd Kuhls <bernd.kuhls@t-online.de> | 2017-04-29 10:37:31 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-04-29 11:57:41 +0200 |
commit | 12d4cc4cccf37ffb3564a695c64a2dfac5ca0f25 (patch) | |
tree | 6126529a5e336be7a75f6c5ae02040a62b43b7b8 /package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch | |
parent | 7bf4ff23e019bc9a50d52b9f3b0b8739ee94014e (diff) | |
download | buildroot-12d4cc4cccf37ffb3564a695c64a2dfac5ca0f25.tar.gz buildroot-12d4cc4cccf37ffb3564a695c64a2dfac5ca0f25.zip |
package/kodi-pvr-nextpvr: bump version to 2.4.11
Removed patch applied upstream:
https://github.com/kodi-pvr/pvr.nextpvr/commit/9e042807f1ce18df6937312cb0abded24d09bfb7
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch')
-rw-r--r-- | package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch b/package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch deleted file mode 100644 index 18e59951c6..0000000000 --- a/package/kodi-pvr-nextpvr/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 2698ac4eeca3a82967ff83386460c070ce387ead Mon Sep 17 00:00:00 2001 -From: Bernd Kuhls <bernd.kuhls@t-online.de> -Date: Sun, 28 Feb 2016 01:07:52 +0100 -Subject: [PATCH] Sync enum representation of char_class_e in struct traits - with definition - -Copied from -https://github.com/kodi-pvr/pvr.mediaportal.tvserver/pull/28 -https://github.com/kodi-pvr/pvr.mediaportal.tvserver/pull/35 - -Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> -[Patch sent upstream: https://github.com/kodi-pvr/pvr.nextpvr/pull/42] ---- - src/uri.h | 6 +++--- - 1 file changed, 3 insertions(+), 3 deletions(-) - -diff --git a/src/uri.h b/src/uri.h -index 2757cf0..3dbca88 100644 ---- a/src/uri.h -+++ b/src/uri.h -@@ -21,13 +21,13 @@ - namespace uri - { - /// Char class. -- enum char_class_e -+ typedef enum char_class_e : signed char - { - CINV = -2, ///< invalid - CEND = -1, ///< end delimitor - CVAL = 0, ///< valid any position - CVA2 = 1, ///< valid anywhere but 1st position -- }; -+ } char_class_e_type; - - /// Traits used for parsing and encoding components. - struct traits -@@ -35,7 +35,7 @@ namespace uri - const char* begin_cstring; ///< begin cstring (or 0 if none) - const char begin_char; ///< begin char (or 0 if none) - const char end_char; ///< end char (or 0 if none) -- char char_class[256]; ///< map of char to class -+ const char_class_e_type char_class[256]; ///< map of char to class - }; - - /** --- -2.7.0 - |