]> git.cameronkatri.com Git - mandoc.git/commitdiff
If an old SQLite version doesn't provide SQLITE_DETERMINISTIC,
authorIngo Schwarze <schwarze@openbsd.org>
Tue, 5 Aug 2014 12:34:08 +0000 (12:34 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Tue, 5 Aug 2014 12:34:08 +0000 (12:34 +0000)
simply ignore it, as using it is merely an optimization.
Issue noticed by kristaps@.

mansearch.c

index 259a1946068cfe4df3c81344f39a5b9bc29ecf2a..86a046f82d62b20a9a0477696d96d3a461d4fb59 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: mansearch.c,v 1.39 2014/07/24 20:30:45 schwarze Exp $ */
+/*     $Id: mansearch.c,v 1.40 2014/08/05 12:34:08 schwarze Exp $ */
 /*
  * Copyright (c) 2012 Kristaps Dzonsons <kristaps@bsd.lv>
  * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -38,6 +38,9 @@
 #include "compat_ohash.h"
 #endif
 #include <sqlite3.h>
+#ifndef SQLITE_DETERMINISTIC
+#define SQLITE_DETERMINISTIC 0
+#endif
 
 #include "mandoc.h"
 #include "mandoc_aux.h"