1From 6bc6e867c5b3a774c0d7819ee5a3d2885e97caa9 Mon Sep 17 00:00:00 2001 2From: Alexander Kanavin <alex.kanavin@gmail.com> 3Date: Mon, 30 Mar 2020 17:11:19 +0200 4Subject: [PATCH] gptcurses: correctly include curses.h 5 6Upstream-Status: Inappropriate [oe-core specific] 7Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> 8 9--- 10 gptcurses.cc | 4 ---- 11 1 file changed, 4 deletions(-) 12 13diff --git a/gptcurses.cc b/gptcurses.cc 14index 71aa734..4ebfde1 100644 15--- a/gptcurses.cc 16+++ b/gptcurses.cc 17@@ -23,11 +23,7 @@ 18 #include <iostream> 19 #include <string> 20 #include <sstream> 21-#if defined (__APPLE__) || (__FreeBSD__) 22 #include <ncurses.h> 23-#else 24-#include <ncursesw/ncurses.h> 25-#endif 26 #include "gptcurses.h" 27 #include "support.h" 28 29