X-Git-Url: https://git.exim.org/users/jgh/exim.git/blobdiff_plain/e6d225ae6e6811d3c88dc201642a2127ff6c11bd..3634fc257bd0667daef14d72005cd87c735bbb24:/src/src/lookups/sqlite.c diff --git a/src/src/lookups/sqlite.c b/src/src/lookups/sqlite.c index 5759c437a..c0fc891fb 100644 --- a/src/src/lookups/sqlite.c +++ b/src/src/lookups/sqlite.c @@ -1,5 +1,3 @@ -/* $Cambridge: exim/src/src/lookups/sqlite.c,v 1.5 2009/11/16 19:50:38 nm4 Exp $ */ - /************************************************* * Exim - an Internet mail transport agent * *************************************************/ @@ -155,6 +153,27 @@ while ((c = *s++) != 0) return quoted; } + + +/************************************************* +* Version reporting entry point * +*************************************************/ + +/* See local README for interface description. */ + +#include "../version.h" + +void +sqlite_version_report(FILE *f) +{ +fprintf(f, "Library version: SQLite: Compile: %s\n" + " Runtime: %s\n", + SQLITE_VERSION, sqlite3_libversion()); +#ifdef DYNLOOKUP +fprintf(f, " Exim version %s\n", EXIM_VERSION_STR); +#endif +} + static lookup_info _lookup_info = { US"sqlite", /* lookup name */ lookup_absfilequery, /* query-style lookup, starts with file name */ @@ -163,7 +182,8 @@ static lookup_info _lookup_info = { sqlite_find, /* find function */ sqlite_close, /* close function */ NULL, /* no tidy function */ - sqlite_quote /* quoting function */ + sqlite_quote, /* quoting function */ + sqlite_version_report /* version reporting */ }; #ifdef DYNLOOKUP