RE: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-19 Thread Michael Basler
[mailto:[EMAIL PROTECTED]]On Behalf Of Curtis L. Olson To Norman: Good fix. Can we have this patch in the CVS? It still refuses to build under Cygwin. Thanks and Regards, Michael -- Michael Basler, Jena, Germany [EMAIL PROTECTED]

RE: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-19 Thread Jon Berndt
Has this made it to CVS? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Michael Basler Sent: Tuesday, November 19, 2002 3:18 AM To: [EMAIL PROTECTED] Subject: RE: [Flightgear-devel] Cygwin build problem with sprintf [mailto:[EMAIL PROTECTED

RE: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-19 Thread Jon Berndt
This seems to clear things up Norman It did. Yee-haw! I'll commit this fix to JSBSim CVS. Jon smime.p7s Description: application/pkcs7-signature

Re: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-19 Thread Norman Vine
Jon Berndt writes: This seems to clear things up Norman It did. Yee-haw! I'll commit this fix to JSBSim CVS. Jon, Since you want JSBSim to run stand-alone as well as integrated into FGFS please give some consideration to adopting the SimGear compiler.h file as a common include to

[Flightgear-devel] Cygwin build problem with sprintf

2002-11-18 Thread Jon Berndt
Here's the sprintf problem again in a recent build attempt for fg_init.cxx. Is there a fix for this for CygWin? Jon g++ -DHAVE_CONFIG_H -I. -I. -I../../src/Include -I../.. -I../../src -I/us r/local/include -DPKGLIBDIR=\/usr/local/lib/FlightGear\ -c -o fg_init.o `test -f 'fg_init.cxx' || echo

Re: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-18 Thread Norman Vine
Jon Berndt writes: Here's the sprintf problem again in a recent build attempt for fg_init.cxx. Is there a fix for this for CygWin? Jon g++ -DHAVE_CONFIG_H -I. -I. -I../../src/Include -I../.. -I../../src -I/us r/local/include -DPKGLIBDIR=\/usr/local/lib/FlightGear\ -c -o fg_init.o

Re: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-18 Thread julianfoad
Norman Vine wote: ! #ifdef _WIN32 #define snprintf _snprintf #endif --- 66,72 ! #if defined(_WIN32) !defined(__CYGWIN__) #define snprintf _snprintf #endif To Norman: Good fix. To Curt (etc.): Shouldn't this go in simgear/compiler.h instead of in every source file

Re: [Flightgear-devel] Cygwin build problem with sprintf

2002-11-18 Thread Curtis L. Olson
[EMAIL PROTECTED] writes: Norman Vine wote: ! #ifdef _WIN32 #define snprintf _snprintf #endif --- 66,72 ! #if defined(_WIN32) !defined(__CYGWIN__) #define snprintf _snprintf #endif To Norman: Good fix. To Curt (etc.): Shouldn't this go in