diff src/version.c @ 20037:f36f10d90378 v8.2.0574

patch 8.2.0574: ipv6 feature not shown in :version output Commit: https://github.com/vim/vim/commit/352f554b854da1c45209bcb3db8ba943da1969f0 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Apr 13 19:04:21 2020 +0200 patch 8.2.0574: ipv6 feature not shown in :version output Problem: Ipv6 feature not shown in :version output. Solution: Add ipv6 in :version output. (Ozaki Kiichi, closes https://github.com/vim/vim/issues/5924)
author Bram Moolenaar <Bram@vim.org>
date Mon, 13 Apr 2020 19:15:05 +0200
parents 4c9acbd6b3c7
children 41d0b22db011
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -296,6 +296,11 @@ static char *(features[]) =
 	"-iconv",
 #endif
 	"+insert_expand",
+#ifdef FEAT_IPV6
+	"+ipv6",
+#else
+	"-ipv6",
+#endif
 #ifdef FEAT_JOB_CHANNEL
 	"+job",
 #else
@@ -742,6 +747,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    574,
+/**/
     573,
 /**/
     572,