diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2017-06-13 14:59:20 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2017-06-13 14:59:20 +0800 |
commit | 6ba0b5fb70d7ebfe59485f746160e9dfb266561f (patch) | |
tree | dc48b489ded5bb7cf2b086562badabde1eb3ec3f /x11/xterm | |
parent | f709418a54a3684601578a3ffe6ef9d83b630a9f (diff) | |
download | freebsd-ports-gnome-6ba0b5fb70d7ebfe59485f746160e9dfb266561f.tar.gz freebsd-ports-gnome-6ba0b5fb70d7ebfe59485f746160e9dfb266561f.tar.zst freebsd-ports-gnome-6ba0b5fb70d7ebfe59485f746160e9dfb266561f.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)
Diffstat (limited to 'x11/xterm')
-rw-r--r-- | x11/xterm/files/patch-charproc.c | 24 |
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))); |