src/Main/util.cxx: Olaf Flebbe: flush the osgDB cache just before
exit. This avoids a static destructor cleanup problem with static
osg linkage.
#include "globals.hxx"
#include "util.hxx"
+#ifdef OSG_LIBRARY_STATIC
+#include "osgDB/Registry"
+#endif
void
fgDefaultWeatherValue (const char * propname, double value)
SGSubsystem *sub = globals->get_subsystem("ai_model");
globals->get_subsystem_mgr()->get_group(SGSubsystemMgr::GENERAL)->remove_subsystem("ai_model");
delete sub;
+#ifdef OSG_LIBRARY_STATIC
+ osgDB::Registry::instance( true);
+#endif
SG_LOG(SG_GENERAL, SG_INFO, "Exiting FlightGear with status " << status);
exit(status);