diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2014-08-05 12:50:52 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2014-08-05 12:50:52 +0000 |
commit | e78c9199f3e64722b422088627cfd89d0a1dd5cf (patch) | |
tree | ff1e1e1117021c43b8b2d196c6794527e6b64d36 /configure | |
parent | d2b3f0c9cdd5730d0a2af274b777dd8d1ad53d57 (diff) | |
download | mandoc-e78c9199f3e64722b422088627cfd89d0a1dd5cf.tar.gz |
Since old SQLite versions do not have sqlite3_errstr(),
provide a dummy fallback implementation.
Do not bother to decode the error, SQLite error codes
are not useful enough for that to be worthwhile.
Note that using sqlite3_errmsg(db) would be a bad idea:
On malloc() failure, db is NULL, which would cause a segfault.
Issue noticed by kristaps@.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -35,6 +35,8 @@ runtest getsubopt GETSUBOPT runtest mmap MMAP runtest ohash OHASH -lutil runtest reallocarray REALLOCARRAY +runtest sqlite3_errstr SQLITE3_ERRSTR \ + "-I/usr/local/include -L/usr/local/lib -lsqlite3" runtest strcasestr STRCASESTR runtest strlcat STRLCAT runtest strlcpy STRLCPY |