From 84f4e31425f2f10edd5f97f8887a2b75c224b405 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Helleu?= Date: Fri, 16 Mar 2018 20:09:35 +0100 Subject: [PATCH] core: fix compilation error on Cygwin --- src/gui/curses/gui-curses-term.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/gui/curses/gui-curses-term.c b/src/gui/curses/gui-curses-term.c index 08c01491c..369fda331 100644 --- a/src/gui/curses/gui-curses-term.c +++ b/src/gui/curses/gui-curses-term.c @@ -23,6 +23,7 @@ #include "config.h" #endif +#ifndef WEECHAT_HEADLESS #ifdef HAVE_NCURSESW_CURSES_H #ifdef __sun #include @@ -32,6 +33,7 @@ #else #include #endif /* HAVE_NCURSESW_CURSES_H */ +#endif /* WEECHAT_HEADLESS */ /* @@ -45,10 +47,10 @@ void gui_term_set_eat_newline_glitch (int value) { -#ifdef HAVE_EAT_NEWLINE_GLITCH +#if !defined(WEECHAT_HEADLESS) && defined(HAVE_EAT_NEWLINE_GLITCH) eat_newline_glitch = value; #else /* make C compiler happy */ (void) value; -#endif /* HAVE_EAT_NEWLINE_GLITCH */ +#endif }