using the latest gcc 4.5 one gets an compile error in file rbcGrLine.c:
"Static declaration follows non-static declaration"
for tkpWinRopModes
In order to make it work one has to remove the static delaration and remove tkpWinRopModes from the other files rbcTile.c and rbcWinDraw.c.
An explanation of the error can be found here:
http://wiki.freebsd.org/gcc4
... search for non-static
Regards
filed by tombert
rbcGrLine.c has to be changed to:
const int tkpWinRopModes[] = {
..
...
....