Re: Status of GTK port
Scott <[email protected]>
| Newsgroups | gmane.comp.debugging.ddd.general |
|---|---|
| Message-ID | <[email protected]> |
Peter Wainwright wrote: > On Wed, 2007-11-21 at 16:29 +0200, Andrew Gaylard wrote: >> On Nov 21, 2007 1:51 AM, Tomáš Hnyk <[email protected]> wrote: >> Hi all, >> I recently found DDD and it is great yet Motif is a pain, what >> is the >> status of GTK port/rewrite? Is it usable yet? I do not mind >> compiling it >> from sources. >> >> I have heard no news from the Gtk guy for at least 6 months. >> So it looks dormant. It might even be dead. > > I'm still here, but don't have the time I need to devote to the Gtk port > (the 9-5 job keeps getting in the way). > > I started to write an abstraction layer for the GUI, and caused some > major breakage, hence no more commits until I have something which > sort-of-works again. > > However, if there is some interest I'll have another look. And of > course contributions (code) would be gratefully received (hint, hint). > Maybe I can produce some sort of paper explaining what I'm trying to do. > > Peter Wainwright > > > >> I agree that Motif isn't great... >> >> Andrew >> >> _______________________________________________ >> Ddd mailing list >> [email protected] >> http://lists.gnu.org/mailman/listinfo/ddd > > > _______________________________________________ > Ddd mailing list > [email protected] > http://lists.gnu.org/mailman/listinfo/ddd Hi Peter, Mark me down as being interested in the gtk port. I am trying to compile gddd from the latest svn sources and I'm getting hung up at this point g++ -DHAVE_CONFIG_H -I. -I./.. -I../gtkx -I/usr/include/gtkmm-2.4 -I/usr/lib/gtkmm-2.4/include -I/usr/include/glibmm-2.4 -I/usr/lib/glibmm-2.4/include -I/usr/include/gdkmm-2.4 -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/include/sigc++-2.0 -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/include/libpng12 -I/usr/include/atk-1.0 -I/usr/include/libxml2 -O2 -g -trigraphs -MT VSLRead.o -MD -MP -MF .deps/VSLRead.Tpo -c -o VSLRead.o VSLRead.C ./vsl-gramma.Y: In function ‘int VSLLib_parse()’: ./vsl-gramma.Y:215: error: ‘vsllinenumber’ was not declared in this scope ./vsl-gramma.Y:224: error: ‘vsllinenumber’ was not declared in this scope ./vsl-gramma.Y:268: error: ‘vsltext’ was not declared in this scope ./vsl-gramma.Y:306: error: ‘vsllinenumber’ was not declared in this scope ./vsl-gramma.Y:340: error: ‘vsllinenumber’ was not declared in this scope ./vsl-gramma.Y:533: error: ‘vsltext’ was not declared in this scope ./vsl-gramma.Y:541: error: ‘vsltext’ was not declared in this scope ./vsl-gramma.Y:548: error: ‘vsltext’ was not declared in this scope VSLRead.C: In member function ‘virtual void VSLLib::update(std::istream&)’: VSLRead.C:124: error: ‘vslstream’ was not declared in this scope VSLRead.C:129: error: ‘vslnameSet’ was not declared in this scope VSLRead.C:130: error: ‘pushback_ptr’ was not declared in this scope VSLRead.C:130: error: ‘pushback’ was not declared in this scope VSLRead.C:143: error: ‘vsllinenumber’ was not declared in this scope VSLRead.C: In member function ‘virtual void VSLLib::update(const string&)’: VSLRead.C:163: error: ‘switchreset’ was not declared in this scope VSLRead.C:164: error: ‘switchup’ was not declared in this scope VSLRead.C:166: error: ‘vslstream’ was not declared in this scope VSLRead.C:168: error: ‘topstack’ was not declared in this scope VSLRead.C: In function ‘void vslerror(const char*)’: VSLRead.C:182: error: ‘vsltext’ was not declared in this scope VSLRead.C: In static member function ‘static void VSLLib::parse_echo(const string&)’: VSLRead.C:192: error: ‘vsllinenumber’ was not declared in this scope make[2]: *** [VSLRead.o] Error 1 I saw a previous post about this being an issue with a newer version of bison. I was using version 2.3, so I tried downgrading to 1.35 but I got the same result. I have no previous experience with yacc or bison. How did you get around this problem? I am running this on a mostly stock Ubuntu 7.10 machine. I think I could put some coding time in on this branch with a little direction, but I'm just starting to mess around with gtk programming so I'm not sure how much help I can be.