]> git.sur5r.net Git - openldap/commitdiff
ITS#7209 Default MDB_DSYNC = O_SYNC if no O_DSYNC
authorHallvard Furuseth <hallvard@openldap.org>
Tue, 17 Nov 2015 17:22:25 +0000 (18:22 +0100)
committerHallvard Furuseth <hallvard@openldap.org>
Tue, 17 Nov 2015 17:37:33 +0000 (18:37 +0100)
libraries/liblmdb/mdb.c

index fdfcb351097fe2ef2d17e99e2d4bf7fdf0dd22bb..def326a672a93ace2cfa2dc2f2da170e76e6bd5f 100644 (file)
@@ -403,10 +403,13 @@ static int mdb_mutex_failed(MDB_env *env, mdb_mutexref_t mutex, int rc);
  *
  *     @note If O_DSYNC is undefined but exists in /usr/include,
  * preferably set some compiler flag to get the definition.
- * Otherwise compile with the less efficient -DMDB_DSYNC=O_SYNC.
  */
 #ifndef MDB_DSYNC
+# ifdef O_DSYNC
 # define MDB_DSYNC     O_DSYNC
+# else
+# define MDB_DSYNC     O_SYNC
+# endif
 #endif
 #endif