]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/bootstrap.cxx
Merge branch 'jt/runway' into next
[flightgear.git] / src / Main / bootstrap.cxx
index e9394211a786f325298260073eb148d19d258081..734f998c0978fde2e8954ea7bacdad2a1d92225c 100644 (file)
@@ -39,8 +39,8 @@
 #include <simgear/debug/logstream.hxx>
 
 #include <iostream>
-SG_USING_STD(cerr);
-SG_USING_STD(endl);
+using std::cerr;
+using std::endl;
 
 #include "main.hxx"
 #include "globals.hxx"
@@ -141,7 +141,7 @@ int main ( int argc, char **argv ) {
     // Ignore floating-point exceptions on FreeBSD
     signal(SIGFPE, SIG_IGN);
 #endif
-#ifndef _MSC_VER
+#if !defined( _MSC_VER ) && !defined( __MINGW32__ )
     signal(SIGPIPE, SIG_IGN);
 #endif