(submit/miext-extinit) xfree86: vidmode: unexport noXFree86VidModeExtension 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
397e2fe6ee
commit
72c4646fa1
|
@ -41,7 +41,7 @@ void DRI2ExtensionInit(void);
|
|||
|
||||
#ifdef XF86VIDMODE
|
||||
#include <X11/extensions/xf86vmproto.h>
|
||||
extern _X_EXPORT Bool noXFree86VidModeExtension;
|
||||
extern Bool noXFree86VidModeExtension;
|
||||
extern void XFree86VidModeExtensionInit(void);
|
||||
#endif
|
||||
|
||||
|
|
|
@ -63,7 +63,7 @@
|
|||
|
||||
#ifdef XF86VIDMODE
|
||||
#include <X11/extensions/xf86vmproto.h>
|
||||
Bool noXFree86VidModeExtension;
|
||||
Bool noXFree86VidModeExtension = FALSE;
|
||||
#endif
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in New Issue