You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying gst-build libcaca failed because the macro in caca0.h is of unsupported syntax fro VS
I gurded and changed to the syntax in the documentation for MS to get it to build
#if defined _MSC_VER
#definecaca_printf(x, y, f, ...) caca_printf(__caca0_cv, x, y, f, __VA_ARGS__)
#else
#definecaca_printf(x, y, f, z...) caca_printf(__caca0_cv, x, y, f, ##z)
#endif
The text was updated successfully, but these errors were encountered:
When trying gst-build libcaca failed because the macro in caca0.h is of unsupported syntax fro VS
I gurded and changed to the syntax in the documentation for MS to get it to build
The text was updated successfully, but these errors were encountered: