From daf7994c1c23d155ed5543439b083ce0d2ac9e35 Mon Sep 17 00:00:00 2001 From: Peter Sadrozinski Date: Sat, 31 Mar 2012 11:15:47 -0400 Subject: [PATCH] fix for time.h on Windows --- src/Airports/GenAirports850/airport.hxx | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/Airports/GenAirports850/airport.hxx b/src/Airports/GenAirports850/airport.hxx index 6ca6a93b..f69a5bcd 100644 --- a/src/Airports/GenAirports850/airport.hxx +++ b/src/Airports/GenAirports850/airport.hxx @@ -3,7 +3,12 @@ #include #include + +#if defined( __CYGWIN__ ) || defined( __CYGWIN32__ ) || defined( _MSC_VER ) +#include +#else #include +#endif #include "runway.hxx" #include "object.hxx"