mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-07 22:58:11 +00:00
25304384e7
kterm16c is a 16 color-support version of kterm. It is useful for console hardcopy on a VGA terminal. 16 color patch was made by KANDA Toshihiro <candy@kgc.co.jp>. PR: 9976 Submitted by: KIRIYAMA Kazuhiko <kiri@pis.toba-cmt.ac.jp>
29 lines
927 B
Plaintext
29 lines
927 B
Plaintext
diff --exclude=Makefile -ur kterm-6.2.0.orig/ptyx.hptyx.h
|
|
--- kterm-6.2.0.orig/ptyx.h Tue Jul 2 14:01:53 1996
|
|
+++ ptyx.h Thu Dec 24 11:46:28 1998
|
|
@@ -300,7 +300,11 @@
|
|
Pixel mousecolor; /* Mouse color */
|
|
Pixel mousecolorback; /* Mouse color background */
|
|
#ifdef KTERM_COLOR
|
|
+#ifndef COLOR_16
|
|
Pixel textcolor[8]; /* text colors */
|
|
+#else
|
|
+ Pixel textcolor[16]; /* text colors */
|
|
+#endif
|
|
#endif /* KTERM_COLOR */
|
|
int border; /* inner border */
|
|
Cursor arrow; /* arrow cursor */
|
|
@@ -656,6 +660,12 @@
|
|
#define BACKCOLORMASK 0x7000
|
|
#define BACKCOLOR(c) ((c) << 12)
|
|
#define BACKCOLORNUM(f) (((f) & BACKCOLORMASK) >> 12)
|
|
+#ifdef COLOR_16
|
|
+#undef FORECOLORNUM
|
|
+#undef BACKCOLORNUM
|
|
+#define FORECOLORNUM(f) ((((f) & FORECOLORMASK) >> 8) + (((f) & BOLD)?0:8))
|
|
+#define BACKCOLORNUM(f) ((((f) & BACKCOLORMASK) >> 12) + (((f) & BOLD)?8:8))
|
|
+#endif
|
|
#endif /* KTERM_COLOR */
|
|
/* global flags */
|
|
#ifdef KTERM
|