X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/d0bdc3ca5f3e1d2adf70c8630b4b524bc53a798e..85833f5c6c5c136d16ccd01c90cc243d5d025e0a:/src/common/filefn.cpp diff --git a/src/common/filefn.cpp b/src/common/filefn.cpp index 51d2877c20..33b30d5832 100644 --- a/src/common/filefn.cpp +++ b/src/common/filefn.cpp @@ -994,7 +994,7 @@ bool wxMkdir(const wxString& dir, int perm) // 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 !defined(__WXMSW__) || (defined(__GNUWIN32__) && !defined(__MINGW32__)) || defined(__WXWINE__) if ( mkdir(wxFNCONV(dirname), perm) != 0 ) #else // MSW if ( mkdir(wxFNCONV(dirname)) != 0 )