diff options
author | Daniel Stone <daniel@fooishbar.org> | 2006-07-18 18:16:12 -0400 |
---|---|---|
committer | Daniel Stone <daniels@endtroducing.fooishbar.org> | 2006-07-18 18:17:38 -0400 |
commit | 84683f19b4d1c712281036bcabf8dc623e64b26a (patch) | |
tree | 94c61eca298da6f6200fcb8ba8a4d1009b1495b7 /xkb | |
parent | 881953813c7307f2aac4057b48d233e5f4a574cd (diff) |
get rid of XFree86LOADER, XFree86Server, XFree86Module, and IN_MODULE
Get rid of almost all uses of these definitions. They're still defined for
delinquent out-of-tree drivers, and also for the Mesa build. As well as
for miinitext.c. But largely gone.
Diffstat (limited to 'xkb')
-rw-r--r-- | xkb/Makefile.am | 2 | ||||
-rw-r--r-- | xkb/xkbActions.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/xkb/Makefile.am b/xkb/Makefile.am index 1669d882b..5763ce8be 100644 --- a/xkb/Makefile.am +++ b/xkb/Makefile.am @@ -1,6 +1,6 @@ noinst_LTLIBRARIES = libxkb.la libxkbstubs.la -AM_CFLAGS = $(DIX_CFLAGS) @SERVER_DEFINES@ @LOADER_DEFINES@ \ +AM_CFLAGS = $(DIX_CFLAGS) \ -DHAVE_XKB_CONFIG_H DDX_SRCS = \ diff --git a/xkb/xkbActions.c b/xkb/xkbActions.c index e4f74fb76..20277224e 100644 --- a/xkb/xkbActions.c +++ b/xkb/xkbActions.c @@ -1000,7 +1000,6 @@ _XkbFilterSwitchScreen( XkbSrvInfoPtr xkbi, return 1; } -#ifdef XFree86Server static int _XkbFilterXF86Private( XkbSrvInfoPtr xkbi, XkbFilterPtr filter, @@ -1022,7 +1021,6 @@ _XkbFilterXF86Private( XkbSrvInfoPtr xkbi, } return 1; } -#endif #ifdef XINPUT @@ -1252,12 +1250,10 @@ xkbDeviceInfoPtr xkbPrivPtr = XKBDEVICEINFO(dev); sendEvent= _XkbFilterDeviceBtn(xkbi,filter,key,&act); break; #endif -#ifdef XFree86Server case XkbSA_XFree86Private: filter = _XkbNextFreeFilter(); sendEvent= _XkbFilterXF86Private(xkbi,filter,key,&act); break; -#endif } } } |