From: gnome-perl (bugzilla.gnome.o. <bug...@gn...> - 2011-12-15 08:11:19
|
https://bugzilla.gnome.org/show_bug.cgi?id=666227 gnome-perl | Gtk2 | unspecified Summary: [Gtk2-1.241] perl-5.8.0 doesn't know what Newx is. Classification: Bindings Product: gnome-perl Version: unspecified OS/Version: Windows Status: UNCONFIRMED Severity: normal Priority: Normal Component: Gtk2 AssignedTo: gtk...@li... ReportedBy: sis...@op... QAContact: gtk...@li... GNOME version: --- The xs/GdkPixbuf.xs file contains a call to the Newx (perl API) function. But perl-5.8.0 predates the defining of Newx. If we wish to continue supporting 5.8.0 then, near the beginning of that file, we need to insert something like: /* copied from ppport.h */ #ifndef Newx # define Newx(v,n,t) New(0,v,n,t) #endif Cheers, Rob -- Configure bugmail: https://bugzilla.gnome.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. |