1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-02 07:46:38 +02:00

core: fix compilation on Android (replace include of sys/termios.h by termios.h) (bug #41434)

This commit is contained in:
Sebastien Helleu
2014-02-02 15:12:37 +01:00
parent fcd120fa50
commit 6c47428e78
3 changed files with 2 additions and 7 deletions
+1 -2
View File
@@ -11,8 +11,7 @@ http://weechat.org/files/releasenotes/ReleaseNotes-devel.html[release notes]
== Version 0.4.3 (under dev)
* core: fix compilation on Android (replace calls to rindex by strrchr)
(bug #41420, patch #8301)
* core: fix compilation on Android (bug #41420, patch #8301, bug #41434)
* core: fix crash when creating two bars with same name but different case
(bug #41418)
* core: fix display of read marker when all buffer lines are unread and that
+1 -1
View File
@@ -31,7 +31,7 @@
#include <stdarg.h>
#include <libgen.h>
#include <sys/ioctl.h>
#include <sys/termios.h>
#include <termios.h>
#include "../../core/weechat.h"
#include "../../core/wee-config.h"
-4
View File
@@ -30,10 +30,6 @@
#include <curses.h>
#endif
#ifdef __CYGWIN__
#include <sys/termios.h>
#endif
struct t_gui_buffer;
struct t_gui_window;
struct t_gui_bar_window;