Re: [Flightgear-devel] MSVC build error

2005-09-22 Thread Frederic Bouvier
Selon bass pumped :

> On 9/22/05, Frederic Bouvier wrote:
> > Selon bass pumped :
> >
> > > Hi everyone,
> > >
> > > I tried to compile the latest version of flightgear today in MSVC 7.
> > > It compiled fine... but then I had problems when it tried linking.
> > > Any ideas on how to fix it would help.
> > >
> > > Thank you in advance.
> > >
> > >
> > > Start ouput >>
> > > Linking...
> > > LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to
> > > '/INCREMENTAL:NO' specification
> > > LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of
> > > other libs; use /NODEFAULTLIB:library
> >
> > Don't use that option. Be sure you compiled all programs and libraries with
> > the same 'Code Generation' options. /MT is fine if it is everywhere.

You didn't use this sentence. See below.

> Thanks a lot for your suggestion.  It helped and I managed to get rid
> of some of the linking errors.  But I'm still stuck with another 74
> errors I hope you will be able to help me locate and fixed.  I've
> noticed the errors revolve around the gz function, the sgsoundmanager
> (which to me looks like an maybe an openal error??)...  If you could
> take a quick look at the error output and point me in the right
> direction.
>
> Thank you very much.
>
> Start output>>
>
> Linking...
> LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to
> '/INCREMENTAL:NO' specification
> LIBCMTD.lib(dbgheap.obj) : error LNK2005: _malloc already defined in
> LIBCMT.lib(malloc.obj)

It is clearly stated here that there is a conflict between C runtimes. LIBCMTD
is used when 'Code Generation' C/C++ option is set to 'Debug Multithread
(/MTd)' while LIBCMT is from 'Multithread (/MT)'. There is a suggestion to use
/NODEFAULTLIB:library link option but it is a no-go and build unusable
programs. You should have to hunt where you put /MTd and replace it to /MT
because using a Debug version of FlightGear is the right way to have very poor
framerate.



> new_gui.obj : error LNK2001: unresolved external symbol "class puFont
> FONT_SANS_12B" (?FONT_SANS_12B@@3VpuFont@@A)

This symbol comes from PLIB's fnt.lib library.

> main.obj : error LNK2019: unresolved external symbol
> __imp__alListenerf referenced in function "public: void __thiscall
> SGSoundMgr::set_volume(float)" ([EMAIL PROTECTED]@@[EMAIL PROTECTED])

Should come from OpenAL.

> SimGear.lib(zfstream.obj) : error LNK2019: unresolved external symbol
> _gzopen referenced in function "public: class gzfilebuf * __thiscall
> gzfilebuf::open(char const *,int)" ([EMAIL PROTECTED]@@[EMAIL PROTECTED]@Z)

Comes from zlib.lib. There is a source tarball in SimGear/src-libs/

> SimGear.lib(code.obj) : error LNK2019: unresolved external symbol
> _naUnlock referenced in function _naNewContext

This is Nasal code in SimGear

> .\Debug/FlightGear.exe : fatal error LNK1120: 40 unresolved externals

So, to summarize :

1. clear your Code Generation conflict issues
2. add fnt.lib to the solution,
3. add openal to the solution,
4. add zlib.lib to the solution,
5. add nasal files to the SimGear project
6. fly :)

-Fred

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-22 Thread bass pumped
On 9/22/05, Frederic Bouvier <[EMAIL PROTECTED]> wrote:
> Selon bass pumped :
>
> > Hi everyone,
> >
> > I tried to compile the latest version of flightgear today in MSVC 7.
> > It compiled fine... but then I had problems when it tried linking.
> > Any ideas on how to fix it would help.
> >
> > Thank you in advance.
> >
> >
> > Start ouput >>
> > Linking...
> > LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to
> > '/INCREMENTAL:NO' specification
> > LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of
> > other libs; use /NODEFAULTLIB:library
>
> Don't use that option. Be sure you compiled all programs and libraries with 
> the
> same 'Code Generation' options. /MT is fine if it is everywhere.
>
> > .\Debug/FlightGear.exe : fatal error LNK1120: 119 unresolved externals
>
> You have to add all the files containing the unresolved symbols in you 
> solution
> in order to compile and link them to fgfs.exe
>
> For exemple, in the line :
>
> environment.obj : error LNK2019: unresolved external symbol "public:
> bool __thiscall SGEnviro::get_turbulence_enable_state(void)const "
> ([EMAIL PROTECTED]@@QBE_NXZ) referenced in
> function "public: virtual double __thiscall
> FGEnvironment::get_turbulence_magnitude_norm(void)const "
> ([EMAIL PROTECTED]@@UBENXZ)
>
> it is said that the SGEnviro class ( the name before :: ) is missing. A quick
> search in the source tree tells me that it is in
> simgear/environment/visual_enviro.cxx that has to be added in the simgear
> project file. Do that until you have no unresolved external.
>
> -Fred
>
Hi Fred,

Thanks a lot for your suggestion.  It helped and I managed to get rid
of some of the linking errors.  But I'm still stuck with another 74
errors I hope you will be able to help me locate and fixed.  I've
noticed the errors revolve around the gz function, the sgsoundmanager
(which to me looks like an maybe an openal error??)...  If you could
take a quick look at the error output and point me in the right
direction.

Thank you very much.

Start output>>

Linking...
LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to
'/INCREMENTAL:NO' specification
LIBCMTD.lib(dbgheap.obj) : error LNK2005: _malloc already defined in
LIBCMT.lib(malloc.obj)
LIBCMTD.lib(dbgheap.obj) : error LNK2005: __nh_malloc already defined
in LIBCMT.lib(malloc.obj)
LIBCMTD.lib(dbgheap.obj) : error LNK2005: __heap_alloc already defined
in LIBCMT.lib(malloc.obj)
LIBCMTD.lib(dbgheap.obj) : error LNK2005: _calloc already defined in
LIBCMT.lib(calloc.obj)
LIBCMTD.lib(dbgheap.obj) : error LNK2005: _realloc already defined in
LIBCMT.lib(realloc.obj)
LIBCMTD.lib(dbgheap.obj) : error LNK2005: _free already defined in
LIBCMT.lib(free.obj)
LIBCMTD.lib(dbgheap.obj) : error LNK2005: __msize already defined in
LIBCMT.lib(msize.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: __get_sbh_threshold already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: __set_sbh_threshold already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_heap_init already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_find_block already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_free_block already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_alloc_block already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_alloc_new_region
already defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_alloc_new_group
already defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_resize_block already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_heapmin already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(sbheap.obj) : error LNK2005: ___sbh_heap_check already
defined in LIBCMT.lib(sbheap.obj)
LIBCMTD.lib(isctype.obj) : error LNK2005: __isctype already defined in
LIBCMT.lib(isctype.obj)
LIBCMTD.lib(isctype.obj) : error LNK2005: ___isctype_mt already
defined in LIBCMT.lib(isctype.obj)
LINK : warning LNK4098: defaultlib 'LIBCMTD' conflicts with use of
other libs; use /NODEFAULTLIB:library
new_gui.obj : error LNK2001: unresolved external symbol "class puFont
FONT_SANS_12B" (?FONT_SANS_12B@@3VpuFont@@A)
new_gui.obj : error LNK2001: unresolved external symbol "class puFont
FONT_HELVETICA_14" (?FONT_HELVETICA_14@@3VpuFont@@A)
main.obj : error LNK2019: unresolved external symbol
__imp__alListenerf referenced in function "public: void __thiscall
SGSoundMgr::set_volume(float)" ([EMAIL PROTECTED]@@[EMAIL PROTECTED])
fg_fx.obj : error LNK2001: unresolved external symbol __imp__alListenerf
SimGear.lib(soundmgr_openal.obj) : error LNK2001: unresolved external
symbol __imp__alListenerf
main.obj : error LNK2019: unresolved external symbol
__imp__alListenerfv referenced in function "public: void __thiscall
SGSoundMgr::set_listener_pos(float *)"
([EMAIL PROTECTED]@@[EMA

Re: [Flightgear-devel] MSVC build error

2005-09-21 Thread Frederic Bouvier
Selon bass pumped :

> Hi everyone,
>
> I tried to compile the latest version of flightgear today in MSVC 7.
> It compiled fine... but then I had problems when it tried linking.
> Any ideas on how to fix it would help.
>
> Thank you in advance.
>
>
> Start ouput >>
> Linking...
> LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to
> '/INCREMENTAL:NO' specification
> LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of
> other libs; use /NODEFAULTLIB:library

Don't use that option. Be sure you compiled all programs and libraries with the
same 'Code Generation' options. /MT is fine if it is everywhere.

> .\Debug/FlightGear.exe : fatal error LNK1120: 119 unresolved externals

You have to add all the files containing the unresolved symbols in you solution
in order to compile and link them to fgfs.exe

For exemple, in the line :

environment.obj : error LNK2019: unresolved external symbol "public:
bool __thiscall SGEnviro::get_turbulence_enable_state(void)const "
([EMAIL PROTECTED]@@QBE_NXZ) referenced in
function "public: virtual double __thiscall
FGEnvironment::get_turbulence_magnitude_norm(void)const "
([EMAIL PROTECTED]@@UBENXZ)

it is said that the SGEnviro class ( the name before :: ) is missing. A quick
search in the source tree tells me that it is in
simgear/environment/visual_enviro.cxx that has to be added in the simgear
project file. Do that until you have no unresolved external.

-Fred

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-21 Thread bass pumped
Hi everyone,

I tried to compile the latest version of flightgear today in MSVC 7. 
It compiled fine... but then I had problems when it tried linking. 
Any ideas on how to fix it would help.

Thank you in advance.


Start ouput >>
Linking...
LINK : warning LNK4075: ignoring '/EDITANDCONTINUE' due to
'/INCREMENTAL:NO' specification
LINK : warning LNK4098: defaultlib 'LIBCMT' conflicts with use of
other libs; use /NODEFAULTLIB:library
environment.obj : error LNK2019: unresolved external symbol "public:
double __thiscall SGEnviro::get_cloud_turbulence(void)const "
([EMAIL PROTECTED]@@QBENXZ) referenced in function
"public: virtual double __thiscall
FGEnvironment::get_turbulence_magnitude_norm(void)const "
([EMAIL PROTECTED]@@UBENXZ)
environment.obj : error LNK2019: unresolved external symbol "public:
bool __thiscall SGEnviro::get_turbulence_enable_state(void)const "
([EMAIL PROTECTED]@@QBE_NXZ) referenced in
function "public: virtual double __thiscall
FGEnvironment::get_turbulence_magnitude_norm(void)const "
([EMAIL PROTECTED]@@UBENXZ)
environment_mgr.obj : error LNK2001: unresolved external symbol
"public: bool __thiscall
SGEnviro::get_turbulence_enable_state(void)const "
([EMAIL PROTECTED]@@QBE_NXZ)
environment.obj : error LNK2001: unresolved external symbol "class
SGEnviro sgEnviro" (?sgEnviro@@3VSGEnviro@@A)
environment_mgr.obj : error LNK2001: unresolved external symbol "class
SGEnviro sgEnviro" (?sgEnviro@@3VSGEnviro@@A)
renderer.obj : error LNK2001: unresolved external symbol "class
SGEnviro sgEnviro" (?sgEnviro@@3VSGEnviro@@A)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: __thiscall FGClouds::FGClouds(class FGEnvironmentCtrl *)"
(??0FGClouds@@[EMAIL PROTECTED]@@@Z) referenced in function
"public: __thiscall FGEnvironmentMgr::FGEnvironmentMgr(void)"
(??0FGEnvironmentMgr@@[EMAIL PROTECTED])
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: __thiscall FGClouds::~FGClouds(void)" (??1FGClouds@@[EMAIL PROTECTED])
referenced in function "public: void * __thiscall FGClouds::`scalar
deleting destructor'(unsigned int)" (??_GFGClouds@@[EMAIL PROTECTED])
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: void __thiscall SGEnviro::set_turbulence_enable_state(bool)"
([EMAIL PROTECTED]@@[EMAIL PROTECTED]) referenced in
function "public: virtual void __thiscall
FGEnvironmentMgr::bind(void)" ([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: bool __thiscall
SGEnviro::get_lightning_enable_state(void)const "
([EMAIL PROTECTED]@@QBE_NXZ) referenced in function
"public: virtual void __thiscall FGEnvironmentMgr::bind(void)"
([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: void __thiscall SGEnviro::set_lightning_enable_state(bool)"
([EMAIL PROTECTED]@@[EMAIL PROTECTED]) referenced in
function "public: virtual void __thiscall
FGEnvironmentMgr::bind(void)" ([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: int __thiscall FGClouds::get_update_event(void)const "
([EMAIL PROTECTED]@@QBEHXZ) referenced in function "public:
virtual void __thiscall FGEnvironmentMgr::bind(void)"
([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: void __thiscall FGClouds::set_update_event(int)"
([EMAIL PROTECTED]@@[EMAIL PROTECTED]) referenced in function "public:
virtual void __thiscall FGEnvironmentMgr::bind(void)"
([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: bool __thiscall
SGEnviro::get_precipitation_enable_state(void)const "
([EMAIL PROTECTED]@@QBE_NXZ) referenced in
function "public: virtual void __thiscall
FGEnvironmentMgr::bind(void)" ([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: void __thiscall
SGEnviro::set_precipitation_enable_state(bool)"
([EMAIL PROTECTED]@@[EMAIL PROTECTED]) referenced in
function "public: virtual void __thiscall
FGEnvironmentMgr::bind(void)" ([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: int __thiscall SGEnviro::get_CacheResolution(void)const "
([EMAIL PROTECTED]@@QBEHXZ) referenced in function
"public: virtual void __thiscall FGEnvironmentMgr::bind(void)"
([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: void __thiscall SGEnviro::set_CacheResolution(int)"
([EMAIL PROTECTED]@@[EMAIL PROTECTED]) referenced in function
"public: virtual void __thiscall FGEnvironmentMgr::bind(void)"
([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol
"public: int __thiscall SGEnviro::get_clouds_CacheSize(void)const "
([EMAIL PROTECTED]@@QBEHXZ) referenced in function
"public: virtual void __thiscall FGEnvironmentMgr::bind(void)"
([EMAIL PROTECTED]@@UAEXXZ)
environment_mgr.obj : error LNK2019: unresolved external symbol

Re: [Flightgear-devel] MSVC build error

2005-09-07 Thread bass pumped
On 9/7/05, Jim Wilson <[EMAIL PROTECTED]> wrote:
> > From: Andy Ross <[EMAIL PROTECTED]>
> 
> >
> > These words, the same thing say.
> >
> 
> Hmmm, too much of Star Wars prequel this summer have you watch? ;-)
> 
> Best,
> 
> Jim Wilson

LOL!!

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-07 Thread Jim Wilson
> From: Andy Ross <[EMAIL PROTECTED]>

> 
> These words, the same thing say.  
> 

Hmmm, too much of Star Wars prequel this summer have you watch? ;-)

Best,

Jim Wilson



___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-06 Thread Andy Ross
bass pumped wrote:
> Actually I was asking you (indirectly I guess) if there was an error
> in the bleeding edge file I downloaded from the simgear download
> page.  Anyway, I will try compiling that by removing the couds3d
> from the solution explorer and see what happens.

I'm not sure what you have, perhaps it's an old snapshot.  The CVS
logs show that all the files in the clouds3d directory were removed on
June 25th.  It's an old implementation.

Really, if you want to use real "bleeding edge" stuff, then you want
to be checking the files out of CVS directly.  Cygwin contains a
command line cvs client that will work with the directions you find on
the website.

Andy

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-06 Thread bass pumped
On 9/6/05, Andy Ross <[EMAIL PROTECTED]> wrote:
> bass pumped wrote:
> > Andy Ross wrote:
> > > It looks to me like you're compiling CVS FlightGear with an older
> > > SimGear.
> >
> > I did download flightgear [...] from the 'bleeding edge' link from the
> > website. [...]  But when compiling that simgear [...] I downloaded the
> > 0.3.8 version.
> >
> > Could that be a problem?
> 
> These words, the same thing say.  :)
> 
> Yes, always match your FlightGear and SimGear versions.
> 

Actually I was asking you (indirectly I guess) if there was an error
in the bleeding edge file I downloaded from the simgear download page.
 Anyway, I will try compiling that by removing the couds3d from the
solution explorer and see what happens.

Thanks.

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-06 Thread Andy Ross
bass pumped wrote:
> Andy Ross wrote:
> > It looks to me like you're compiling CVS FlightGear with an older
> > SimGear.
>
> I did download flightgear [...] from the 'bleeding edge' link from the
> website. [...]  But when compiling that simgear [...] I downloaded the
> 0.3.8 version.
>
> Could that be a problem?

These words, the same thing say.  :)

Yes, always match your FlightGear and SimGear versions.

Andy

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-06 Thread bass pumped
On 9/6/05, Andy Ross <[EMAIL PROTECTED]> wrote:
> This looks like a version skew problem.  That function
> signature (with four arguments) is the one from the current CVS
> version.  The 0.9.8 Nasal interpreter used a different API with
> only two arguments.
> 
> It looks to me like you're compiling CVS FlightGear (or a
> relatively recent snapshot) with an older SimGear.
> 
> Andy


Thinking about it, I did download flightgear source and simgear source
from the 'bleeding edge' link from the website.  But when compiling
that simgear, I ran into an error...  it couldn't find any files in
the scene\sky\clouds3d directory.  So instead I downloaded the 0.3.8
version.  Could that be a problem?

Thanks.

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] MSVC build error

2005-09-05 Thread Andy Ross
bass pumped wrote:
> I'm trying to get flightgear 9.8 built in Windows.  I'm using MSVC 7
> for the build.  I ran into the following errors from the Nasal code.
>
> [...]
>
> cannot convert from 'naRef (__cdecl*)(naContext,naRef,int,naRef *)' to 
> 'naCFunction'

This looks like a version skew problem.  That function
signature (with four arguments) is the one from the current CVS
version.  The 0.9.8 Nasal interpreter used a different API with
only two arguments.

It looks to me like you're compiling CVS FlightGear (or a
relatively recent snapshot) with an older SimGear.

Andy

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


RE: [Flightgear-devel] MSVC build error

2005-09-05 Thread Jim Alberico
Another thought:
Struct Member Alignment, under Code Generation.

JA
 
> Seems like I had to change the project settings under Configuration
> Properties-->C/C++-->Advanced-->Calling Convention.  The right setting is
> probably _cdecl (/Gd). You'll probably want to make sure all subprojects
> share that setting, and you'll probably want to do a clean build of
> everything after the change.
> 
...
> 
> Jim A
> 

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


RE: [Flightgear-devel] MSVC build error

2005-09-05 Thread Jim Alberico
bass,

I had the same error when 9.8 was first released.  Working from lame memory
on the fix now, but I may be able to point you in the right direction.

Seems like I had to change the project settings under Configuration
Properties-->C/C++-->Advanced-->Calling Convention.  The right setting is
probably _cdecl (/Gd). You'll probably want to make sure all subprojects
share that setting, and you'll probably want to do a clean build of
everything after the change.

Hope this helps.  It didn't take me long to get past the problemjust
some experimenting with the project settings (under "properties").

As for the moonpos.cxx, that problem also sounds familiar.  Try adding it
back in to the project in the appropriate place (probably the same place you
found it).  Seems like MSVC was initially confused about that for some
reason, and the fix was that simple.

Jim A

> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] Behalf Of bass pumped
> Sent: Monday, September 05, 2005 6:35 PM
> To: FlightGear developers discussions
> Subject: [Flightgear-devel] MSVC build error
>
>
> Hi all,
>
> I'm trying to get flightgear 9.8 built in Windows.  I'm using MSVC 7
> for the build.  I ran into the following errors from the Nasal code.
>
>
> Is there anyway I can debug this?
>
> I also had a problem where it said it couldn't find the moonpos.cxx
> file. I deleted that file from the solution, but I'm not sure if I'll
> run into problems when it starts linking flightgear.
>
> Any help would be great!
>
> Thank you.
>
> ___
> Flightgear-devel mailing list
> Flightgear-devel@flightgear.org
> http://mail.flightgear.org/mailman/listinfo/flightgear-devel
> 2f585eeea02e2c79d7b1d8c4963bae2d

___
Flightgear-devel mailing list
Flightgear-devel@flightgear.org
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d