From: Nick Bowler Date: Sat, 8 Feb 2020 21:36:53 +0000 (-0500) Subject: Try an additional workaround for GLib inline issue. X-Git-Url: http://git.draconx.ca/gitweb/dxcommon.git/commitdiff_plain/4f3e19a6298267a8675de26e3e3e16afa97cf6a1?hp=4f3e19a6298267a8675de26e3e3e16afa97cf6a1 Try an additional workaround for GLib inline issue. It seems there are a range of GLib versions which #define G_INLINE_FUNC unconditionally and thus we cannot work around the headers reliance on obsolete GNU inline semantics by predefining this macro. On these versions, we can define G_IMPLEMENT_INLINES to disable inline function usage altogether. This is less ideal but it will at least allow compilation to proceed. ---