summaryrefslogtreecommitdiff
path: root/sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2020-12-23 12:47:14 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2020-12-23 12:47:14 +0000
commit594c7b47a4c220f87f538eddfd6eaadb455cc418 (patch)
treede9c77d7888e9e16627a0d7515375048f9c6e8ca /sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch
parenta351fb3cf20a3a4a4fb7caee09a2ab3aa685d6ad (diff)
downloadbaldeagleos-repo-594c7b47a4c220f87f538eddfd6eaadb455cc418.tar.gz
baldeagleos-repo-594c7b47a4c220f87f538eddfd6eaadb455cc418.tar.xz
baldeagleos-repo-594c7b47a4c220f87f538eddfd6eaadb455cc418.zip
Updating liguros repo
Diffstat (limited to 'sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch')
-rw-r--r--sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch46
1 files changed, 0 insertions, 46 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch b/sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch
deleted file mode 100644
index f92ac93ab018..000000000000
--- a/sci-visualization/gnuplot/files/gnuplot-5.4.0-caca.patch
+++ /dev/null
@@ -1,46 +0,0 @@
-From f76d96206a7251d62dbbd3879bf0ad6dfe1ec486 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Ulrich=20M=C3=BCller?= <ulm@gentoo.org>
-Date: Sat, 7 Nov 2020 11:25:07 -0800
-Subject: [PATCH] Allow to build --with-caca but without mouse support
-
-EAM: slightly modified fix
-Bug #2351
----
- term/caca.trm | 9 +++++++--
- 1 file changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/term/caca.trm b/term/caca.trm
-index cf7c0d7c6..58606e2d8 100644
---- a/term/caca.trm
-+++ b/term/caca.trm
-@@ -1913,8 +1913,11 @@ CACA_process_events(void)
- CACA_result loop = CACA_loop;
- caca_event_t ev;
- const int event_mask =
-- CACA_EVENT_KEY_PRESS | CACA_EVENT_RESIZE | CACA_EVENT_QUIT |
-- CACA_EVENT_MOUSE_MOTION | CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE;
-+ CACA_EVENT_KEY_PRESS | CACA_EVENT_RESIZE | CACA_EVENT_QUIT
-+#ifdef USE_MOUSE
-+ | CACA_EVENT_MOUSE_MOTION | CACA_EVENT_MOUSE_PRESS | CACA_EVENT_MOUSE_RELEASE
-+#endif
-+ ;
- static int mx = 0, my = 0; /* current mouse position */
- static unsigned long last_event_time = 0;
-
-@@ -2579,11 +2582,13 @@ CACA_modify_plots(unsigned int operations, int plotno)
- }
- }
-
-+#ifdef USE_MOUSE
- if (changed) {
- /* Replot only if something changed. */
- CACA_zoom_or_replot = TRUE;
- exec_event(GE_replot, 0, 0, 0, 0, 0);
- }
-+#endif
- }
-
-
---
-2.29.2
-