From: curt Date: Thu, 14 Oct 1999 20:30:54 +0000 (+0000) Subject: Upgraded to latest weather data base code from Christian Mayer's and make X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=eddea671a276ea5337867d09699730876fce7085;p=flightgear.git Upgraded to latest weather data base code from Christian Mayer's and make it the default. --- diff --git a/acconfig.h b/acconfig.h index e708de346..0598e55f6 100644 --- a/acconfig.h +++ b/acconfig.h @@ -61,8 +61,8 @@ /* Define to include Oliver's networking support */ #undef FG_NETWORK_OLK -/* Define to include Oliver's networking support */ -#undef FG_NEW_WEATHER +/* Define to avoid Christian's new weather code */ +#undef FG_OLD_WEATHER /* Define if we are building FGFS (should always be defined) */ #undef FGFS diff --git a/src/Main/Makefile.am b/src/Main/Makefile.am index d5c4d6e1c..874dcee0c 100644 --- a/src/Main/Makefile.am +++ b/src/Main/Makefile.am @@ -4,11 +4,11 @@ else SERIAL_LIBS = endif -if ENABLE_NEW_WEATHER +if ENABLE_OLD_WEATHER +WEATHER_LIBS = $(top_builddir)/Simulator/Weather/libWeather.a +else WEATHER_LIBS = $(top_builddir)/Simulator/WeatherCM/libWeatherCM.a \ $(top_builddir)/Lib/Voronoi/libVoronoi.a -else -WEATHER_LIBS = $(top_builddir)/Simulator/Weather/libWeather.a endif diff --git a/src/Main/fg_init.cxx b/src/Main/fg_init.cxx index c435786c7..1b19c9d4c 100644 --- a/src/Main/fg_init.cxx +++ b/src/Main/fg_init.cxx @@ -75,7 +75,7 @@ #include