On 04/25/2014 11:44 AM, Nicolas Montgermont wrote:
Le 24/04/2014 15:52, IOhannes m zmölnig a écrit :
first comment (as seen by m.grimm) this error:
videoBase.cpp:426:3: error: use of undeclared identifier 'select' select(0,0,0,0,&sleep);
[...]
outside of the test but i don't understand it because in my config.h i have #define HAVE_SYS_SELECT_H 1
because i have stupidly forgotten to actually *include* the config.h; should be fixed now.
second comment even if i configure with "--without-ftgl" I have errors on text related objects, for example: TextBaseFTGL.cpp:57:3: error: member initializer 'm_font' does not name
indeed. i hopefully fixed the issue by disabling compilation of TextBaseFTGL if FTGL was disabled. this should have been done all along...
if i try make -k to get through the text errors, i have a few errors in imageQT and filmDarwin
to be expected.
finally in the output folder i have more or less the same errors than before, but this time in gemmacwindow.cpp:
yes, to be expected as well. [gemmacwindow] is really just a port of the original windowing code to a standalong external. the trick is, that there are now alternative [gemwindow] implementations, that should succeed to compile, one (or some or all) of: - [gemcocoawindow] - [gemglutwindow] and less likely (depending on 3rd party libs) - [gemsdlwindow] - [gemglfwindow] - [gemglfw3window]
fmsadr IOhannes