diff options
author | Aaron Plattner <aplattner@nvidia.com> | 2012-07-16 17:40:31 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2012-07-16 18:24:49 -0700 |
commit | 5884e7dedecdd82ddbb037360cf9c85143e094b5 (patch) | |
tree | d7d693acb2709a9d50e033618207457240c17bf3 /include/extinit.h | |
parent | d5977e5bd2c8ee77db08d5f948f266c9661b9fb5 (diff) |
xf86: Re-export extension disable flags
These flags were unexported by commit a1d41e311c21eb6627caa0d168e070ceaf90806f,
which moved the declarations around and lost the _X_EXPORT attributes in the
process. Since drivers need these and it's late in the release cycle, just
re-export them for now.
Signed-off-by: Aaron Plattner <aplattner@nvidia.com>
Reviewed-by: Andy Ritger <aritger@nvidia.com>
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'include/extinit.h')
-rw-r--r-- | include/extinit.h | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/include/extinit.h b/include/extinit.h index 0a24db068..6c5337fc2 100644 --- a/include/extinit.h +++ b/include/extinit.h @@ -54,17 +54,17 @@ OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #include "extnsionst.h" #ifdef COMPOSITE -extern Bool noCompositeExtension; +extern _X_EXPORT Bool noCompositeExtension; extern void CompositeExtensionInit(void); #endif #ifdef DAMAGE -extern Bool noDamageExtension; +extern _X_EXPORT Bool noDamageExtension; extern void DamageExtensionInit(void); #endif #if defined(DBE) -extern Bool noDbeExtension; +extern _X_EXPORT Bool noDbeExtension; extern void DbeExtensionInit(void); #endif @@ -74,7 +74,7 @@ extern void DMXExtensionInit(void); #if defined(DPMSExtension) #include <X11/extensions/dpmsconst.h> -extern Bool noDPMSExtension; +extern _X_EXPORT Bool noDPMSExtension; extern void DPMSExtensionInit(void); #endif @@ -88,12 +88,12 @@ extern void GlxExtensionInit(void); #ifdef PANORAMIX #include <X11/extensions/panoramiXproto.h> -extern Bool noPanoramiXExtension; +extern _X_EXPORT Bool noPanoramiXExtension; extern void PanoramiXExtensionInit(void); #endif #ifdef RANDR -extern Bool noRRExtension; +extern _X_EXPORT Bool noRRExtension; extern void RRExtensionInit(void); #endif @@ -101,18 +101,18 @@ extern void RRExtensionInit(void); extern void RecordExtensionInit(void); #endif -extern Bool noRenderExtension; +extern _X_EXPORT Bool noRenderExtension; extern void RenderExtensionInit(void); #if defined(RES) #include <X11/extensions/XResproto.h> -extern Bool noResExtension; +extern _X_EXPORT Bool noResExtension; extern void ResExtensionInit(void); #endif #if defined(SCREENSAVER) #include <X11/extensions/saver.h> -extern Bool noScreenSaverExtension; +extern _X_EXPORT Bool noScreenSaverExtension; extern void ScreenSaverExtensionInit(void); #endif @@ -122,7 +122,7 @@ extern void ShapeExtensionInit(void); #ifdef MITSHM #include <X11/extensions/shm.h> #include <X11/extensions/shmproto.h> -extern Bool noMITShmExtension; +extern _X_EXPORT Bool noMITShmExtension; extern void ShmExtensionInit(void); #endif @@ -133,20 +133,20 @@ extern void XCMiscExtensionInit(void); #ifdef XCSECURITY #include <X11/extensions/secur.h> #include "securitysrv.h" -extern Bool noSecurityExtension; +extern _X_EXPORT Bool noSecurityExtension; extern void SecurityExtensionInit(void); #endif #ifdef XF86BIGFONT #include <X11/extensions/xf86bigfproto.h> -extern Bool noXFree86BigfontExtension; +extern _X_EXPORT Bool noXFree86BigfontExtension; extern void XFree86BigfontExtensionInit(void); #endif extern void BigReqExtensionInit(void); #ifdef XFIXES -extern Bool noXFixesExtension; +extern _X_EXPORT Bool noXFixesExtension; extern void XFixesExtensionInit(void); #endif @@ -160,7 +160,7 @@ extern void XkbExtensionInit(void); #if defined(XSELINUX) #include "xselinux.h" -extern Bool noSELinuxExtension; +extern _X_EXPORT Bool noSELinuxExtension; extern void SELinuxExtensionInit(void); #endif @@ -171,14 +171,14 @@ extern void XTestExtensionInit(void); #endif #ifdef INXQUARTZ -extern Bool noPseudoramiXExtension; +extern _X_EXPORT Bool noPseudoramiXExtension; extern void PseudoramiXExtensionInit(void); #endif #if defined(XV) #include <X11/extensions/Xv.h> #include <X11/extensions/XvMC.h> -extern Bool noXvExtension; +extern _X_EXPORT Bool noXvExtension; extern void XvExtensionInit(void); extern void XvMCExtensionInit(void); #endif |