aboutsummaryrefslogtreecommitdiff
path: root/x11
diff options
context:
space:
mode:
authorEmanuel Haupt <ehaupt@FreeBSD.org>2017-06-13 06:59:20 +0000
committerEmanuel Haupt <ehaupt@FreeBSD.org>2017-06-13 06:59:20 +0000
commit01f8a74af9afec6d2b5c6f817225ca00b6af82a5 (patch)
treedc48b489ded5bb7cf2b086562badabde1eb3ec3f /x11
parent3ee1da5ad77865cb9dbb0d0be64068c046e9d62e (diff)
downloadports-01f8a74af9afec6d2b5c6f817225ca00b6af82a5.tar.gz
ports-01f8a74af9afec6d2b5c6f817225ca00b6af82a5.zip
Provide a patch to fix building when the non default option SIXEL is enabled
without the REGIS option. This does not affect default options and therefore no PORTREVISION bump is required. This regression does not affect the quarterly branch therefore no MFH is required. PR: 219945 (based on) Submitted by: ashish@FreeBSD.org, Thomas Dickey <dickey@his.com> (author)
Notes
Notes: svn path=/head/; revision=443487
Diffstat (limited to 'x11')
-rw-r--r--x11/xterm/files/patch-charproc.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/x11/xterm/files/patch-charproc.c b/x11/xterm/files/patch-charproc.c
new file mode 100644
index 000000000000..396d40558798
--- /dev/null
+++ b/x11/xterm/files/patch-charproc.c
@@ -0,0 +1,24 @@
+--- charproc.c.orig 2017-06-12 01:01:20 UTC
++++ charproc.c
+@@ -1,4 +1,4 @@
+-/* $XTermId: charproc.c,v 1.1487 2017/06/12 01:01:20 tom Exp $ */
++/* $XTermId: charproc.c,v 1.1488 2017/06/12 22:00:15 tom Exp $ */
+
+ /*
+ * Copyright 1999-2016,2017 by Thomas E. Dickey
+@@ -3696,6 +3696,7 @@ doparsing(XtermWidget xw, unsigned c, st
+ break;
+ }
+ break;
++# if OPT_REGIS_GRAPHICS
+ case 3: /* ReGIS geometry */
+ switch (GetParam(1)) {
+ case 1: /* read */
+@@ -3717,6 +3718,7 @@ doparsing(XtermWidget xw, unsigned c, st
+ break;
+ }
+ break;
++#endif
+ default:
+ TRACE(("DATA_ERROR: CASE_GRAPHICS_ATTRIBUTES request with unknown item parameter: %d\n",
+ GetParam(0)));