Hi, Craig Ringer wrote: > Hi folks > > I'm running into a bit of an issue with current CVS - I seem unable to > build it with --enable-debug. The output from g++ is attached. > > System stats of note: > > Red Hat FC1 > gcc 3.3.2 (RH packaged version) > qt 3.2.3 (vanilla; via Konstruct) > kde 3.2.1 (vanilla; via Konstruct) > > Yes, I realise I'm not 100% cutting edge, but I figure this should still > be pretty good. > > It seems to be dying in the SVG import plugin, in: > > ../../../scribus/scribusXml.h:39: error: extra qualification > `ScriXmlDoc::' on member `SetFarbe' ignored > svgplugin.cpp: In member function `SVGPlug::SVGPlug(QWidget*, > ScribusApp*, QString)': > ...
This behaviour is due too the fact that the --enable-debug option tell gcc to ber padantic. This make that some warnings will be considered as error. The simplest way to compile with debuggin ist to call configure as follow: env CFLAGS='-O0 -g' CXXFLAGS='-O0 -g' LDFLAGS=-g ./configure -O0 is minus + letter O + number 0 ! Jean-Jacques
