(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"
|
||||
|
||||
/* GLOBALS */
|
||||
Bool noDbeExtension = FALSE;
|
||||
|
||||
/* These are globals for use by DDX */
|
||||
DevPrivateKeyRec dbeScreenPrivKeyRec;
|
||||
|
|
|
@ -56,11 +56,6 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|||
#ifdef COMPOSITE
|
||||
extern _X_EXPORT Bool noCompositeExtension;
|
||||
#endif
|
||||
|
||||
#if defined(DBE)
|
||||
extern _X_EXPORT Bool noDbeExtension;
|
||||
#endif
|
||||
|
||||
#if defined(DPMSExtension)
|
||||
extern _X_EXPORT Bool noDPMSExtension;
|
||||
#endif
|
||||
|
|
|
@ -9,6 +9,7 @@
|
|||
#include "extinit.h"
|
||||
|
||||
extern Bool noDamageExtension;
|
||||
extern Bool noDbeExtension;
|
||||
extern Bool noGEExtension;
|
||||
|
||||
void CompositeExtensionInit(void);
|
||||
|
|
|
@ -124,9 +124,6 @@ Bool noTestExtensions;
|
|||
#ifdef COMPOSITE
|
||||
Bool noCompositeExtension = FALSE;
|
||||
#endif
|
||||
#ifdef DBE
|
||||
Bool noDbeExtension = FALSE;
|
||||
#endif
|
||||
#ifdef DPMSExtension
|
||||
#include "dpmsproc.h"
|
||||
Bool noDPMSExtension = FALSE;
|
||||
|
|
Loading…
Reference in New Issue