diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-02-26 16:16:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-02-26 16:16:53 +0100 |
commit | b3f740695a0199d22cd97aee314f06c7ae32d2ea (patch) | |
tree | 8221662bb578d80a7a044f8a20aef09394a5a1a8 /src/os_unix.c | |
parent | d672dde584effd55702ee15efec4cb2a8c77bf85 (diff) | |
download | vim-git-b3f740695a0199d22cd97aee314f06c7ae32d2ea.tar.gz |
patch 8.2.0320: no Haiku supportv8.2.0320
Problem: No Haiku support.
Solution: Add support for Haiku. (Emir Sari, closes #5605)
Diffstat (limited to 'src/os_unix.c')
-rw-r--r-- | src/os_unix.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/os_unix.c b/src/os_unix.c index 654480d9e..c0a4fdbe3 100644 --- a/src/os_unix.c +++ b/src/os_unix.c @@ -2151,7 +2151,8 @@ mch_settitle(char_u *title, char_u *icon) if (get_x11_windis() == OK) type = 1; #else -# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) || defined(FEAT_GUI_GTK) +# if defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) \ + || defined(FEAT_GUI_GTK) || defined(FEAT_GUI_HAIKU) if (gui.in_use) type = 1; # endif @@ -2184,7 +2185,7 @@ mch_settitle(char_u *title, char_u *icon) # endif set_x11_title(title); // x11 #endif -#if defined(FEAT_GUI_GTK) \ +#if defined(FEAT_GUI_GTK) || defined(FEAT_GUI_HAIKU) \ || defined(FEAT_GUI_PHOTON) || defined(FEAT_GUI_MAC) else gui_mch_settitle(title, icon); @@ -4591,7 +4592,7 @@ mch_call_shell_fork( { SIGSET_DECL(curset) -# ifdef __BEOS__ +# if defined(__BEOS__) && USE_THREAD_FOR_INPUT_WITH_TIMEOUT beos_cleanup_read_thread(); # endif |