From: ehofman Date: Thu, 9 Sep 2004 08:32:11 +0000 (+0000) Subject: Frederic Bouvier: X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=bfd8a50294759dfc9ee4f840fa1ccc86c0ebc02b;p=flightgear.git Frederic Bouvier: Olivier discovered that environment_ctrl.cxx doesn't compile when ENABLE_THREADS is not defined. The simple patch to correct that is attached. --- diff --git a/src/Environment/environment_ctrl.cxx b/src/Environment/environment_ctrl.cxx index f90e28f0d..7e7c8cdbe 100644 --- a/src/Environment/environment_ctrl.cxx +++ b/src/Environment/environment_ctrl.cxx @@ -323,9 +323,11 @@ FGMetarEnvironmentCtrl::FGMetarEnvironmentCtrl () fetch_elapsed( 9999.0 ), proxy_host( fgGetNode("/sim/presets/proxy/host", true) ), proxy_port( fgGetNode("/sim/presets/proxy/port", true) ), - proxy_auth( fgGetNode("/sim/presets/proxy/authentication", true) ), - _error_dt( 0.0 ), + proxy_auth( fgGetNode("/sim/presets/proxy/authentication", true) ) +#if defined(ENABLE_THREADS) && ENABLE_THREADS + ,_error_dt( 0.0 ), _error_count( 0 ) +#endif { #if defined(ENABLE_THREADS) && ENABLE_THREADS thread = new MetarThread(this);