summaryrefslogtreecommitdiff
path: root/multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp
diff options
context:
space:
mode:
authorBernhard Froehlich <decke@FreeBSD.org>2020-12-30 12:15:44 +0000
committerBernhard Froehlich <decke@FreeBSD.org>2020-12-30 12:15:44 +0000
commit4fc0f920e2101e96d3231e8bb86f85d9a1a42e51 (patch)
treed769e04a3d364dcc16c70ff738b2f836b7258b65 /multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp
parenttextproc/groonga: Update version 10.0.9=>10.1.0 (diff)
multimedia/kodi: Update to 19.0b2
We usually try to avoid updating to beta releases but this time we were forced by the upcoming python2.7 removal and had to hurry up to get it into the tree before 31st. Bugs are expected and testing was limited. Kodi 19.0 will be the first release that supports python3 so we had no other choice. Sorry! The maintainer situation for kodi and kodi-devel really needs some improvement so I'm glad that yzrh did the heavy lifting and stepped up as the next kodi maintainer. Thanks a lot to him! PR: 249724 Submitted by: yzrh@tuta.io (per email)
Diffstat (limited to 'multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp')
-rw-r--r--multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp b/multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp
index bd5849194ba1..bdb7da677e73 100644
--- a/multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp
+++ b/multimedia/kodi/files/patch-xbmc_dbwrappers_mysqldataset.cpp
@@ -1,4 +1,4 @@
---- xbmc/dbwrappers/mysqldataset.cpp.orig 2020-05-19 23:10:06 UTC
+--- xbmc/dbwrappers/mysqldataset.cpp.orig 2020-10-04 17:34:28 UTC
+++ xbmc/dbwrappers/mysqldataset.cpp
@@ -17,10 +17,8 @@
#include "utils/StringUtils.h"
@@ -6,7 +6,7 @@
#include "mysqldataset.h"
-#ifdef HAS_MYSQL
+#if defined(HAS_MYSQL) || defined(HAS_MARIADB)
- #include "mysql/errmsg.h"
+ #include <mysql/errmsg.h>
-#elif defined(HAS_MARIADB)
-#include <mariadb/errmsg.h>
#endif