diff options
author | Adam Jackson <ajax@nwnk.net> | 2006-06-05 03:00:24 +0000 |
---|---|---|
committer | Adam Jackson <ajax@nwnk.net> | 2006-06-05 03:00:24 +0000 |
commit | 52fc7c8dc70226cc7f03454e9be86a627672295f (patch) | |
tree | ecba684625dd0a7c561a261c6fe0fd36515b7af7 /hw/xfree86/dixmods/dbemodule.c | |
parent | d22582dc5a070f72d4653e24d1e4ebe4a112276e (diff) |
Ensure all *ModuleData symbols are marked _X_EXPORT. Start removing
XFree86LOADER ifdefs, non-loadable hasn't been supported for a while
now. Remove completely gratuitious REMOVE_LOADER_CHECK_MODULE_INFO
ifdefs surrounding a call to a function added in XFree86 4.1 (!).
Miscellaneous static markings.
Diffstat (limited to 'hw/xfree86/dixmods/dbemodule.c')
-rw-r--r-- | hw/xfree86/dixmods/dbemodule.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/xfree86/dixmods/dbemodule.c b/hw/xfree86/dixmods/dbemodule.c index 62fbcfd21..73639886f 100644 --- a/hw/xfree86/dixmods/dbemodule.c +++ b/hw/xfree86/dixmods/dbemodule.c @@ -1,5 +1,3 @@ -/* $XFree86: xc/programs/Xserver/dbe/dbemodule.c,v 1.6 1999/01/26 05:53:50 dawes Exp $ */ - #ifdef HAVE_XORG_CONFIG_H #include <xorg-config.h> #endif @@ -11,7 +9,7 @@ static MODULESETUPPROTO(dbeSetup); extern void DbeExtensionInit(INITARGS); -ExtensionModule dbeExt = { +static ExtensionModule dbeExt = { DbeExtensionInit, "DOUBLE-BUFFER", &noDbeExtension, @@ -36,7 +34,7 @@ static XF86ModuleVersionInfo VersRec = /* * Data for the loader */ -XF86ModuleData dbeModuleData = { &VersRec, dbeSetup, NULL }; +_X_EXPORT XF86ModuleData dbeModuleData = { &VersRec, dbeSetup, NULL }; static pointer dbeSetup(pointer module, pointer opts, int *errmaj, int *errmin) |