forked from pool/xorg-x11-server
Egbert Eich
63af0702ac
SUSE specific and to-be-upstreamed patches. - Added descriptions to a number of patches. - Renamed some patches: * N_p_default-module-path.diff -> N_default-module-path.diff * n_xorg-x11-server-rpmmacros.patch -> N_xorg-x11-server-rpmmacros.patch OBS-URL: https://build.opensuse.org/package/show/X11:XOrg/xorg-x11-server?expand=0&rev=480
19 lines
706 B
Diff
19 lines
706 B
Diff
From: Stefan Dirsch <sndirsch@suse.de>
|
|
|
|
Add /usr/lib[64]/xorg/modules/updates to the module path.
|
|
Make sure this path is considered first.
|
|
|
|
Index: hw/xfree86/common/xf86Globals.c
|
|
===================================================================
|
|
--- hw/xfree86/common/xf86Globals.c.orig
|
|
+++ hw/xfree86/common/xf86Globals.c
|
|
@@ -135,7 +135,7 @@ xf86InfoRec xf86Info = {
|
|
|
|
const char *xf86ConfigFile = NULL;
|
|
const char *xf86ConfigDir = NULL;
|
|
-const char *xf86ModulePath = DEFAULT_MODULE_PATH;
|
|
+const char *xf86ModulePath = DEFAULT_MODULE_PATH "/updates," DEFAULT_MODULE_PATH;
|
|
MessageType xf86ModPathFrom = X_DEFAULT;
|
|
const char *xf86LogFile = DEFAULT_LOGPREFIX;
|
|
MessageType xf86LogFileFrom = X_DEFAULT;
|