Sorry totally my bad :S The patch output is backwards, I removed the ifdef, not added it. What's got me going now is why just this one line ?? I recompiled just the back-end and it looks like the define is just not there. When I put back the original file I am not able to compile the cups back end. Only if I take those lines out can I compile. https://bugzilla.gnome.org/show_bug.cgi?id=601708 But it looks like it really is not even a bug. Given what you said about the missing lib's I am re-starting the process all over again to test this time make sure to delete all files and start from scratch. rm -rf .jhbuild* gtk Sources bin .local This shouldn't take that long. again sorry for the confusion... that what you get for being a noob I guess.
> From: jralls ceridwen us > Date: Thu, 12 Nov 2009 10:35:58 -0800 > To: gtk-osx-users lists sourceforge net > Subject: Re: [Gtk-osx-users] Building for OS X Snow Leopard > > > On Nov 11, 2009, at 12:44 PM, Shawn Bakhtiar wrote: > > > > > > > Got it!! > > > > --- gtkprintbackendcups.c 2009-11-11 12:41:33.000000000 -0800 > > +++ gtkprintbackendcups.old 2009-11-11 12:38:45.000000000 -0800 > > @@ -889,9 +889,12 @@ > > else > > dispatch->data_poll->events = 0; > > > > - dispatch->data_poll->fd = httpGetFd (dispatch->request- > > >http); > > - > > - g_source_add_poll (source, dispatch->data_poll); > > +#ifdef HAVE_CUPS_API_1_2 > > + dispatch->data_poll->fd = httpGetFd (dispatch->request- > > >http); > > +#else > > + dispatch->data_poll->fd = dispatch->request->http->fd; > > +#endif > > + g_source_add_poll (source, dispatch->data_poll); > > } > > } > > } > > > > > > I don't know if this correct but it works. :P > > > > > I'm really confused about this. What version of gtk+ are you patching? > The ifdef you seem to be adding is already there and has been for more > than a year. > > Regards, > John Ralls > > > ------------------------------------------------------------------------------ > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration and deployment - and focus on > what you do best, core application coding. Discover what's new with > Crystal Reports now. http://p.sf.net/sfu/bobj-july > _______________________________________________ > Gtk-osx-users mailing list > Gtk-osx-users lists sourceforge net > https://lists.sourceforge.net/lists/listinfo/gtk-osx-users |