summaryrefslogtreecommitdiffstats
path: root/contrib/packages/rpm/sle11/SOURCES/libdrm.diff
blob: 31c9abcf58be21f8cceac3f2eacf8d9055738d4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Index: hw/xfree86/common/xf86Helper.c
================================================================================
--- hw/xfree86/common/xf86Helper.c
+++ hw/xfree86/common/xf86Helper.c
@@ -2183,6 +2183,13 @@
 			&errmaj, &errmin);
     if (!ret)
 	LoaderErrorMsg(pScrn->name, name, errmaj, errmin);
+
+    /* "drm" module has been merged into "dri" module, but some drivers
+        are still trying to load it explictely and fail if it doesn't exist :-( */
+    if (!ret && !strcmp(name,"drm")) {
+        ret = (pointer) -1;
+    }
+
     return ret;
 }