diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-07-19 07:48:48 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2022-07-19 07:48:48 +0100 |
commit | 697cebb4c1a28e0dc5b76037cb912eb1ace700b3 (patch) | |
tree | 67312cd97231dd4168b09555c49b4343b04a645b | |
parent | dc6bc0e95acc04cdf43e869294ecba897a11d850 (diff) | |
download | rtmux-697cebb4c1a28e0dc5b76037cb912eb1ace700b3.tar.gz rtmux-697cebb4c1a28e0dc5b76037cb912eb1ace700b3.tar.bz2 rtmux-697cebb4c1a28e0dc5b76037cb912eb1ace700b3.zip |
Include curses properly for hyperlinks ifdef, from chrysn at fsfe dot org.
-rw-r--r-- | tty-features.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tty-features.c b/tty-features.c index e387f823..64f0039a 100644 --- a/tty-features.c +++ b/tty-features.c @@ -21,6 +21,12 @@ #include <stdlib.h> #include <string.h> +#if defined(HAVE_CURSES_H) +#include <curses.h> +#elif defined(HAVE_NCURSES_H) +#include <ncurses.h> +#endif + #include "tmux.h" /* |