no, metux in his infinite wisdom unexported the function with the V thinking no one needed that thing or something (honestly that whole story actually is making me lose faith in xlibre maybe the transgender people are right and this fork ain't gonna go anywhere good)
someone on github made a fix that maybe actually work https://github.com/X11Libre/xf86-input-wacom/pull/6/commits/b8ccb92eecf2798831e76d943763bc8f16c0f836
haven't tried to compile it yet i'm happy with my own patch where the thing is just commented out
edit: I'm using that patch and everything is working flawlessly so far
full diff file to spare pkg maintainer's time:
diff --git a/src/x11/xf86Wacom.c b/src/x11/xf86Wacom.c
index adb1643..4c05b81 100644
--- a/src/x11/xf86Wacom.c
+++ b/src/x11/xf86Wacom.c
@@ -68,11 +68,20 @@ void
wcmLog(WacomDevicePtr priv, WacomLogType type, const char *format, ...)
{
MessageType xtype = (MessageType)type;
- va_list args;
-
+ va_list args,args2;
va_start(args, format);
- xf86VIDrvMsgVerb(priv->frontend, xtype, 0, format, args);
+ va_copy(args2,args);
+
+ int str_size = vsnprintf(NULL, 0, format, args);
+ char *str = calloc(1, str_size + 1);
va_end(args);
+
+ vsnprintf(str,str_size + 1, format, args2);
+ va_end(args2);
+
+ xf86IDrvMsgVerb(priv->frontend, xtype, 0, "%s", str);
+
+ free(str);
}
void wcmLogSafe(WacomDevicePtr priv, WacomLogType type, const char *format, ...)