(submit/miext-extinit) xfree86: dga: unexport noXFree86DGAExtension and move into extension
This isn't needed by any external module, so no need to export it. And those flags are better off in the corresponding extension, instead of the OS layer. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
b1690c9c65
commit
a13d6c36bf
|
@ -78,6 +78,8 @@
|
|||
#include "dgaproc.h"
|
||||
#include "protocol-versions.h"
|
||||
|
||||
Bool noXFree86DGAExtension = FALSE;
|
||||
|
||||
#define DGA_PROTOCOL_OLD_SUPPORT 1
|
||||
|
||||
static DevPrivateKeyRec DGAScreenKeyRec;
|
||||
|
|
|
@ -47,9 +47,9 @@ extern void XFree86VidModeExtensionInit(void);
|
|||
|
||||
#ifdef XFreeXDGA
|
||||
#include <X11/extensions/xf86dgaproto.h>
|
||||
extern _X_EXPORT Bool noXFree86DGAExtension;
|
||||
extern void XFree86DGAExtensionInit(void);
|
||||
extern void XFree86DGARegister(void);
|
||||
extern Bool noXFree86DGAExtension;
|
||||
void XFree86DGAExtensionInit(void);
|
||||
void XFree86DGARegister(void);
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
|
|
@ -122,9 +122,6 @@ __stdcall unsigned long GetTickCount(void);
|
|||
#include "dixstruct_priv.h"
|
||||
#include "dpmsproc.h"
|
||||
|
||||
#ifdef XFreeXDGA
|
||||
Bool noXFree86DGAExtension = FALSE;
|
||||
#endif
|
||||
#ifdef XF86VIDMODE
|
||||
Bool noXFree86VidModeExtension = FALSE;
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue