Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
xserver
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
17
Issues
17
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Adam Jackson
xserver
Commits
733c4beb
Commit
733c4beb
authored
Aug 23, 2006
by
David Nusinow
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add xorg.conf IgnoreABI option which does the same thing as -ignoreABI
parent
b983773d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
1 deletion
+17
-1
hw/xfree86/common/xf86Config.c
hw/xfree86/common/xf86Config.c
+8
-1
hw/xfree86/common/xf86Init.c
hw/xfree86/common/xf86Init.c
+4
-0
hw/xfree86/common/xf86Privstr.h
hw/xfree86/common/xf86Privstr.h
+1
-0
hw/xfree86/doc/man/xorg.conf.man.pre
hw/xfree86/doc/man/xorg.conf.man.pre
+4
-0
No files found.
hw/xfree86/common/xf86Config.c
View file @
733c4beb
...
...
@@ -761,7 +761,8 @@ typedef enum {
FLAG_RENDER_COLORMAP_MODE
,
FLAG_HANDLE_SPECIAL_KEYS
,
FLAG_RANDR
,
FLAG_AIGLX
FLAG_AIGLX
,
FLAG_IGNORE_ABI
}
FlagValues
;
static
OptionInfoRec
FlagOptions
[]
=
{
...
...
@@ -833,6 +834,8 @@ static OptionInfoRec FlagOptions[] = {
{
0
},
FALSE
},
{
FLAG_AIGLX
,
"AIGLX"
,
OPTV_BOOLEAN
,
{
0
},
FALSE
},
{
FLAG_IGNORE_ABI
,
"IgnoreABI"
,
OPTV_BOOLEAN
,
{
0
},
FALSE
},
{
-
1
,
NULL
,
OPTV_NONE
,
{
0
},
FALSE
},
};
...
...
@@ -891,6 +894,10 @@ configServerFlags(XF86ConfFlagsPtr flagsconf, XF86OptionPtr layoutopts)
&
(
xf86Info
.
grabInfo
.
allowDeactivate
));
xf86GetOptValBool
(
FlagOptions
,
FLAG_ALLOW_CLOSEDOWN_GRABS
,
&
(
xf86Info
.
grabInfo
.
allowClosedown
));
xf86GetOptValBool
(
FlagOptions
,
FLAG_IGNORE_ABI
,
&
xf86Info
.
ignoreABI
);
if
(
&
xf86Info
.
ignoreABI
)
{
xf86Msg
(
X_CONFIG
,
"Ignoring ABI Version
\n
"
);
}
/*
* Set things up based on the config file information. Some of these
...
...
hw/xfree86/common/xf86Init.c
View file @
733c4beb
...
...
@@ -331,6 +331,10 @@ InitOutput(ScreenInfo *pScreenInfo, int argc, char **argv)
/* Tell the loader the default module search path */
LoaderSetPath
(
xf86ModulePath
);
if
(
xf86Info
.
ignoreABI
)
{
LoaderSetOptions
(
LDR_OPT_ABI_MISMATCH_NONFATAL
);
}
#ifdef TESTING
{
char
**
list
,
**
l
;
...
...
hw/xfree86/common/xf86Privstr.h
View file @
733c4beb
...
...
@@ -166,6 +166,7 @@ typedef struct {
MessageType
randRFrom
;
Bool
aiglx
;
MessageType
aiglxFrom
;
Bool
ignoreABI
;
struct
{
Bool
disabled
;
/* enable/disable deactivating
* grabs or closing the
...
...
hw/xfree86/doc/man/xorg.conf.man.pre
View file @
733c4beb
...
...
@@ -605,6 +605,10 @@ the builtin handler will be used.
.TP 7
.BI "Option \*qAIGLX\*q \*q" boolean \*q
enable or disable AIGLX. AIGLX is enabled by default.
.TP 7
.BI "Option \*qIgnoreABI\*q \*q" boolean \*q
Allow modules built for a different, potentially incompatible version of
the X server to load. Disabled by default.
.SH MODULE SECTION
The
.B Module
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment