USE_POSIX_SEM must define USE_HASH
This commit is contained in:
Howard Chu 2013-10-14 09:47:26 -07:00
parent ab9b08f8af
commit dddc7a385b

View File

@ -67,7 +67,6 @@
#if defined(__APPLE__) || defined (BSD)
# define MDB_USE_POSIX_SEM 1
# define MDB_USE_HASH 1
# define MDB_FDATASYNC fsync
#elif defined(ANDROID)
# define MDB_FDATASYNC fsync
@ -76,6 +75,7 @@
#ifndef _WIN32
#include <pthread.h>
#ifdef MDB_USE_POSIX_SEM
# define MDB_USE_HASH 1
#include <semaphore.h>
#endif
#endif