I've got devel/glib20 built WITH_COLLATION_FIX=yes . The last commit to devel/glib20/Makefile adds a __STDC_ISO_10646__ definition to configure arguments for that option. The problem is pidgin (net-im/pidgin) constantly crashes if all conditions below are met: a) glib20 built WITH_COLLATION_FIX=yes b) glib20 built after that commit (so with __STDC_ISO_10646__ definition) c) pidgin is started with uk_UA.KOI8-U locale , but works well when any of three requirements above is lifted, e.g. if i reset locale to C, or if the commit is reverted (as it was before) it works well. According to the `pidgin -d` log the crash occurs somewhere during constructing the buddy list (either read from the local configuration in ~/.purple or after an account added and the server contact list is read when started from scratch with no ~/.purple existing). Also, the possible significant condition is that the buddylist contains non-latin group names (while buddy names are all latin) Fix: Revert the __STDC_ISO_10646__ definition commit or unset devel/glib20 WITH_COLLATION_FIX=yes option or run an application (pidgin) with C locale
Responsible Changed From-To: freebsd-bugs->freebsd-ports reassign to ports
Responsible Changed From-To: freebsd-ports->gnome Glib is a gnome@ ports.
mezz 2010-07-20 21:24:08 UTC FreeBSD ports repository Modified files: devel/glib20 Makefile Log: Back out previous committed of add -D__STDC_ISO_10646__ as it causes a few applications crash. PR: ports/148450 Reported by: Kyryll A Mirnenko <xmirya@gmail.com> Discussed with: marcus Feature safe: yes Revision Changes Path 1.169 +2 -1 ports/devel/glib20/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed I have disabled the __STDC_ISO_10646__. Thanks for report!