From f2c54e03a25a1869491789d9546a85ccc211d2f0 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 30 Sep 2015 11:44:14 +0200 Subject: [PATCH] glib: add a comment why we revert the g_quark_init() commit from upstream. --- srcpkgs/glib/patches/quark_init_on_demand.patch | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/srcpkgs/glib/patches/quark_init_on_demand.patch b/srcpkgs/glib/patches/quark_init_on_demand.patch index a0b81786ade..a61708adc37 100644 --- a/srcpkgs/glib/patches/quark_init_on_demand.patch +++ b/srcpkgs/glib/patches/quark_init_on_demand.patch @@ -1,3 +1,10 @@ +Reverting commit https://github.com/GNOME/glib/commit/2fe992b099bfd3fb121a71b7af43e116b2142b5d + +musl's does not run ctors in the assumed order that glib-2.46 expects: + +- glib_init() should be called before gobject_init_ctor(). + + diff --git glib/glib-init.c glib/glib-init.c index e7002e6..24efe9d 100644 --- glib/glib-init.c