]> git.sur5r.net Git - openldap/commitdiff
ITS#8554 kFreeBSD is like BSD
authorHoward Chu <hyc@openldap.org>
Wed, 28 Dec 2016 18:32:14 +0000 (18:32 +0000)
committerHoward Chu <hyc@openldap.org>
Wed, 28 Dec 2016 18:32:14 +0000 (18:32 +0000)
Doesn't have POSIX robust mutexes - GNU userland on BSD kernel

libraries/liblmdb/mdb.c

index 7a181d45f69226073384d21414735a0392f6360f..23c1f009b01dd75b8d4d6c212d360238f65e19ae 100644 (file)
@@ -120,7 +120,7 @@ typedef SSIZE_T     ssize_t;
 #include <resolv.h>    /* defines BYTE_ORDER on HPUX and Solaris */
 #endif
 
-#if defined(__APPLE__) || defined (BSD)
+#if defined(__APPLE__) || defined (BSD) || defined(__FreeBSD_kernel__)
 # define MDB_USE_POSIX_SEM     1
 # define MDB_FDATASYNC         fsync
 #elif defined(ANDROID)