diff options
author | Egbert Eich <eich@freedesktop.org> | 2013-08-14 18:18:56 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-11-01 00:28:43 -0700 |
commit | 66c5ee0ff4690e630a69656331fd9d545c99c26c (patch) | |
tree | e4cdfa68da699b07c6e0c5e456e211a1b6f861cd /include | |
parent | f994d99539192a10a8c83047e11991f52e0ca677 (diff) |
config/APM: Add option to disable building of APM support on Linux
APM support in the Xserver was used to restore the console mode
prior to a power management event. This was to ensure the mode
upon suspend/resume was one that the system firmware or kernel
could deal with.
APM support is now largely obsolete, KMS drivers don't require a
mode restoration anyhow. Therefore it should be possible to disable
this feature.
(small modification by keithp - move test for XF86PM flag after check
for APM, then move XF86PM flag to xorg-config.h.in)
Signed-off-by: Egbert Eich <eich@freedesktop.org>
Tested-by: Keith Packard <keithp@keithp.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/xorg-config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/xorg-config.h.in b/include/xorg-config.h.in index 0df31aeb2..487d7addb 100644 --- a/include/xorg-config.h.in +++ b/include/xorg-config.h.in @@ -142,4 +142,7 @@ /* Define to 1 if you have the `seteuid' function. */ #undef HAVE_SETEUID +/* Support APM/ACPI power management in the server */ +#undef XF86PM + #endif /* _XORG_CONFIG_H_ */ |