mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-27 08:10:06 +01:00
xf86Config: load DIX libraries before drivers on Cygwin
Cygwin doesn't have ELF rpath capabilities, so these libraries need to be loaded before the drivers (namely dummy and nested) which depend on their symbols. Signed-off-by: Yaakov Selkowitz <yselkowitz@users.sourceforge.net> Reviewed-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Jeremy Huddleston <jeremyhu@apple.com>
This commit is contained in:
parent
5dd3d2dbba
commit
2dffdcd60f
1 changed files with 5 additions and 0 deletions
|
|
@ -124,6 +124,11 @@ static ModuleDefault ModuleDefaults[] = {
|
|||
#endif
|
||||
#ifdef DRI2
|
||||
{.name = "dri2",.toLoad = TRUE,.load_opt = NULL},
|
||||
#endif
|
||||
#ifdef __CYGWIN__
|
||||
/* load DIX modules used by drivers first */
|
||||
{.name = "fb",.toLoad = TRUE,.load_opt = NULL},
|
||||
{.name = "shadow",.toLoad = TRUE,.load_opt = NULL},
|
||||
#endif
|
||||
{.name = NULL,.toLoad = FALSE,.load_opt = NULL}
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue