mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
2.1 KiB

  1. # --- ROCK-COPYRIGHT-NOTE-BEGIN ---
  2. #
  3. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  4. # Please add additional copyright information _after_ the line containing
  5. # the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
  6. # the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
  7. #
  8. # ROCK Linux: rock-src/package/x11/xfree86/4.3.11-config.patch
  9. # ROCK Linux is Copyright (C) 1998 - 2003 Clifford Wolf
  10. #
  11. # This program is free software; you can redistribute it and/or modify
  12. # it under the terms of the GNU General Public License as published by
  13. # the Free Software Foundation; either version 2 of the License, or
  14. # (at your option) any later version. A copy of the GNU General Public
  15. # License can be found at Documentation/COPYING.
  16. #
  17. # Many people helped and are helping developing ROCK Linux. Please
  18. # have a look at http://www.rocklinux.org/ and the Documentation/TEAM
  19. # file for details.
  20. #
  21. # --- ROCK-COPYRIGHT-NOTE-END ---
  22. RCS file: /cvs/xc/programs/Xserver/hw/xfree86/common/xf86Config.c,v
  23. retrieving revision 3.272
  24. retrieving revision 3.273
  25. diff -u -r3.272 -r3.273
  26. --- xc/programs/Xserver/hw/xfree86/common/xf86Config.c 24 Aug 2003 20:52:30 -0000 3.272
  27. +++ xc/programs/Xserver/hw/xfree86/common/xf86Config.c 27 Aug 2003 02:50:25 -0000 3.273
  28. @@ -1,4 +1,4 @@
  29. -/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86Config.c,v 3.272 2003/08/24 20:52:30 dawes Exp $ */
  30. +/* $XFree86: xc/programs/Xserver/hw/xfree86/common/xf86Config.c,v 3.273 2003/08/27 02:50:25 dawes Exp $ */
  31. /*
  32. @@ -1451,7 +1451,7 @@
  33. indp[count - 1].extraOptions = xf86addNewOption(NULL, "CorePointer", NULL);
  34. indp[count].identifier = NULL;
  35. servlayoutp->inputs = indp;
  36. - } else {
  37. + } else if (!havePointer) {
  38. /* This should never happen. */
  39. xf86Msg(X_ERROR, "Cannot locate a core pointer device.\n");
  40. return FALSE;
  41. @@ -1473,7 +1473,7 @@
  42. indp[count - 1].extraOptions = xf86addNewOption(NULL, "CoreKeyboard", NULL);
  43. indp[count].identifier = NULL;
  44. servlayoutp->inputs = indp;
  45. - } else {
  46. + } else if (!haveKeyboard) {
  47. /* This should never happen. */
  48. xf86Msg(X_ERROR, "Cannot locate a core keyboard device\n");
  49. return FALSE;