diff options
author | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-06-09 11:21:12 +0000 |
---|---|---|
committer | Kristaps Dzonsons <kristaps@bsd.lv> | 2012-06-09 11:21:12 +0000 |
commit | 9c015b8592753e47fb0ae7bc57c0e3e91c4eb6f9 (patch) | |
tree | 16b8d82c4f2119940ea1dd124d92494ab9441d52 | |
parent | 2e8c56dd976297ecf5a8274133f18f7311df1d4c (diff) | |
download | mandoc-9c015b8592753e47fb0ae7bc57c0e3e91c4eb6f9.tar.gz |
Ths SYNCHRONOUS = off optimisation fails on my Mac OSX. Take it out until
I can test properly for this feature.
-rw-r--r-- | mandocdb.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -509,7 +509,9 @@ main(int argc, char *argv[]) * turn off synchronous mode for much better * performance. */ +#ifndef __APPLE__ SQL_EXEC("PRAGMA synchronous = OFF"); +#endif if (0 == ofmerge(mc, mp, dirs.paths[j])) goto out; |