diff options
-rw-r--r-- | doc/doc-txt/ChangeLog | 3 | ||||
-rw-r--r-- | src/src/lookups/mysql.c | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/doc/doc-txt/ChangeLog b/doc/doc-txt/ChangeLog index abc4e9312..c97fdd156 100644 --- a/doc/doc-txt/ChangeLog +++ b/doc/doc-txt/ChangeLog @@ -148,6 +148,9 @@ JH/25 Use one-bit bitfields for flags in the "addr" data structure. Previously if was a fixed-sized field and bitmask ops via macros; it is now more extensible. +PP/07 GitHub PR 56: Apply MariaDB build fix. + Patch provided by Jaroslav Škarvada. + Exim version 4.89 ----------------- diff --git a/src/src/lookups/mysql.c b/src/src/lookups/mysql.c index 5cf15af3a..ddc7dc841 100644 --- a/src/src/lookups/mysql.c +++ b/src/src/lookups/mysql.c @@ -13,6 +13,7 @@ functions. */ #include "lf_functions.h" #include <mysql.h> /* The system header */ +#include <mysql_version.h> /* Structure and anchor for caching connections. */ |