> > Is CVS currently buildable? > yep.
> Making all in src > make[2]: Entering directory `/usr/local/src/blackbox/src' > c++ -DHAVE_CONFIG_H -I. -I. -I.. -DSHAPE -DSLIT -DINTERLACE -DNLS > -DTIMEDCACHE -DLOCALEPATH=\"/usr/local/share/blackbox/nls\" > -DDEFAULTMENU=\"/usr/local/share/blackbox/menu\" > -DDEFAULTSTYLE=\"/usr/local/share/blackbox/styles/Results\" -Wall -W > -pedantic -fno-exceptions -g -O2 -I/usr/X11R6/include -c BaseDisplay.cc > BaseDisplay.cc: In function `int handleXErrors(Display *, XErrorEvent *)': > BaseDisplay.cc:94: warning: unused parameter `struct Display * d' > > I know it's just a warning, but there are others. :( I've not tried to run > what it actually builds yet. > the display parameter is required but not used unless DEBUG is defined. The reason you see this warning is due to the -W parameter to gcc. The other two warnings should be about signed v. unsigned and are temporary.
