summaryrefslogtreecommitdiff
path: root/package/kodi-pvr-mediaportal-tvserver
diff options
context:
space:
mode:
authorBernd Kuhls <bernd.kuhls@t-online.de>2016-03-03 07:18:25 +0100
committerPeter Korsgaard <peter@korsgaard.com>2016-03-03 09:55:21 +0100
commit30896c04ee6dcd0e1e50123bc9fdac188786c742 (patch)
tree7533bc2365c88e325a4a9261b6f057bad35a3223 /package/kodi-pvr-mediaportal-tvserver
parent3675bbc55634f90e38dbec315df253532e807709 (diff)
package/kodi-pvr-mediaportal-tvserver: remove patch applied upstream
The recent version bump forgot to remove the patch. Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/kodi-pvr-mediaportal-tvserver')
-rw-r--r--package/kodi-pvr-mediaportal-tvserver/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/package/kodi-pvr-mediaportal-tvserver/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch b/package/kodi-pvr-mediaportal-tvserver/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch
deleted file mode 100644
index 890c15105..000000000
--- a/package/kodi-pvr-mediaportal-tvserver/0001-Sync-enum-representation-of-char_class_e-in-struct-t.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From 7b14e0657a1308e8e133991b778e2fdcb2eb6b9c Mon Sep 17 00:00:00 2001
-From: Balint Reczey <balint@balintreczey.hu>
-Date: Wed, 23 Dec 2015 12:55:00 +0100
-Subject: [PATCH] Sync enum representation of char_class_e in struct traits
- with definition
-
-Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de>
-[backport of upstream patch from master branch:
- https://github.com/kodi-pvr/pvr.mediaportal.tvserver/commit/7b14e0657a1308e8e133991b778e2fdcb2eb6b9c]
----
- src/uri.h | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/src/uri.h b/src/uri.h
-index d2cc949..415e917 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)
-- const char char_class[256]; ///< map of char to class
-+ const char_class_e_type char_class[256]; ///< map of char to class
- };
-
- /**