aboutsummaryrefslogtreecommitdiff
path: root/korean
diff options
context:
space:
mode:
authorCHOI Junho <cjh@FreeBSD.org>2001-02-20 14:49:38 +0000
committerCHOI Junho <cjh@FreeBSD.org>2001-02-20 14:49:38 +0000
commit849136aaf7e1214cf34810f580b79c56ac38f5c4 (patch)
treefbfa7454e13faea24d296421a1ea6d2ac4defbc8 /korean
parent44d2b34d4ab227bbef0ae37c668f5abae3b7a7c1 (diff)
downloadports-849136aaf7e1214cf34810f580b79c56ac38f5c4.tar.gz
ports-849136aaf7e1214cf34810f580b79c56ac38f5c4.zip
build fix for 5-current. patches from japanese/kon2-16dot.
Obtained from: bento
Notes
Notes: svn path=/head/; revision=38513
Diffstat (limited to 'korean')
-rw-r--r--korean/han/files/patch-aa109
-rw-r--r--korean/han/files/patch-af21
-rw-r--r--korean/han/files/patch-ah21
-rw-r--r--korean/han/files/patch-bd37
4 files changed, 81 insertions, 107 deletions
diff --git a/korean/han/files/patch-aa b/korean/han/files/patch-aa
index e559212d276e..cf6a0733cf40 100644
--- a/korean/han/files/patch-aa
+++ b/korean/han/files/patch-aa
@@ -1,71 +1,52 @@
---- src/vc.c.orig Sat Mar 29 04:35:50 1997
-+++ src/vc.c Sun Jul 16 12:44:05 2000
-@@ -310,12 +310,23 @@
- {
- struct vt_mode vtm;
-
-+#if defined(__FreeBSD__)
-+ signal(SIGUSR1, SIG_IGN);
-+ signal(SIGUSR2, SIG_IGN);
-+#else /* linux */
- signal(SIGUSR1, SIG_DFL);
- signal(SIGUSR2, SIG_DFL);
-+#endif
- vtm.mode = VT_AUTO;
- vtm.waitv = 0;
-+#if defined(__FreeBSD__)
-+ vtm.relsig = SIGUSR1;
-+ vtm.acqsig = SIGUSR2;
-+ vtm.frsig = SIGUSR1;
-+#else /* linux */
- vtm.relsig = 0;
- vtm.acqsig = 0;
-+#endif
- ioctl(0, VT_SETMODE, &vtm);
- #if defined(__FreeBSD__)
- ioctl(0, VT_RELDISP, 1);
-@@ -341,6 +352,9 @@
- vtm.waitv = 0;
- vtm.relsig = SIGUSR1;
- vtm.acqsig = SIGUSR2;
-+#if defined(__FreeBSD__)
-+ vtm.frsig = SIGUSR1;
-+#endif
- ioctl(0, VT_SETMODE, &vtm);
- vInfo.graph_mode();
- if (useHardScroll)
-@@ -859,20 +873,31 @@
-
- static int ConfigBeep(const char *confstr)
- {
-- beepCount = atoi(confstr) * 10000;
- #if defined(linux)
-- ioperm(COUNTER_ADDR, 1, TRUE);
-+ beepCount = atoi(confstr) * 10000;
-+ if (beepCount > 0)
-+ ioperm(COUNTER_ADDR, 1, TRUE);
+--- src/vc.c.orig Tue Feb 20 23:38:10 2001
++++ src/vc.c Tue Feb 20 23:41:25 2001
+@@ -37,7 +37,13 @@
+ #include <termio.h>
+ #elif defined(__FreeBSD__)
+ #include <termios.h>
+-#include <machine/console.h>
++#include <osreldate.h>
++#if __FreeBSD_version >= 410000
++# include <sys/consio.h>
++# include <sys/kbio.h>
++#else
++# include <machine/console.h>
+#endif
-+#if defined(__FreeBSD__)
-+ beepCount = atoi(confstr) * 10;
#endif
- return SUCCESS;
+ #include <sys/ioctl.h>
+ #if defined(linux)
+@@ -94,28 +100,26 @@
+ inline void blatch(void *head, int n)
+ {
+
+- __asm__("\t clc\n"
++ __asm__ volatile("\t clc\n"
+ "1:\n"
+ "\t andb %%bl, (%%eax)\n"
+ "\t incl %%eax\n"
+ "\t loop 1b\n"
+- :
+- : "eax" ((long)head), "bl" (0x7F), "c" (n)
+- : "bl", "cx" );
++ : "=bl" (head), "=c" (n)
++ : "eax" ((long)head), "0" (0x7F), "1" (n));
}
-+#define BELL_PITCH 800
-+
- void Beep(void)
+ static
+ inline void llatch(void *head, int n)
{
-- if (!con.active) return;
- #ifdef linux
-+ if (!con.active) return;
- PortOutb(PortInb(COUNTER_ADDR)|3, COUNTER_ADDR);
- usleep(beepCount);
- PortOutb(PortInb(COUNTER_ADDR)&0xFC, COUNTER_ADDR);
-+#endif
-+#if defined(__FreeBSD__)
-+ if(beepCount <= 0) return;
-+ ioctl(fileno(stdout), KDMKTONE, (BELL_PITCH & 0xffff) |
-+ ((beepCount & 0xffff) << 16));
- #endif
+
+- __asm__("\t clc\n"
++ __asm__ volatile("\t clc\n"
+ "1:\n"
+ "\t andl %%ebx, (%%eax)\n"
+ "\t addl $4, %%eax\n"
+ "\t loop 1b\n"
+- :
+- : "eax" ((long)head), "ebx" (0x7F7F7F7F), "c" (n>>2)
+- : "ebx", "cx" );
++ : "=ebx" (head), "=c" (n)
++ : "eax" ((long)head), "0" (0x7F7F7F7F), "1" (n>>2));
}
+ static inline u_int TextAddress(u_int x, u_int y)
diff --git a/korean/han/files/patch-af b/korean/han/files/patch-af
index 1b9fb6473f9f..48da8e937172 100644
--- a/korean/han/files/patch-af
+++ b/korean/han/files/patch-af
@@ -1,6 +1,21 @@
--- src/term.c.orig Sat Mar 29 04:36:54 1997
-+++ src/term.c Sun Jul 16 12:50:34 2000
-@@ -209,6 +209,9 @@
++++ src/term.c Tue Feb 20 23:43:44 2001
+@@ -30,7 +30,13 @@
+ #include <termio.h>
+ #elif defined(__FreeBSD__)
+ #include <termios.h>
+-#include <machine/console.h>
++#include <osreldate.h>
++#if __FreeBSD_version >= 410000
++# include <sys/consio.h>
++# include <sys/kbio.h>
++#else
++# include <machine/console.h>
++#endif
+ #define termio termios
+ #endif
+ #include <signal.h>
+@@ -209,6 +215,9 @@
}
if (FD_ISSET(0, &readFds)) {
i = read(0, buff, BUFSIZ);
@@ -10,7 +25,7 @@
#if 1
{
int k, l;
-@@ -239,7 +242,7 @@
+@@ -239,7 +248,7 @@
PollCursor(TRUE);
}
if (FD_ISSET(sockFd, &readFds)) SocketInterface(sockFd);
diff --git a/korean/han/files/patch-ah b/korean/han/files/patch-ah
index 0db1f75c0c95..952f34d0e564 100644
--- a/korean/han/files/patch-ah
+++ b/korean/han/files/patch-ah
@@ -1,6 +1,21 @@
--- src/display/vga.c.orig Wed Apr 9 21:34:02 1997
-+++ src/display/vga.c Sun Jul 16 12:52:41 2000
-@@ -379,7 +379,7 @@
++++ src/display/vga.c Tue Feb 20 23:39:29 2001
+@@ -42,7 +42,13 @@
+ #elif defined(__FreeBSD__)
+ #include <vm/vm_param.h>
+ #include <sys/ioctl.h>
+-#include <machine/console.h>
++#include <osreldate.h>
++#if __FreeBSD_version >= 410000
++# include <sys/consio.h>
++# include <sys/kbio.h>
++#else
++# include <machine/console.h>
++#endif
+ vm_size_t page_size;
+ #endif
+ #undef free
+@@ -379,7 +385,7 @@
/* if (!code) return;*/
VgaSetColor(fc);
if (bc & 0x8) *(vcls - dInfo.glineByte) = 0;
@@ -9,7 +24,7 @@
if (*code) {
VgaOutByte(*code);
*gram = *gram;
-@@ -617,7 +617,11 @@
+@@ -617,7 +623,11 @@
Perror("ioctl CONSOLE_IO_ENABLE/KDSETMODE");
return FAILURE;
}
diff --git a/korean/han/files/patch-bd b/korean/han/files/patch-bd
deleted file mode 100644
index fe963c1be494..000000000000
--- a/korean/han/files/patch-bd
+++ /dev/null
@@ -1,37 +0,0 @@
---- src/vc.c.orig Fri Jun 9 04:14:43 2000
-+++ src/vc.c Fri Jun 9 04:27:53 2000
-@@ -95,28 +95,26 @@
- inline void blatch(void *head, int n)
- {
-
-- __asm__("\t clc\n"
-+ __asm__ volatile("\t clc\n"
- "1:\n"
- "\t andb %%bl, (%%eax)\n"
- "\t incl %%eax\n"
- "\t loop 1b\n"
-- :
-- : "eax" ((long)head), "bl" (0x7F), "c" (n)
-- : "bl", "cx" );
-+ : "=bl" (head), "=c" (n)
-+ : "eax" ((long)head), "0" (0x7F), "1" (n));
- }
-
- static
- inline void llatch(void *head, int n)
- {
-
-- __asm__("\t clc\n"
-+ __asm__ volatile("\t clc\n"
- "1:\n"
- "\t andl %%ebx, (%%eax)\n"
- "\t addl $4, %%eax\n"
- "\t loop 1b\n"
-- :
-- : "eax" ((long)head), "ebx" (0x7F7F7F7F), "c" (n>>2)
-- : "ebx", "cx" );
-+ : "=ebx" (head), "=c" (n)
-+ : "eax" ((long)head), "0" (0x7F7F7F7F), "1" (n>>2));
- }
-
- static inline u_int TextAddress(u_int x, u_int y)