Commit 18a2180d by Francois-Xavier Coudert Committed by François-Xavier Coudert

re PR libfortran/66936 (io/unix.c gratuitously uses S_IRWXG and S_IRWXO on the…

re PR libfortran/66936 (io/unix.c gratuitously uses S_IRWXG and S_IRWXO on the basis that umask() is available)

	PR libfortran/66936
	* io/unix.c (__MINGW32__): Undefine HAVE_UMASK.

From-SVN: r226750
parent dc04bc84
2015-08-09 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR libfortran/66936
* io/unix.c (__MINGW32__): Undefine HAVE_UMASK.
2015-08-07 Francois-Xavier Coudert <fxcoudert@gcc.gnu.org>
PR libfortran/66458
......
......@@ -101,6 +101,12 @@ id_from_fd (const int fd)
}
#endif /* HAVE_WORKING_STAT */
/* On mingw, we don't use umask in tempfile_open(), because it
doesn't support the user/group/other-based permissions. */
#undef HAVE_UMASK
#endif /* __MINGW32__ */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment