OpenSDE Packages Database (without history before r20070)
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.

39 lines
1.6 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../xf86-video-ati/udev.patch
  5. # Copyright (C) 2010 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. diff -Nur xf86-video-ati-6.13.1-orig/src/drmmode_display.c xf86-video-ati-6.13.1/src/drmmode_display.c
  17. --- xf86-video-ati-6.13.1-orig/src/drmmode_display.c 2010-09-16 20:14:25.000000000 +0200
  18. +++ xf86-video-ati-6.13.1/src/drmmode_display.c 2010-09-16 20:18:12.000000000 +0200
  19. @@ -1430,7 +1430,7 @@
  20. u = udev_new();
  21. if (!u)
  22. return;
  23. - mon = udev_monitor_new_from_netlink(u, "udev");
  24. + mon = udev_monitor_new_from_netlink(u);
  25. if (!mon) {
  26. udev_unref(u);
  27. return;
  28. diff -Nur xf86-video-ati-6.13.1-orig/src/drmmode_display.h xf86-video-ati-6.13.1/src/drmmode_display.h
  29. --- xf86-video-ati-6.13.1-orig/src/drmmode_display.h 2010-09-16 20:14:25.000000000 +0200
  30. +++ xf86-video-ati-6.13.1/src/drmmode_display.h 2010-09-16 20:18:26.000000000 +0200
  31. @@ -31,6 +31,7 @@
  32. #include "xf86drmMode.h"
  33. #ifdef HAVE_LIBUDEV
  34. +#define LIBUDEV_I_KNOW_THE_API_IS_SUBJECT_TO_CHANGE
  35. #include "libudev.h"
  36. #endif