xfree86: without CONFIG_HAL, Auto{Add|Enable}Devices and AEI is false.

There's little chance that we'll get the input devices at runtime without HAL,
we might as well force the server to add mouse/kbd devices automatically -
just like in the olden days.

Signed-off-by: Peter Hutterer <peter.hutterer@redhat.com>
This commit is contained in:
Peter Hutterer 2008-11-18 08:19:45 +10:00
parent 1cd894173e
commit ace38fafb0

View File

@ -129,9 +129,15 @@ xf86InfoRec xf86Info = {
.kbdCustomKeycodes = FALSE,
.disableRandR = FALSE,
.randRFrom = X_DEFAULT,
#ifdef CONFIG_HAL
.allowEmptyInput = TRUE,
.autoAddDevices = TRUE,
.autoEnableDevices = TRUE
#else
.allowEmptyInput = FALSE,
.autoAddDevices = FALSE,
.autoEnableDevices = FALSE
#endif
};
const char *xf86ConfigFile = NULL;
const char *xf86InputDeviceList = NULL;