1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-26 04:46:37 +02:00

core: fix compilation error on Cygwin

This commit is contained in:
Sébastien Helleu
2018-03-16 20:09:35 +01:00
parent b4cdc29a8f
commit 84f4e31425
+4 -2
View File
@@ -23,6 +23,7 @@
#include "config.h"
#endif
#ifndef WEECHAT_HEADLESS
#ifdef HAVE_NCURSESW_CURSES_H
#ifdef __sun
#include <ncurses/term.h>
@@ -32,6 +33,7 @@
#else
#include <term.h>
#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
}