From: Nguyễn Thái Ngọc Duy Date: Mon, 11 Jan 2010 10:41:01 +0000 (+0700) Subject: Add missing #include to support TIOCGWINSZ on Solaris X-Git-Tag: v1.6.6.2~7^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/eb80042c6a631aee74bd0d1b1dd845784e9788cd Add missing #include to support TIOCGWINSZ on Solaris On Linux TIOCGWINSZ is defined somehwere in ioctl.h, which is already included. On Solaris we also need to include termios.h. Without this term_columns() in help.c will think TIOCGWINSZ is not supported and always return 80 columns. Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/git-compat-util.h b/git-compat-util.h index 5c596875c2..a979e41c15 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -96,6 +96,7 @@ #include #include #include +#include #ifndef NO_SYS_SELECT_H #include #endif