summaryrefslogtreecommitdiff
path: root/lang/gawk/patches/patch-extension_inplace.c
diff options
context:
space:
mode:
Diffstat (limited to 'lang/gawk/patches/patch-extension_inplace.c')
-rw-r--r--lang/gawk/patches/patch-extension_inplace.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/lang/gawk/patches/patch-extension_inplace.c b/lang/gawk/patches/patch-extension_inplace.c
new file mode 100644
index 00000000000..757bc9b10d0
--- /dev/null
+++ b/lang/gawk/patches/patch-extension_inplace.c
@@ -0,0 +1,21 @@
+$NetBSD: patch-extension_inplace.c,v 1.1 2016/09/08 16:16:15 jperkin Exp $
+
+Support SunOS in C99 mode.
+
+--- extension/inplace.c.orig 2015-04-27 15:09:07.000000000 +0000
++++ extension/inplace.c
+@@ -27,12 +27,14 @@
+ #include <config.h>
+ #endif
+
++#if !(defined(__sun) && (__STDC_VERSION__ - 0 >= 199901L))
+ #ifndef _XOPEN_SOURCE
+ # define _XOPEN_SOURCE
+ #endif
+ #ifndef _XOPEN_SOURCE_EXTENDED
+ # define _XOPEN_SOURCE_EXTENDED 1
+ #endif
++#endif
+
+ #include <stdio.h>
+ #include <assert.h>