mdbx: fix __ANDROID__ typo.

Thank to Howard Chu <hyc@openldap.org>.

Change-Id: Ibcbe2e4790a5df5758d9fd6c621793ea42a94682
This commit is contained in:
Leo Yuriev 2019-02-02 17:13:41 +03:00 committed by Leonid Yuriev
parent bfffaa66b8
commit 9ba8434c1d

View File

@ -20,8 +20,8 @@
#ifndef MDBX_USE_ROBUST #ifndef MDBX_USE_ROBUST
/* Howard Chu: Android currently lacks Robust Mutex support */ /* Howard Chu: Android currently lacks Robust Mutex support */
#if defined(EOWNERDEAD) && \ #if defined(EOWNERDEAD) && \
!defined(ANDROID) /* LY: glibc before 2.10 has a troubles with Robust \ !defined(__ANDROID__) /* LY: glibc before 2.10 has a troubles \
Mutex too. */ \ with Robust Mutex too. */ \
&& __GLIBC_PREREQ(2, 10) && __GLIBC_PREREQ(2, 10)
#define MDBX_USE_ROBUST 1 #define MDBX_USE_ROBUST 1
#else #else