From: curt Date: Fri, 24 Apr 1998 00:45:00 +0000 (+0000) Subject: Wrapped "#include " in "#ifdef HAVE_CONFIG_H" X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=d830cbf39a56936ccb21bb27de9f4a8aabbe7daa;p=flightgear.git Wrapped "#include " in "#ifdef HAVE_CONFIG_H" Fixed a bug when generating sky colors. --- diff --git a/Astro/moon.cxx b/Astro/moon.cxx index 53dda6d53..3aed3ed21 100644 --- a/Astro/moon.cxx +++ b/Astro/moon.cxx @@ -21,7 +21,9 @@ **************************************************************************/ -#include +#ifdef HAVE_CONFIG_H +# include +#endif #ifdef HAVE_WINDOWS_H # include @@ -36,7 +38,7 @@ #include #include #include
-#include