]> git.eshelyaron.com Git - emacs.git/commitdiff
Avoid gettimeofday deprecation warnings with MinGW
authorEli Zaretskii <eliz@gnu.org>
Sun, 29 Jul 2018 17:07:09 +0000 (20:07 +0300)
committerEli Zaretskii <eliz@gnu.org>
Sun, 29 Jul 2018 17:07:09 +0000 (20:07 +0300)
* nt/inc/ms-w32.h (__POSIX_2008_DEPRECATED)
[__MINGW32_VERSION >= 5001000L]: Define to nothing, to avoid
deprecation warnings about gettimeofday with mingw.org's MinGW
runtime 5.1 and later.

nt/inc/ms-w32.h

index d15b6da1a742174c233be23ff15aab38a443a0a0..e4dec04fb8bc2907e43bec95cde53453f90c931c 100644 (file)
@@ -34,6 +34,11 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 # ifdef __MINGW64_VERSION_MAJOR
 #  define MINGW_W64
 # endif
+# if defined __MINGW32_VERSION && __MINGW32_VERSION >= 5001000L
+/* Avoid warnings about gettimeofday being deprecated.  */
+#  undef __POSIX_2008_DEPRECATED
+#  define __POSIX_2008_DEPRECATED
+# endif
 #endif
 
 /* #undef const */