Patch 9.0.1528
Problem: Libsodium encryption is only used with "huge" features, even when
manually enabled through configure. (Tony Mechelynck)
Solution: Remove the condition on FEAT_HUGE.
Files: src/feature.h
*** ../vim-9.0.1527/src/feature.h 2023-04-14 21:54:21.092430693 +0100
--- src/feature.h 2023-05-08 22:10:54.280937287 +0100
***************
*** 373,381 ****
#endif
/*
! * libsodium - add cryptography support
*/
! #if defined(HAVE_SODIUM) && defined(FEAT_HUGE)
# define FEAT_SODIUM
#endif
--- 373,381 ----
#endif
/*
! * libsodium - add advanced cryptography support
*/
! #if defined(HAVE_SODIUM) && defined(FEAT_CRYPT)
# define FEAT_SODIUM
#endif
*** ../vim-9.0.1527/src/version.c 2023-05-08 18:26:00.121237065 +0100
--- src/version.c 2023-05-08 22:10:17.592936331 +0100
***************
*** 697,698 ****
--- 697,700 ----
{ /* Add new patch number below this line */
+ /**/
+ 1528,
/**/
--
Computers are useless. They can only give you answers.
-- Pablo Picasso
/// Bram Moolenaar -- [email protected] -- http://www.Moolenaar.net \\\
/// \\\
\\\ sponsor Vim, vote for features -- http://www.Vim.org/sponsor/ ///
\\\ help me help AIDS victims -- http://ICCF-Holland.org ///
--
--
You received this message from the "vim_dev" maillist.
Do not top-post! Type your reply below the text you are replying to.
For more information, visit http://www.vim.org/maillist.php
---
You received this message because you are subscribed to the Google Groups
"vim_dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/vim_dev/20230508211137.345021C1B21%40moolenaar.net.