forked from pool/xorg-x11-server
Stefan Dirsch
ebdc01ee77
Udpate to Xorg 1.12.1... add 'automatic' ABI provides, which are verified during build to be true to ensure we can't ever publish a package which does not contain correct provides for the ABI OBS-URL: https://build.opensuse.org/request/show/114753 OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=383
23 lines
887 B
Diff
23 lines
887 B
Diff
Index: hw/xfree86/common/xf86AutoConfig.c
|
|
===================================================================
|
|
--- hw/xfree86/common/xf86AutoConfig.c.orig
|
|
+++ hw/xfree86/common/xf86AutoConfig.c
|
|
@@ -264,7 +264,7 @@ listPossibleVideoDrivers(char *matches[]
|
|
/* Fallback to platform default hardware */
|
|
if (i < (nmatches - 1)) {
|
|
#if defined(__i386__) || defined(__amd64__) || defined(__hurd__)
|
|
- matches[i++] = xnfstrdup("vesa");
|
|
+ matches[i++] = xnfstrdup("fbdev");
|
|
#elif defined(__sparc__) && !defined(sun)
|
|
matches[i++] = xnfstrdup("sunffb");
|
|
#endif
|
|
@@ -276,7 +276,7 @@ listPossibleVideoDrivers(char *matches[]
|
|
#if !defined(__linux__) && defined(__sparc__)
|
|
matches[i++] = xnfstrdup("wsfb");
|
|
#else
|
|
- matches[i++] = xnfstrdup("fbdev");
|
|
+ matches[i++] = xnfstrdup("vesa");
|
|
#endif
|
|
}
|
|
#endif /* !sun */
|