[Flightgear-devel] DATA update 2.5 to 2.6

2012-04-07 Thread Michael Sgier
Hi didn't fly for while but now I wanted to try Rembrandt shadows. michael@ubuntu:/media/DATA/FGFS/install/fgfs/fgdata$ git pull You asked me to pull without telling me which branch you want to merge with, and 'branch.master.merge' in your configuration file does not tell me, either. Please

Re: [Flightgear-devel] Recent GIT version fails to compile (fgadmin_funcs)

2012-04-07 Thread ThorstenB
On 06.04.2012 19:07, Björn Kesten wrote: I hope this is the right place for GIT version related things. Certainly is ;-). utils/fgadmin/src/CMakeFiles/fgadmin.dir/fgadmin_funcs.cxx.o /home/bjoern/fg_git/sources/flightgear/utils/fgadmin/src/fgadmin_funcs.cxx: In function ‘void

[Flightgear-devel] Git frame rate

2012-04-07 Thread ThorstenB
On 06.04.2012 21:25, Heiko Schulz wrote: Nethertheless- perfomance has much increased now! :-) Depending on the aircraft I can get now 30-60 fps at noon with materials-dds.xml, trees and clouds with my standard settings. Likely related: a number of smaller performance improvements, but also

Re: [Flightgear-devel] Recent GIT version fails to compile (fgadmin_funcs)

2012-04-07 Thread Geoff McLane
Hi Björn, In unix, usually 'mkdir' and 'unlink' are found in the very ubiquitous unix header - #include unistd.h Maybe this was previously being included through the many FLTK, and other headers included... but was removed from one of them in some later versions, so this could be the

Re: [Flightgear-devel] Recent GIT version fails to compile (fgadmin_funcs)

2012-04-07 Thread Geoff McLane
Hi Björn, Thorsten, Following on from my previous, perhaps the full patch should be - #ifdef _WIN32 # include direct.h # include io.h #define unlink _unlink #define mkdir _mkdir #else // !_WIN32 #include unistd.h #endif To make windows happy ;=)) and avoid some warnings... Regards, Geoff.

Re: [Flightgear-devel] Recent GIT version fails to compile (fgadmin_funcs)

2012-04-07 Thread ThorstenB
Am 07.04.2012 15:33, schrieb Geoff McLane: #ifdef _WIN32 # includedirect.h # includeio.h #define unlink _unlink #define mkdir _mkdir #else // !_WIN32 #includeunistd.h #endif To make windows happy ;=)) and avoid some warnings... Yes, looks good. Indeed, I can't see how fgadmin

[Flightgear-devel] FGbuild for MS Windows

2012-04-07 Thread castle . 64
Hi, Can someone point out a good, current tutorial or forum/chat room  for building FG under MS windows.  Havng problems with the wiki write-up and can't determine if it is operator error or problems with the instructions or just suffering from a case of newbeitis as I've never worked

Re: [Flightgear-devel] Recent GIT version fails to compile (fgadmin_funcs)

2012-04-07 Thread Björn Kesten
Hey guys, I think I've upgraded GCC to 4.7 recently, but for the life of me, I can't remember what else got upgraded that might have broken FG compilation. The drawback of running a rolling release system (Arch Linux)... #ifdef _WIN32 #  includedirect.h #  includeio.h #define unlink _unlink

Re: [Flightgear-devel] FGbuild for MS Windows

2012-04-07 Thread Geoff McLane
Hi John W., You do not say WHICH wiki write-up(s) you are having problems with, nor exactly what the problems are... so can not really help much... For my part, after re-RE-reading carefully through :- http://wiki.flightgear.org/Building_FlightGear_-_Windows I started meticulously and

Re: [Flightgear-devel] FGbuild for MS Windows

2012-04-07 Thread Rob Dosogne
On Sat, Apr 7, 2012 at 15:13, Geoff McLane ubu...@geoffair.info wrote: This new attempt is in a new Windows 7 64-bits machine, using MSVC10... a fresh start for me... I have this setup working on my machine; I'm building OSG-trunk myself, and using the 3rd-party libs from the build server.