From 1790be6cb6f2edfd8a833dd848b8df02cef599cf Mon Sep 17 00:00:00 2001 From: Christian Brabandt Date: Fri, 30 Jul 2021 20:51:59 +0200 Subject: patch 8.2.3250: MS-Windows: cannot build with libsodium Problem: MS-Windows: cannot build with libsodium. Solution: Change FEAT_SODIUM into HAVE_SODIUM. (Christian Brabandt, closes #8668, closes #8663) --- src/Make_mvc.mak | 2 +- src/version.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Make_mvc.mak b/src/Make_mvc.mak index 8c8e71afd6..18b5a88c5f 100644 --- a/src/Make_mvc.mak +++ b/src/Make_mvc.mak @@ -395,7 +395,7 @@ SODIUM = no !if "$(SODIUM)" != "no" SOD_INC = /I "$(SODIUM)\include" -SOD_DEFS = -DFEAT_SODIUM +SOD_DEFS = -DHAVE_SODIUM SOD_LIB = $(SOD_LIB)\libsodium.lib !endif diff --git a/src/version.c b/src/version.c index 33f4196595..f324f3d972 100644 --- a/src/version.c +++ b/src/version.c @@ -755,6 +755,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 3250, /**/ 3249, /**/ -- cgit v1.2.3