nsf

Results 289 comments of nsf

There is a possible fix, but I'm not sure, try changing: ``` out = self.cmd_and_log([self.env.GO, 'tool', 'dist', 'env']) ``` to: ``` out = self.cmd_and_log([self.env.GO, 'env']) ```

Also you were pointing at line 74 in waftools/go.py, doesn't make sense to me, I see no 'bld' even around it: https://github.com/nsf/gogobject/blob/master/waftools/go.py#L74

Indeed a bug on line 173. I've applied a fix and now the code uses `go env` instead of `go tool dist env`. Try it. It should work now.

Sure, but mine are still incomplete and have a couple of dark corners (mostly within the cgo part) and I'm too lazy to make it complete. But that's a valid...

1. At the moment gtk2 bindings don't work. Well and you can't build them at all. So.. you've mentioned gtk version 2 which is not used at all. However, gobject-introspection...

For the first part of the logs, it seems that they have fixed the annotation in the glib library. `g_object_bind_property` uses gpointer for C convenience, but introspection expects GObject actually....

Oh, just want to add that it's not actually glib's version fault, gobject-introspection for some reason contains this file: http://git.gnome.org/browse/gobject-introspection/tree/gir/gobject-2.0.c, which contains extracted annotations from the glib library. Weird, but...

Second log message is kind of weird. It says about incomplete type defintion, but full type definition only required when the type is used as a value. Which is not...

Second one is really weird, because it happens in a place where there is no reason for it, what version of the gtksourceview you got? Also note that if your...