mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
c01aa3135c
Please note, that it's a work in progress, so some features doesn't work (for example mouse support). However, the functionality already present is sufficient to run some of the popular apps (quakeforge for example). I tested it on ATI Mach64 and C&T55554 adapters.
22 lines
584 B
Plaintext
22 lines
584 B
Plaintext
diff -druN svgalib-1.4.2.orig/src/mouse/ms.c src/mouse/ms.c
|
|
--- svgalib-1.4.2.orig/src/mouse/ms.c Fri Aug 25 04:39:39 2000
|
|
+++ src/mouse/ms.c Fri Aug 25 04:39:57 2000
|
|
@@ -116,7 +116,7 @@
|
|
tty.c_iflag = IGNBRK | IGNPAR;
|
|
tty.c_oflag = 0;
|
|
tty.c_lflag = 0;
|
|
- tty.c_line = 0;
|
|
+/* tty.c_line = 0;*/
|
|
tty.c_cc[VTIME] = 0;
|
|
tty.c_cc[VMIN] = 1;
|
|
|
|
@@ -509,7 +509,7 @@
|
|
tty.c_iflag = IGNBRK | IGNPAR;
|
|
tty.c_oflag = 0;
|
|
tty.c_lflag = 0;
|
|
- tty.c_line = 0;
|
|
+/* tty.c_line = 0;*/
|
|
tty.c_cc[VTIME] = 0;
|
|
tty.c_cc[VMIN] = 1;
|
|
tty.c_cflag = cflag[m_type] | B1200;
|