svn commit: r443487 - head/x11/xterm/files

Emanuel Haupt ehaupt at FreeBSD.org
Tue Jun 13 06:59:21 UTC 2017


Author: ehaupt
Date: Tue Jun 13 06:59:20 2017
New Revision: 443487
URL: https://svnweb.freebsd.org/changeset/ports/443487

Log:
  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 at FreeBSD.org, Thomas Dickey <dickey at his.com> (author)

Added:
  head/x11/xterm/files/
  head/x11/xterm/files/patch-charproc.c   (contents, props changed)

Added: head/x11/xterm/files/patch-charproc.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/xterm/files/patch-charproc.c	Tue Jun 13 06:59:20 2017	(r443487)
@@ -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)));


More information about the svn-ports-all mailing list