From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from krisdoz.my.domain (schwarze@localhost [127.0.0.1]) by krisdoz.my.domain (8.14.5/8.14.5) with ESMTP id s75CY8Ht028373 for ; Tue, 5 Aug 2014 08:34:08 -0400 (EDT) Received: (from schwarze@localhost) by krisdoz.my.domain (8.14.5/8.14.3/Submit) id s75CY8CO013535; Tue, 5 Aug 2014 08:34:08 -0400 (EDT) Date: Tue, 5 Aug 2014 08:34:08 -0400 (EDT) Message-Id: <201408051234.s75CY8CO013535@krisdoz.my.domain> X-Mailinglist: mdocml-source Reply-To: source@mdocml.bsd.lv MIME-Version: 1.0 From: schwarze@mdocml.bsd.lv To: source@mdocml.bsd.lv Subject: mdocml: If an old SQLite version doesn't provide SQLITE_DETERMINISTIC, X-Mailer: activitymail 1.26, http://search.cpan.org/dist/activitymail/ Content-Type: text/plain; charset=utf-8 Log Message: ----------- If an old SQLite version doesn't provide SQLITE_DETERMINISTIC, simply ignore it, as using it is merely an optimization. Issue noticed by kristaps@. Modified Files: -------------- mdocml: mansearch.c Revision Data ------------- Index: mansearch.c =================================================================== RCS file: /usr/vhosts/mdocml.bsd.lv/cvs/mdocml/mansearch.c,v retrieving revision 1.39 retrieving revision 1.40 diff -Lmansearch.c -Lmansearch.c -u -p -r1.39 -r1.40 --- mansearch.c +++ mansearch.c @@ -38,6 +38,9 @@ #include "compat_ohash.h" #endif #include +#ifndef SQLITE_DETERMINISTIC +#define SQLITE_DETERMINISTIC 0 +#endif #include "mandoc.h" #include "mandoc_aux.h" -- To unsubscribe send an email to source+unsubscribe@mdocml.bsd.lv