On 13.06.2011 20:23, Alan Teeder wrote:
> It looks as if I still have one error with the FG compile .-(
>
> fgGUI.lib(gui_funcs.obj) : error LNK2019: unresolved external symbol
> "bool __cdecl copyProperties(class SGPropertyNode const *,class
> SGPropertyNode *)" (?copyProperties@@YA_NPBVSGPropertyNode@@PAV1@@Z)
> referenced in function "void __cdecl mkDialog(char const *)"
> (?mkDialog@@YAXPBD@Z)
> C:\FlightGear\flightgear\src\Main\Release\fgfs.exe : fatal error
> LNK1120: 1 unresolved externals

Looks like fgGUI.lib wasn't recompiled against the latest simgear header 
- or it was indeed complied against an old header. Try to "make clean" 
(however you'd do that with MSVC) in "flightgear". Otherwise check your 
simgear/props/props_io.hxx header file(s). If you see:
  bool copyProperties (const SGPropertyNode *in, SGPropertyNode *out);
then you've got an old header somewhere (old simgear).
If it's
  bool copyProperties (const SGPropertyNode *in, SGPropertyNode *out,
        int attr_value=0, int attr_mask=0);
then it's the right/current header (4 arguments).

cheers,
Thorsten

------------------------------------------------------------------------------
EditLive Enterprise is the world's most technically advanced content
authoring tool. Experience the power of Track Changes, Inline Image
Editing and ensure content is compliant with Accessibility Checking.
http://p.sf.net/sfu/ephox-dev2dev
_______________________________________________
Flightgear-devel mailing list
Flightgear-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/flightgear-devel

Reply via email to