summaryrefslogtreecommitdiff
path: root/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [master] <gitlab@liguros.net>2021-01-27 18:53:03 +0000
committerLiguros - Gitlab CI/CD [master] <gitlab@liguros.net>2021-01-27 18:53:03 +0000
commit3482ddf943eff7b8848f1fb31350b99ce349e86a (patch)
tree9c9bb6ec6679e9dc44a84d87ba611989409b12ca /sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch
parent8e8120eabdd28020aa69c7a60505cce2edd20adc (diff)
downloadbaldeagleos-repo-21.1.3.tar.gz
baldeagleos-repo-21.1.3.tar.xz
baldeagleos-repo-21.1.3.zip
Updating liguros repov21.1.3
Diffstat (limited to 'sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch')
-rw-r--r--sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch b/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch
deleted file mode 100644
index 613a028ee79b..000000000000
--- a/sci-visualization/gnuplot/files/gnuplot-5.2.2-regis.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-Add configure option for ReGIS support.
-https://bugs.gentoo.org/643888
-
---- gnuplot-5.2.2-orig/configure.ac
-+++ gnuplot-5.2.2/configure.ac
-@@ -1057,6 +1057,13 @@
- AC_DEFINE(HAVE_MIF,1,
- [ Define to include support for mif terminal ],))
-
-+dnl ReGIS terminal
-+AC_ARG_WITH(regis,dnl
-+[ --with-regis ReGIS terminal])
-+AS_IF([test "x${with_regis}" = "xyes"],
-+ AC_DEFINE(HAVE_REGIS,1,
-+ [ Define to include support for ReGIS terminal ],))
-+
- AC_ARG_WITH(cairo,dnl
- [ --without-cairo cairo-based terminals (default enabled)],,
- [test -z "${with_cairo}" && with_cairo=yes])
-@@ -1350,6 +1357,12 @@
- AC_MSG_RESULT([ mif terminal: no (use --with-mif to enable)])
- fi
-
-+if test "$with_regis" = yes; then
-+ AC_MSG_RESULT([ ReGIS terminal: yes])
-+else
-+ AC_MSG_RESULT([ ReGIS terminal: no (use --with-regis to enable)])
-+fi
-+
- if test "$is_msdos" = yes; then
- AC_MSG_RESULT([ svga terminal (MSDOS/djgpp): yes])
- fi
---- gnuplot-5.2.2-orig/src/term.h
-+++ gnuplot-5.2.2/src/term.h
-@@ -182,7 +182,7 @@
- #endif
-
- /* REGIS graphics language */
--#ifdef VMS
-+#if defined(VMS) || defined(HAVE_REGIS)
- # include "regis.trm"
- #endif
-