While trying to build the latest SVN revision (3292) the compiler returned the following warning:
* [REF] ../debugx86_64/ref_gl/gl_anim.o
In bestand ingevoegd door ref_gl/gl_anim.c:26:
ref_gl/gl_local.h:55:10: fout: #include verwacht "BESTAND" of <BESTAND>
In file included from ref_gl/gl_local.h:354,
from ref_gl/gl_anim.c:26:
ref_gl/gl_font.h:12: fout: syntax error before ‘TTF_Font’
ref_gl/gl_font.h:12: let op: geen puntkomma aan het einde van een struct of union
ref_gl/gl_font.h:16: fout: syntax error before ‘}’ token
ref_gl/gl_font.h:16: let op: type krijgt standaardwaarde ‘int’ in de declaratie van ‘font_t’
ref_gl/gl_font.h:16: let op: datadefinitie heeft geen type of opslagklasse
ref_gl/gl_font.h:19: fout: syntax error before ‘fonts’
ref_gl/gl_font.h:19: let op: type krijgt standaardwaarde ‘int’ in de declaratie van ‘fonts’
ref_gl/gl_font.h:19: let op: datadefinitie heeft geen type of opslagklasse
make[1]: *** [../debugx86_64/ref_gl/gl_anim.o] Fout 1
make: *** [build_debug] Fout 2
Luckily it is an error that can be corrected very easy (just a small typo).
But since i don't know how to alert the guy who submitted it, i'll just post it here.
So please change line 55 in "src/ref_gl/gl_local.h" from:
#include <SDL/SDL_ttf.h
to:
#include <SDL/SDL_ttf.h>
For revision 3285 the "make lang" command complained about the following:
809 translated messages, 77 fuzzy translations, 38 untranslated messages.
po/en.po:393: dubbele melding definitie
po/en.po:20: ...dit is de lokatie van de eerste definitie
po/en.po:1271: dubbele melding definitie
po/en.po:24: ...dit is de lokatie van de eerste definitie
po/en.po:1844: dubbele melding definitie
po/en.po:28: ...dit is de lokatie van de eerste definitie
po/en.po:1848: dubbele melding definitie
po/en.po:32: ...dit is de lokatie van de eerste definitie
po/en.po:4401: dubbele melding definitie
po/en.po:36: ...dit is de lokatie van de eerste definitie
msgfmt: found 5 fatal errors
689 translated messages, 176 fuzzy translations, 69 untranslated messages.
This could be fixed by deleting lines 18 until 37 from "src/po/en.po". Apperantly some double entries were introduced
Those fixes seems to solve the problems (at least the compiler didn't complain anymore when i tested it).
Greetings René
P.S. I'm very impressed with the current status of this project. Keep up the good work
P.P.S, This message was edited to include a second buggie