diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-09-09 06:57:07 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-09-09 06:57:07 -0700 |
commit | c6c05649f5d3890281e6fe95694794d39f6f0841 (patch) | |
tree | 670470fb28f3eadc43006019e04d6847555ca1f4 /linenoise/linenoise.c | |
parent | 6e8cecf1f958af3b46365b8f41ceea500d9f2019 (diff) | |
download | txr-c6c05649f5d3890281e6fe95694794d39f6f0841.tar.gz txr-c6c05649f5d3890281e6fe95694794d39f6f0841.tar.bz2 txr-c6c05649f5d3890281e6fe95694794d39f6f0841.zip |
Reveal struct winsize on Solaris.
On Solaris 10, we need __EXTENSIONS__ defined to make
struct winsize appear out of <termios.h>.
This commit adds detection for what preprocessor symbol needs
to be defined for struct winsize to appear, if it appears at
all. Then this symbol is defined on the compiler command line
when compiling linenoise.
* Makefile (CFLAGS): Add -D$(termios_define) for
linenoise.o target.
* configure (have_winsize, termios_define): New variables.
Detect whether struct winsize is available, and what
preprocessor symbol, if any, is required to reveal the
feature.
* linenoise/linenoise.c: Need to include TXR's "config.h"
for HAVE_WINSIZE.
(get_columns): Reorganized so that use of struct winsize
is guarded by HAVE_WINSIZE and fallback code is used if
either obtaining the size fails or the feature is completely
unavailable.
Diffstat (limited to 'linenoise/linenoise.c')
-rw-r--r-- | linenoise/linenoise.c | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/linenoise/linenoise.c b/linenoise/linenoise.c index 63abef6c..791d99ed 100644 --- a/linenoise/linenoise.c +++ b/linenoise/linenoise.c @@ -53,6 +53,7 @@ #include <sys/ioctl.h> #include <unistd.h> #include <signal.h> +#include "config.h" #include "linenoise.h" #define LINENOISE_DEFAULT_HISTORY_MAX_LEN 100 @@ -211,10 +212,16 @@ static int get_cursor_position(int ifd, int ofd) { /* Try to get the number of columns in the current terminal, or assume 80 * if it fails. */ static int get_columns(int ifd, int ofd) { +#if HAVE_WINSIZE struct winsize ws; - if (ioctl(1, TIOCGWINSZ, &ws) == -1 || ws.ws_col == 0) { - /* ioctl() failed. Try to query the terminal itself. */ + if (ioctl(1, TIOCGWINSZ, &ws) == 0 && ws.ws_col != 0) + return ws.ws_col; +#endif + + { + /* ioctl() failed or we don't have struct winsize. + Try to query the terminal itself. */ int start, cols; /* Get the initial position so we can restore it later. */ @@ -235,8 +242,6 @@ static int get_columns(int ifd, int ofd) { } } return cols; - } else { - return ws.ws_col; } failed: |