diff options
author | Andreas Metzler <ametzler@bebt.de> | 2015-07-02 08:48:58 +0200 |
---|---|---|
committer | Phil Pennock <pdp@exim.org> | 2015-07-04 19:43:07 +0000 |
commit | 0750f09990dbae7ce87416bce24abefb08aeccd1 (patch) | |
tree | 262ab539630df794ca45ce40af5f60edd3ee5cb9 | |
parent | dcb1095cbcff5ab9f6146dd615fd4c04788c52ec (diff) |
Bump LOCAL_SCAN_ABI_VERSION.
In 4.86 the size of struct recipient_item changed when EXPERIMENTAL_DSN
was made default. This broke the local scan ABI (rebuild required).
See <http://bugs.debian.org/790616>.
-rw-r--r-- | src/src/local_scan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/src/local_scan.h b/src/src/local_scan.h index 0ed54826d..bca14bcaf 100644 --- a/src/src/local_scan.h +++ b/src/src/local_scan.h @@ -98,8 +98,8 @@ ABI is changed in a non backward compatible way. The minor number is increased each time a new feature is added (in a way that doesn't break backward compatibility). */ -#define LOCAL_SCAN_ABI_VERSION_MAJOR 1 -#define LOCAL_SCAN_ABI_VERSION_MINOR 1 +#define LOCAL_SCAN_ABI_VERSION_MAJOR 2 +#define LOCAL_SCAN_ABI_VERSION_MINOR 0 #define LOCAL_SCAN_ABI_VERSION \ LOCAL_SCAN_ABI_VERSION_MAJOR.LOCAL_SCAN_ABI_VERSION_MINOR |