summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiroslav Šulc <fordfrog@gentoo.org>2020-07-17 09:55:27 +0200
committerMiroslav Šulc <fordfrog@gentoo.org>2020-07-17 13:25:44 +0200
commita0d58ecfc9c018061be9477908f1f32e1be83f1f (patch)
treeb16eea262ffa64d19b19278a83f8d58a6d20c8b1 /media-libs/ganv/files
parentmedia-sound/patchage: removed obsolete (diff)
downloadgentoo-a0d58ecfc9c018061be9477908f1f32e1be83f1f.tar.gz
gentoo-a0d58ecfc9c018061be9477908f1f32e1be83f1f.tar.bz2
gentoo-a0d58ecfc9c018061be9477908f1f32e1be83f1f.zip
media-libs/ganv: removed obsolete
Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'media-libs/ganv/files')
-rw-r--r--media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch42
1 files changed, 0 insertions, 42 deletions
diff --git a/media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch b/media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch
deleted file mode 100644
index 3fb29a7f0b54..000000000000
--- a/media-libs/ganv/files/ganv-1.4.2-no-fdgl.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-diff --git a/src/Canvas.cpp b/src/Canvas.cpp
-index c01021c..1c66a6c 100644
---- a/src/Canvas.cpp
-+++ b/src/Canvas.cpp
-@@ -760,6 +760,18 @@ GanvCanvasImpl::layout_dot(const std::string& filename)
- }
- #endif
-
-+inline uint64_t
-+get_monotonic_time()
-+{
-+#if GLIB_CHECK_VERSION(2, 28, 0)
-+ return g_get_monotonic_time();
-+#else
-+ GTimeVal time;
-+ g_get_current_time(&time);
-+ return time.tv_sec + time.tv_usec;
-+#endif
-+}
-+
- #ifdef GANV_FDGL
-
- inline Region
-@@ -788,18 +800,6 @@ apply_force(GanvNode* a, GanvNode* b, const Vector& f)
- b->impl->force = vec_sub(b->impl->force, f);
- }
-
--inline uint64_t
--get_monotonic_time()
--{
--#if GLIB_CHECK_VERSION(2, 28, 0)
-- return g_get_monotonic_time();
--#else
-- GTimeVal time;
-- g_get_current_time(&time);
-- return time.tv_sec + time.tv_usec;
--#endif
--}
--
- gboolean
- GanvCanvasImpl::layout_iteration()
- {