zstdmt debug traces compatibles with mingw
since mingw does not have `sys/times.h`, remove this path when detecting mingw compilation.
This commit is contained in:
parent
abc02e08ff
commit
53e1f0504e
@ -37,7 +37,9 @@
|
||||
#define ZSTD_RESIZE_SEQPOOL 0
|
||||
|
||||
/* ====== Debug ====== */
|
||||
#if defined(DEBUGLEVEL) && (DEBUGLEVEL>=2) && !defined(_MSC_VER)
|
||||
#if defined(DEBUGLEVEL) && (DEBUGLEVEL>=2) \
|
||||
&& !defined(_MSC_VER) \
|
||||
&& !defined(__MINGW32__)
|
||||
|
||||
# include <stdio.h>
|
||||
# include <unistd.h>
|
||||
|
Loading…
Reference in New Issue
Block a user