diamond fails to open with gtk 3.14
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Spud |
New
|
Undecided
|
Unassigned |
Bug Description
On a system with gtk 3.14 (Debian Jessie) diamond fails to open, with:
skramer@gyre:~$ diamond -s git/fluidity/
Attempt to unlock mutex that was not locked
Aborted
I think this is the same bug as discussed on https:/
Long story short: apparently this is a pygtk bug which is unlikely to get fixed since (rather worryingly!) pygtk has been deprecated. There is however a workaround:
=== modified file 'diamond/
--- diamond/bin/diamond 2012-10-12 20:57:58 +0000
+++ diamond/bin/diamond 2014-10-14 11:11:08 +0000
@@ -24,7 +24,7 @@
import gtk
import gtk.gdk
-gtk.gdk.
+gtk.set_
import gobject
gobject.
which seems to work for me.