From 92126ff49645e2a60993c380fa6ed28efd92bada Mon Sep 17 00:00:00 2001 From: "Enrico Weigelt, metux IT consult" Date: Thu, 5 Jun 2025 16:25:14 +0200 Subject: [PATCH] dix: add AllocColormap() to symbol table for internal wfb module As long as the wfb module is still a separate shared object, this function needs to be in the symbol table. Signed-off-by: Enrico Weigelt, metux IT consult --- dix/colormap_priv.h | 1 + 1 file changed, 1 insertion(+) diff --git a/dix/colormap_priv.h b/dix/colormap_priv.h index ce18ce29b..3b04e7fca 100644 --- a/dix/colormap_priv.h +++ b/dix/colormap_priv.h @@ -82,6 +82,7 @@ int TellGainedMap(WindowPtr pwin, void *value); int CopyColormapAndFree(Colormap mid, ColormapPtr pSrc, int client); +_X_EXPORT /* only for internal wfb module, as long as it's still a shared object */ int AllocColor(ColormapPtr pmap, unsigned short *pred, unsigned short *pgreen, unsigned short *pblue, Pixel *pPix, int client );