]> git.pld-linux.org Git - packages/XFree86.git/commitdiff
- obsolete
authorJakub Bogusz <qboosh@pld-linux.org>
Tue, 1 May 2007 06:20:08 +0000 (06:20 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    XFree86-lnx_kbd.patch -> 1.3

XFree86-lnx_kbd.patch [deleted file]

diff --git a/XFree86-lnx_kbd.patch b/XFree86-lnx_kbd.patch
deleted file mode 100644 (file)
index 1c6bd00..0000000
+++ /dev/null
@@ -1,80 +0,0 @@
-Index: xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_io.c
-diff -u xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_io.c:3.26 xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_io.c:3.27
---- xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_io.c:3.26      Mon Nov 17 22:20:41 2003
-+++ xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_io.c   Wed Mar  3 18:53:41 2004
-@@ -81,7 +81,7 @@
- #endif
- static int
--KDKBDREP_ioctl_ok(int rate, int delay) {
-+KDKBDREP_ioctl_ok(int fd, int rate, int delay) {
- #if defined(KDKBDREP) && !defined(__sparc__)
-      /* This ioctl is defined in <linux/kd.h> but is not
-       implemented anywhere - must be in some m68k patches. */
-@@ -90,7 +90,7 @@
-    /* don't change, just test */
-    kbdrep_s.rate = -1;
-    kbdrep_s.delay = -1;
--   if (ioctl( 0, KDKBDREP, &kbdrep_s )) {
-+   if (ioctl( fd, KDKBDREP, &kbdrep_s )) {
-        return 0;
-    }
-@@ -105,7 +105,7 @@
-    if (kbdrep_s.delay < 1)
-      kbdrep_s.delay = 1;
-    
--   if (ioctl( 0, KDKBDREP, &kbdrep_s )) {
-+   if (ioctl( fd, KDKBDREP, &kbdrep_s )) {
-      return 0;
-    }
-@@ -174,7 +174,7 @@
-     delay = xf86Info.kbdDelay;
--  if(KDKBDREP_ioctl_ok(rate, delay))  /* m68k? */
-+  if(KDKBDREP_ioctl_ok(xf86Info.consoleFd, rate, delay))      /* m68k? */
-     return;
-   if(KIOCSRATE_ioctl_ok(rate, delay)) /* sparc? */
-Index: xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_kbd.c
-diff -u xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_kbd.c:1.5 xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_kbd.c:1.6
---- xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_kbd.c:1.5      Tue Nov  4 03:14:39 2003
-+++ xc/programs/Xserver/hw/xfree86/os-support/linux/lnx_kbd.c  Wed Mar  3 18:53:41 2004
-@@ -108,7 +108,7 @@
- #endif
- static int
--KDKBDREP_ioctl_ok(int rate, int delay) {
-+KDKBDREP_ioctl_ok(int fd, int rate, int delay) {
- #if defined(KDKBDREP) && !defined(__sparc__)
-      /* This ioctl is defined in <linux/kd.h> but is not
-       implemented anywhere - must be in some m68k patches. */
-@@ -117,7 +117,7 @@
-    /* don't change, just test */
-    kbdrep_s.rate = -1;
-    kbdrep_s.delay = -1;
--   if (ioctl( 0, KDKBDREP, &kbdrep_s )) {
-+   if (ioctl( fd, KDKBDREP, &kbdrep_s )) {
-        return 0;
-    }
-@@ -132,7 +132,7 @@
-    if (kbdrep_s.delay < 1)
-      kbdrep_s.delay = 1;
-    
--   if (ioctl( 0, KDKBDREP, &kbdrep_s )) {
-+   if (ioctl( fd, KDKBDREP, &kbdrep_s )) {
-      return 0;
-    }
-@@ -200,7 +200,7 @@
-   if (pKbd->delay >= 0)
-     delay = pKbd->delay;
--  if(KDKBDREP_ioctl_ok(rate, delay))  /* m68k? */
-+  if(KDKBDREP_ioctl_ok(pInfo->fd, rate, delay))       /* m68k? */
-     return;
-   if(KIOCSRATE_ioctl_ok(rate, delay)) /* sparc? */
This page took 0.027913 seconds and 4 git commands to generate.