Re: [Flightgear-devel] CVS Error?

2004-12-17 Thread Curtis L. Olson
John Wojnaroski wrote:
Hi,
I may have posted this late last night, but seems to have been lost. 
If a duplicate post, my apologies

Compiling the CVS pre-release
error in FGNozzle.cxx complaining about snprintf as implicit 
declaration at line #74

Currently running 0.9.5
Did I miss something skipping over 0.9.6?

I believe Erik just synced the flightgear tree up with the latest JSBsim 
cvs, so there could be some portability issue that has crept in.  I 
haven't had a chance to compile the latest cvs commits myself.

With these sorts of errors I would do a man snprintf on your system.  
See what #includes the man page suggests.  Add those to the offending 
file.  Most likely the proper includes are not there.

Regards,
Curt.
--
Curtis Olsonhttp://www.flightgear.org/~curt 
HumanFIRST Program  http://www.humanfirst.umn.edu/
FlightGear Project  http://www.flightgear.org
Unique text:2f585eeea02e2c79d7b1d8c4963bae2d

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


RE: [Flightgear-devel] CVS Error?

2004-12-17 Thread Norman Vine
#include stdio.h

#if defined(WIN32)  !defined(__CYGWIN__)
#define snprintf _snprintf
#endif


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] Behalf Of John
 Wojnaroski
 Sent: Friday, December 17, 2004 11:33 AM
 To: FlightGear developers discussions
 Subject: [Flightgear-devel] CVS Error?
 
 
 Hi,
 
 I may have posted this late last night, but seems to have been lost. If 
 a duplicate post, my apologies
 
 Compiling the CVS pre-release
 
 error in FGNozzle.cxx complaining about snprintf as implicit declaration 
 at line #74
 
 Currently running 0.9.5
 
 Did I miss something skipping over 0.9.6?
 
 Regards
 JW
 
 
 
 
 
 
 
 ___
 Flightgear-devel mailing list
 [EMAIL PROTECTED]
 http://mail.flightgear.org/mailman/listinfo/flightgear-devel
 2f585eeea02e2c79d7b1d8c4963bae2d
 

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


Re: [Flightgear-devel] CVS Error?

2004-12-17 Thread Chris Metzler
On Fri, 17 Dec 2004 10:49:56 -0600
Curtis L. Olson [EMAIL PROTECTED] wrote:

 I believe Erik just synced the flightgear tree up with the latest JSBsim
 
 cvs, so there could be some portability issue that has crept in.  I 
 haven't had a chance to compile the latest cvs commits myself.

It's definitely not generic:  I just synced to CVS and built on linux
with no problem at all.

-c

-- 
Chris Metzler   [EMAIL PROTECTED]
(remove snip-me. to email)

As a child I understood how to give; I have forgotten this grace since I
have become civilized. - Chief Luther Standing Bear


pgpLNwupCPY2F.pgp
Description: PGP signature
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d

Re: [Flightgear-devel] CVS Error?

2004-12-17 Thread John Wojnaroski




That was it. 
The other modules explicitly call out the include directive and ifdef,
but they appear to be excluded in the JSBSim files ?

seems like something is missing/mis-set on my system , if others are
not having this problem. At any rate, adding it in for the complaining
files will work for the interim

Thanks
John W.

Norman Vine wrote:

  #include stdio.h

#if defined(WIN32)  !defined(__CYGWIN__)
#define snprintf _snprintf
#endif


  
  
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of John
Wojnaroski
Sent: Friday, December 17, 2004 11:33 AM
To: FlightGear developers discussions
Subject: [Flightgear-devel] CVS Error?


Hi,

I may have posted this late last night, but seems to have been lost. If 
a duplicate post, my apologies

Compiling the CVS pre-release

error in FGNozzle.cxx complaining about snprintf as implicit declaration 
at line #74

Currently running 0.9.5

Did I miss something skipping over 0.9.6?

Regards
JW






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


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


  



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

Re: [Flightgear-devel] CVS Error?

2004-12-17 Thread Jon S Berndt
On Fri, 17 Dec 2004 11:35:24 -0800
 John Wojnaroski [EMAIL PROTECTED] wrote:
That was it.
The other modules explicitly call out the include directive and 
ifdef, but they appear to be excluded in the JSBSim files ?

seems like something is missing/mis-set on my system , if others are 
not having this problem. At any rate, adding it in for the 
complaining files will work for the interim

Thanks
John W.
Thanks for pointing this out, and thanks to Norman for pointing out 
the fix. It looks like this was inadvertently removed at some point - 
probably by me. We need to work on eliminating the need for the 
snprintf function if it's not portable.

Thanks,
Jon
___
Flightgear-devel mailing list
[EMAIL PROTECTED]
http://mail.flightgear.org/mailman/listinfo/flightgear-devel
2f585eeea02e2c79d7b1d8c4963bae2d


Re: [Flightgear-devel] CVS error?

2002-09-27 Thread Curtis L. Olson

Matthew Law writes:
 I'm now seeing this when I do a 'cvs update -dP' in the development CVS tree.
 
 cvs server: cannot open directory 
 /var/cvs/FlightGear-0.9/FlightGear/src/Systems/Vacuum: No such file or 
 directory
 cvs server: skipping directory src/Systems/Vacuum
 
 Is this anything I've done locally? FlightGear/src/Systems/Vacuum exists on my 
 machine and contains files.

You should be able to remove the Vacuum directory, and edit the
Systems/CVS/Entries and remove the reference to the Vacuum subdir.

Regards,

Curt.
-- 
Curtis Olson   IVLab / HumanFIRST Program   FlightGear Project
Twin Cities[EMAIL PROTECTED]  [EMAIL PROTECTED]
Minnesota  http://www.menet.umn.edu/~curt   http://www.flightgear.org

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