changeset 26859:b9ede1952107 v8.2.3958

patch 8.2.3958: build failure compiling xxd with "-std=c2x" Commit: https://github.com/vim/vim/commit/ef089f50f9d6685c7a0ab94f9133576d7beec32b Author: Yegappan Lakshmanan <yegappan@yahoo.com> Date: Fri Dec 31 17:33:47 2021 +0000 patch 8.2.3958: build failure compiling xxd with "-std=c2x" Problem: Build failure compiling xxd with "-std=c2x". Solution: define _XOPEN_SOURCE. (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/9444)
author Bram Moolenaar <Bram@vim.org>
date Fri, 31 Dec 2021 18:45:02 +0100
parents cec771ba515f
children 07ad81bfab52
files src/version.c src/xxd/xxd.c
diffstat 2 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/version.c
+++ b/src/version.c
@@ -750,6 +750,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    3958,
+/**/
     3957,
 /**/
     3956,
--- a/src/xxd/xxd.c
+++ b/src/xxd/xxd.c
@@ -72,6 +72,10 @@
 # define CYGWIN
 #endif
 
+#if (defined(__linux__) && !defined(__ANDROID__)) || defined(__CYGWIN__)
+# define _XOPEN_SOURCE 700   /* for fdopen() */
+#endif
+
 #include <stdio.h>
 #ifdef VAXC
 # include <file.h>