summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-tv/me-tv/files')
-rw-r--r--media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch35
-rw-r--r--media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch26
2 files changed, 0 insertions, 61 deletions
diff --git a/media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch b/media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch
deleted file mode 100644
index 322a0d6b8463..000000000000
--- a/media-tv/me-tv/files/me-tv-1.4.0.10-C++11-throw-in-destructors.patch
+++ /dev/null
@@ -1,35 +0,0 @@
---- a/server/data.cc
-+++ b/server/data.cc
-@@ -68,7 +68,7 @@
- }
- }
-
--Statement::~Statement()
-+Statement::~Statement() NOEXCEPT
- {
- if (sqlite3_finalize(statement) != 0)
- {
---- a/server/data.h
-+++ b/server/data.h
-@@ -26,6 +26,12 @@
- #include <linux/dvb/frontend.h>
- #include <glibmm.h>
-
-+#if __cplusplus >= 201103L
-+#define NOEXCEPT noexcept(false)
-+#else
-+#define NOEXCEPT
-+#endif
-+
- typedef std::list<Glib::ustring> StringList;
-
- namespace Data
-@@ -68,7 +74,7 @@
-
- public:
- Statement(Connection& connection, const Glib::ustring& command);
-- ~Statement();
-+ ~Statement() NOEXCEPT;
-
- void reset();
- guint step();
diff --git a/media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch b/media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch
deleted file mode 100644
index c785e971997e..000000000000
--- a/media-tv/me-tv/files/me-tv-1.4.0.10-gcc47.patch
+++ /dev/null
@@ -1,26 +0,0 @@
- https://bugs.gentoo.org/452108
-
- common/common.cc | 1 +
- server/thread.cc | 1 +
- 2 files changed, 2 insertions(+)
-
---- a/common/common.cc
-+++ b/common/common.cc
-@@ -18,6 +18,7 @@
- * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
- */
-
-+#include <unistd.h>
- #include "../common/common.h"
- #include "../common/i18n.h"
- #include "../common/exception.h"
---- a/server/thread.cc
-+++ b/server/thread.cc
-@@ -18,6 +18,7 @@
- * Foundation, Inc., 51 Franklin Street, Fifth Floor Boston, MA 02110-1301, USA
- */
-
-+#include <unistd.h>
- #include "thread.h"
- #include "../common/i18n.h"
- #include "../common/exception.h"