From fca07a761cf60a11554beb0c79eeabab3a5a3a7e Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Fri, 20 Jun 2025 14:58:03 +0200 Subject: [PATCH] xfree86: export xf86FlipPixels() but keep it internal Needed by the int10 module, so has to be in the symbol table. But still not supposed to be used by out-of-tree drivers. Reported-by: stefan11111 Signed-off-by: Enrico Weigelt, metux IT consult --- hw/xfree86/common/xf86_priv.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hw/xfree86/common/xf86_priv.h b/hw/xfree86/common/xf86_priv.h index 36c0633fe..be01c40f9 100644 --- a/hw/xfree86/common/xf86_priv.h +++ b/hw/xfree86/common/xf86_priv.h @@ -33,7 +33,10 @@ extern char *xf86PointerName; extern char *xf86KeyboardName; extern rgb xf86Weight; + +_X_EXPORT /* only for in-tree vgahw module, not supposed to be used by OOT modules */ extern Bool xf86FlipPixels; + extern Gamma xf86Gamma; extern const char *xf86ModulePath;