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
This warning was raised when compiling the MixStream extension:
fretwork/mixstream/MixStream.c: In function ‘mix_stream_new’:
fretwork/mixstream/MixStream.c:119:3: warning: ‘g_mutex_new’ is deprecated (declared at /usr/include/glib-2.0/glib/deprecated/gthread.h:273) [-Wdeprecated-declarations]
This warning was raised when compiling the MixStream extension:
As we're using glib 2.34.3+,
g_mutex_newcan be removed.See https://developer.gnome.org/glib/stable/glib-Threads.html#GMutex for how it should be.
Eventually, we can add a condition on the version of glib.