On Oct 27, 2016, at 8:04 AM, qemu-devel-requ...@nongnu.org wrote:
---
ui/Makefile.objs | 3 +++
1 file changed, 3 insertions(+)
diff --git a/ui/Makefile.objs b/ui/Makefile.objs
index dc936f1..62f4cf3 100644
--- a/ui/Makefile.objs
+++ b/ui/Makefile.objs
@@ -17,6 +17,9 @@ common-obj-$(CONFIG_CURSES) += curses.o
common-obj-$(CONFIG_VNC) += $(vnc-obj-y)
common-obj-$(CONFIG_GTK) += gtk.o x_keymap.o
+# needed to make gcc accept wide unicode chars without warning
+curses.o-cflags := -std=gnu99
+
ifeq ($(CONFIG_SDLABI),1.2)
sdl.mo-objs := sdl.o sdl_zoom.o
endif
--
1.8.3.1
Could we add a commit message to this patch? It could answer
questions like:
Why this patch is needed?
Who needs this patch?
What problem it solves.