1
0
Fork 0
forked from lthn/blockchain

mdbx: fix for incorrectly defined _GNU_SOURCE

This commit is contained in:
sowle 2022-05-12 21:30:39 +02:00
parent 67b5551eea
commit 1c940653d4
No known key found for this signature in database
GPG key ID: C07A24B2D89D49FC

View file

@ -54,7 +54,7 @@
#endif
#if MDBX_DISABLE_GNU_SOURCE
#undef _GNU_SOURCE
#elif defined(__linux__) || defined(__gnu_linux__)
#elif ( defined(__linux__) || defined(__gnu_linux__) ) && !defined(_GNU_SOURCE)
#define _GNU_SOURCE
#endif