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
int
ag_vec_expand_(char **data, int *length, int *capacity, int memsz)
should be replaced with:
int
#ifdef __MINGW32__
__declspec(dllexport) ag_vec_expand_(char **data, int *length, int *capacity, int memsz)
#else
ag_vec_expand_(char **data, int *length, int *capacity, int memsz)
#endif
Without these directives compilation will fail if using libtool under CygWin/Msys64 Mingw64
The text was updated successfully, but these errors were encountered:
In time_render.c the following line 18-20:
Should be changed for:
In vec.c the following lines 35-36:
should be replaced with:
Without these directives compilation will fail if using libtool under CygWin/Msys64 Mingw64
The text was updated successfully, but these errors were encountered: