summaryrefslogtreecommitdiff
path: root/lang/python23-pth/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python23-pth/patches/patch-ab')
-rw-r--r--lang/python23-pth/patches/patch-ab26
1 files changed, 26 insertions, 0 deletions
diff --git a/lang/python23-pth/patches/patch-ab b/lang/python23-pth/patches/patch-ab
new file mode 100644
index 00000000000..b3c51270615
--- /dev/null
+++ b/lang/python23-pth/patches/patch-ab
@@ -0,0 +1,26 @@
+$NetBSD: patch-ab,v 1.1 2003/12/08 21:13:56 recht Exp $
+
+--- Include/py_curses.h.orig 2003-06-29 17:46:21.000000000 +0200
++++ Include/py_curses.h
+@@ -39,6 +39,21 @@
+ #endif
+ #endif
+
++#ifdef __NetBSD__
++/*
++** On NetBSD, [n]curses.h and stdlib.h/wchar.h use different guards
++** against multiple definition of wchar_t and wint_t.
++*/
++#ifdef _XOPEN_SOURCE_EXTENDED
++#ifndef _WCHAR_T
++#define _WCHAR_T
++#endif
++#ifndef _WINT_T
++#define _WINT_T
++#endif
++#endif
++#endif
++
+ #ifdef HAVE_NCURSES_H
+ #include <ncurses.h>
+ #else