comparison src/version.c @ 27657:a077948be0f4 v8.2.4354

patch 8.2.4354: dynamic loading of libsodium not handled properly Commit: https://github.com/vim/vim/commit/d68b2fc034fa3c824e0d4d53745cfe9eb8c5ecd6 Author: K.Takata <kentkt@csc.jp> Date: Sat Feb 12 11:18:37 2022 +0000 patch 8.2.4354: dynamic loading of libsodium not handled properly Problem: Dynamic loading of libsodium not handled properly. Solution: Fix has() and :version. Show an error message when loading fails. Fix memory leaks. (Ken Takata, closes #9754)
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Feb 2022 12:30:03 +0100
parents 3d4609ea2b58
children b5ebc885c25c
comparison
equal deleted inserted replaced
27656:85577ef6b2ce 27657:a077948be0f4
546 "+smartindent", 546 "+smartindent",
547 #else 547 #else
548 "-smartindent", 548 "-smartindent",
549 #endif 549 #endif
550 #ifdef FEAT_SODIUM 550 #ifdef FEAT_SODIUM
551 # ifdef DYNAMIC_SODIUM
552 "+sodium/dyn",
553 # else
551 "+sodium", 554 "+sodium",
555 # endif
552 #else 556 #else
553 "-sodium", 557 "-sodium",
554 #endif 558 #endif
555 #ifdef FEAT_SOUND 559 #ifdef FEAT_SOUND
556 "+sound", 560 "+sound",
744 NULL 748 NULL
745 }; 749 };
746 750
747 static int included_patches[] = 751 static int included_patches[] =
748 { /* Add new patch number below this line */ 752 { /* Add new patch number below this line */
753 /**/
754 4354,
749 /**/ 755 /**/
750 4353, 756 4353,
751 /**/ 757 /**/
752 4352, 758 4352,
753 /**/ 759 /**/