diff options
| author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2022-03-17 12:52:12 +0100 |
|---|---|---|
| committer | Johannes Schindelin <johannes.schindelin@gmx.de> | 2022-03-17 12:52:12 +0100 |
| commit | 2a9a5862e516935149697f710f4fb00f14b7c40b (patch) | |
| tree | 742bc0a88a7af3e1b85e94a264346ffb57b2e1ca /git-compat-util.h | |
| parent | 94f6e3e283f2adfc518b39cfc39291f1c2832ad0 (diff) | |
| parent | 6e7ad1e4c22e7038975ba37c7413374fe566b064 (diff) | |
| download | git-2a9a5862e516935149697f710f4fb00f14b7c40b.tar.gz | |
Merge branch 'cb/mingw-gmtime-r'
Build fix on Windows.
* cb/mingw-gmtime-r:
mingw: avoid fallback for {local,gm}time_r()
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Diffstat (limited to 'git-compat-util.h')
| -rw-r--r-- | git-compat-util.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 7d3db43f11..3da9f975e2 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -127,7 +127,9 @@ /* Approximation of the length of the decimal representation of this type. */ #define decimal_length(x) ((int)(sizeof(x) * 2.56 + 0.5) + 1) -#if defined(__sun__) +#ifdef __MINGW64__ +#define _POSIX_C_SOURCE 1 +#elif defined(__sun__) /* * On Solaris, when _XOPEN_EXTENDED is set, its header file * forces the programs to be XPG4v2, defeating any _XOPEN_SOURCE |
