]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/filefn.cpp
MIME support
[wxWidgets.git] / src / common / filefn.cpp
index 21e33dc94be26111290ea7d4b4cb6effb4d7ce49..e90945a6766794d2bc56a3a2f538c521b817bb84 100644 (file)
@@ -986,11 +986,17 @@ bool wxMkdir(const wxString& dir, int perm)
     strcpy( gwxMacFileName , dir ) ;
     wxUnix2MacFilename( gwxMacFileName ) ;
     const char *dirname = gwxMacFileName;
-#else
+#else // !Mac
     const char *dirname = dir.c_str();
-#endif
+#endif // Mac/!Mac
 
+    // assume mkdir() has 2 args on non Windows platforms and on Windows too
+    // for the GNU compiler
+#if !defined(__WXMSW__) || (defined(__GNUWIN32__) && !defined(__MINGW32__))
     if ( mkdir(dirname, perm) != 0 )
+#else  // MSW
+    if ( mkdir(dirname) != 0 )
+#endif // !MSW/MSW
     {
         wxLogSysError(_("Directory '%s' couldn't be created"), dirname);