(submit/miext-extinit) dbe: unexport noDbeExtension field
This field isn't used by any drivers, and also better belongs into the corresponding extension instead of OS adaption layer. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
21e7a265cd
commit
1e1f73938b
|
@ -53,6 +53,7 @@
|
||||||
#include "xace.h"
|
#include "xace.h"
|
||||||
|
|
||||||
/* GLOBALS */
|
/* GLOBALS */
|
||||||
|
Bool noDbeExtension = FALSE;
|
||||||
|
|
||||||
/* These are globals for use by DDX */
|
/* These are globals for use by DDX */
|
||||||
DevPrivateKeyRec dbeScreenPrivKeyRec;
|
DevPrivateKeyRec dbeScreenPrivKeyRec;
|
||||||
|
|
|
@ -56,11 +56,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
#ifdef COMPOSITE
|
#ifdef COMPOSITE
|
||||||
extern _X_EXPORT Bool noCompositeExtension;
|
extern _X_EXPORT Bool noCompositeExtension;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(DBE)
|
|
||||||
extern _X_EXPORT Bool noDbeExtension;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(DPMSExtension)
|
#if defined(DPMSExtension)
|
||||||
extern _X_EXPORT Bool noDPMSExtension;
|
extern _X_EXPORT Bool noDPMSExtension;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -9,6 +9,7 @@
|
||||||
#include "extinit.h"
|
#include "extinit.h"
|
||||||
|
|
||||||
extern Bool noDamageExtension;
|
extern Bool noDamageExtension;
|
||||||
|
extern Bool noDbeExtension;
|
||||||
extern Bool noGEExtension;
|
extern Bool noGEExtension;
|
||||||
|
|
||||||
void CompositeExtensionInit(void);
|
void CompositeExtensionInit(void);
|
||||||
|
|
|
@ -124,9 +124,6 @@ Bool noTestExtensions;
|
||||||
#ifdef COMPOSITE
|
#ifdef COMPOSITE
|
||||||
Bool noCompositeExtension = FALSE;
|
Bool noCompositeExtension = FALSE;
|
||||||
#endif
|
#endif
|
||||||
#ifdef DBE
|
|
||||||
Bool noDbeExtension = FALSE;
|
|
||||||
#endif
|
|
||||||
#ifdef DPMSExtension
|
#ifdef DPMSExtension
|
||||||
#include "dpmsproc.h"
|
#include "dpmsproc.h"
|
||||||
Bool noDPMSExtension = FALSE;
|
Bool noDPMSExtension = FALSE;
|
||||||
|
|
Loading…
Reference in New Issue