Hello,
Am completely new to the Linux development and following jhbuild
instructions for building the gnome and slowly getting my hands dirty -
hoping that I can contribute to gnome projects. Currently, the following
issue is blocking
The master pygtk git repository has the following for
gtk-base.defs #1835
(define-method select_month
(of-object "GtkCalendar")
(c-name "gtk_calendar_select_month")
(return-type "gboolean")
(parameters
'("guint" "month")
'("guint" "year")
)
)
and the auto generated file gtk.c has the following implementation
ret = gtk_calendar_select_month(GTK_CALENDAR(self->obj), month, year);
return PyBool_FromLong(ret);
and fails the build with the following error
gtk.c: In function ‘_wrap_gtk_calendar_select_month’:
gtk.c:30434: error: void value not ignored as it ought to be
gtk.c: In function ‘_wrap_gtk_calendar_mark_day’:
gtk.c:30487: error: void value not ignored as it ought to be
gtk.c: In function ‘_wrap_gtk_calendar_unmark_day’:
gtk.c:30514: error: void value not ignored as it ought to be
make[2]: *** [_gtk_la-gtk.lo] Error 1
make[2]: Leaving directory `/home/Srinivas/Work/gnome/pygtk/gtk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Srinivas/Work/gnome/pygtk'
make: *** [all] Error 2
*** Error during phase build of pygtk: ########## Error running make ***
[38/256]
Not sure, how to go about fix the issue, if this is real issue. Or Did I got
delta changes from latest versions ?
Would appreciate if someone can guide me through the process of submitting
changes and/or helping in resolving the above issue.
Rgds,
Srinivas
_______________________________________________
pygtk mailing list [email protected]
http://www.daa.com.au/mailman/listinfo/pygtk
Read the PyGTK FAQ: http://faq.pygtk.org/