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:
@@ -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
|
||||
|
||||
@@ -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"
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user