X-Git-Url: https://vcs.fsf.org/?p=exim.git;a=blobdiff_plain;f=src%2Fsrc%2Flookups%2Fsqlite.c;fp=src%2Fsrc%2Flookups%2Fsqlite.c;h=e679973b30e002d4d87142960e05589b4b181adc;hp=5759c437ab27c2d8d9e19b436ea1f312664d434a;hb=6545de78cb822ab5db97a2f16fe7a42cc9488bd8;hpb=56e0c4ce946ae13628c4349f982c3407e1019dd0 diff --git a/src/src/lookups/sqlite.c b/src/src/lookups/sqlite.c index 5759c437a..e679973b3 100644 --- a/src/src/lookups/sqlite.c +++ b/src/src/lookups/sqlite.c @@ -155,6 +155,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 +184,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