Only in C:\FGCVS\Atlas: Atlas
Only in C:\FGCVS\Atlas: atlas.sln
Only in C:\FGCVS\Atlas: GetMap
Only in C:\FGCVS\Atlas: Map
Only in C:\FGCVS\Atlas: MapPS
Only in Atlas-0.4.3: projects
diff -ur C:\FGCVS\Atlas\src\AirportsOverlay.cxx Atlas-0.4.3\src\AirportsOverlay.cxx
--- C:\FGCVS\Atlas\src\AirportsOverlay.cxx	Fri Apr 02 04:34:22 2010
+++ Atlas-0.4.3\src\AirportsOverlay.cxx	Thu Apr 15 19:50:48 2010
@@ -20,6 +20,9 @@
   You should have received a copy of the GNU General Public License
   along with Atlas.  If not, see .
   ---------------------------------------------------------------------------*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"	// For version number, and lots more ;=))
+#endif
 
 #include 
 
@@ -32,6 +35,13 @@
 #include "misc.hxx"
 #include "Geographics.hxx"
 
+#ifdef _MSC_VER
+#include 
+#define ROUND(a) SGMisc::round(a)
+#else
+#define ROUND(d)    round(d)
+#endif
+
 using namespace std;
 
 void airportLatLon(ARP *ap);
@@ -1151,7 +1161,7 @@
 	// it may be different on VFR charts.  For now, though, we'll
 	// use the '70 rule'.
 	globalString.printf("%.0f",
-			    round((maxRwy * SG_METER_TO_FEET - 20) / 100));
+			    ROUND((maxRwy * SG_METER_TO_FEET - 20) / 100));
 	lm.addText(globalString.str());
     }
 
diff -ur C:\FGCVS\Atlas\src\AirwaysOverlay.cxx Atlas-0.4.3\src\AirwaysOverlay.cxx
--- C:\FGCVS\Atlas\src\AirwaysOverlay.cxx	Sat Apr 17 15:06:17 2010
+++ Atlas-0.4.3\src\AirwaysOverlay.cxx	Sat Apr 17 16:53:19 2010
@@ -20,6 +20,9 @@
   You should have received a copy of the GNU General Public License
   along with Atlas.  If not, see .
   ---------------------------------------------------------------------------*/
+#ifdef HAVE_CONFIG_H
+#include "config.h"	// For version number, and lots more ;=))
+#endif
 
 #include 
 #include 
diff -ur C:\FGCVS\Atlas\src\Atlas.cxx Atlas-0.4.3\src\Atlas.cxx
--- C:\FGCVS\Atlas\src\Atlas.cxx	Wed Apr 14 19:06:50 2010
+++ Atlas-0.4.3\src\Atlas.cxx	Thu Apr 15 15:50:50 2010
@@ -21,6 +21,7 @@
   You should have received a copy of the GNU General Public License
   along with Atlas.  If not, see .
 ---------------------------------------------------------------------------*/
+#include "config.h"		// For our version number
 
 #include 
 #include 
@@ -37,8 +38,6 @@
 #include