> I just tried to compile the flightgear cvs version
> and get this error:
>
> Making all in tests
> make[1]: Entering directory
> `/home/oliver/x/src/cvs/flightgear-cvs/source/tests'
> source='est-epsilon.c' object='est-epsilon.o' libtool=no \
> depfile='.deps/est-epsilon.Po' tmpdepfile='.deps/est-epsilon.TPo' \
> depmode=gcc /bin/sh ../depcomp \
> gcc -DHAVE_CONFIG_H -I. -I. -I../src/Include   -I/usr/X11R6/include  -g -O2
> -c `test -f est-epsilon.c || echo './'`est-epsilon.c
> est-epsilon.c:11: `#include' expects "FILENAME" or <FILENAME>
> make[1]: *** [est-epsilon.o] Error 1
> make[1]: Leaving directory
> `/home/oliver/x/src/cvs/flightgear-cvs/source/tests'
> make: *** [all-recursive] Error 1
>
>
>
> It seems that the Header file FG_GLUT_H is missing in cvs.
> I also used the last SimGear CVS and PLIB CVS versions.
>
>

Ok, now i solved that problem by editing the Makefile in source/test/
and commenting everything out that should normally be build in their.
(i had those test tools allready compiled from an earlier versions
so recompiling them again wasn't a problem).

I also checked the CVS Online log browser and found in source/test
following log entry:
" Rename every instance of GLUT_H to FG_GLUT_H to prevent a freeglut naming 
clash"

I didnt know that Freeglut is now a requirement for compiling Flightgear.
Maybe we should change those #include FG_GLUT_H commands in
those C source files by using something like:

#ifdef HAVE_FREEGLUT
#  include FG_GLUT_H
#else
#  include GLUT_H
#endif

Where HAVE_FREEGLUT should be exchanged by the correct expression.



However, now i have a new problem:


Making all in LaRCsim
make[3]: Entering directory 
`/home/oliver/x/src/cvs/flightgear-cvs/source/src/FDM/LaRCsim'
Makefile:227: .deps/basic_aero.Po: No such file or directory
Makefile:228: .deps/basic_engine.Po: No such file or directory
Makefile:229: .deps/basic_gear.Po: No such file or directory
Makefile:230: .deps/basic_init.Po: No such file or directory
make[3]: *** No rule to make target `.deps/basic_init.Po'.  Stop.
make[3]: Leaving directory 
`/home/oliver/x/src/cvs/flightgear-cvs/source/src/FDM/LaRCsim'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory 
`/home/oliver/x/src/cvs/flightgear-cvs/source/src/FDM'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/oliver/x/src/cvs/flightgear-cvs/source/src'
make: *** [all-recursive] Error 1


Best Regards,
 Oliver C.



_______________________________________________
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel

Reply via email to