index
:
openwrt.git
OpenWrt Source Repository
log msg
author
committer
range
feature/odhcpd_odhcp6c_udhcpc-capsdrop
linksys3200ac-master
master
about
summary
refs
log
tree
commit
diff
path:
root
/
package
/
libs
/
ncurses
diff options
context:
1
2
3
4
5
6
7
8
9
10
15
20
25
30
35
40
space:
include
ignore
mode:
unified
ssdiff
stat only
author
Felix Fietkau <nbd@openwrt.org>
2012-12-17 15:11:47 +0000
committer
Felix Fietkau <nbd@openwrt.org>
2012-12-17 15:11:47 +0000
commit
ba2286296e51baa90eb95f75f0a4e4b76bec3b0f
(
patch
)
tree
54de941daf63d2cf03a28e7b7e613405b7fc9f84
/
package/libs/ncurses
parent
e1e00aed52e42254537af0e1bf9a3ef5ac19ef85
(
diff
)
ncurses: fix build error in libncursesw
SVN-Revision: 34739
Diffstat
(limited to 'package/libs/ncurses')
-rw-r--r--
package/libs/ncurses/patches/200-fix_missing_include.patch
13
1 files changed, 13 insertions, 0 deletions
diff --git a/package/libs/ncurses/patches/200-fix_missing_include.patch b/package/libs/ncurses/patches/200-fix_missing_include.patch
new file mode 100644
index 0000000000..ad563930d2
--- /dev/null
+++ b/
package/libs/ncurses/patches/200-fix_missing_include.patch
@@ -0,0 +1,13 @@
+--- a/ncurses/curses.priv.h
++++ b/ncurses/curses.priv.h
+@@ -54,6 +54,10 @@ extern "C" {
+
+ #include <ncurses_cfg.h>
+
++#if NEED_WCHAR_H
++#include <wchar.h>
++#endif
++
+ #if USE_RCS_IDS
+ #define MODULE_ID(id) static const char Ident[] = id;
+ #else