]> mj.ucw.cz Git - checkmail.git/commitdiff
Include ncurses.h instead of ncursesw/ncurses.h
authorJiri Kalvoda <jirikalvoda@kam.mff.cuni.cz>
Sun, 18 Jul 2021 13:20:53 +0000 (15:20 +0200)
committerMartin Mares <mj@ucw.cz>
Fri, 21 Jan 2022 20:54:44 +0000 (21:54 +0100)
Some Linux distributions (for example Arch) don't have the subdirectory.

cm.c

diff --git a/cm.c b/cm.c
index 987265a245c18969ae2f4b3411f052d56062eff9..e6b9daac70e2192ed9cb0442da0a522ceaf6cf13 100644 (file)
--- a/cm.c
+++ b/cm.c
@@ -23,7 +23,7 @@
 #include <unistd.h>
 
 #ifdef CONFIG_WIDE_CURSES
-#include <ncursesw/ncurses.h>
+#include <ncurses.h>
 #else
 #include <curses.h>
 #endif