USE_POSIX_SEM must define USE_HASH
vmware
Howard Chu 11 years ago
parent ab9b08f8af
commit dddc7a385b
  1. 2
      libraries/liblmdb/mdb.c

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

Loading…
Cancel
Save