mirror of
https://git.openafs.org/openafs.git
synced 2025-01-18 15:00:12 +00:00
Use termios.h for winsize test where available
The configure test for 'winsize' existence was using sys/termios.h, but some platforms (AIX) have termios.h but no sys/termios.h. So, use termios.h instead where available. Change-Id: I284b7fa27ceeed84d9e14b62032176846d764bf2 Reviewed-on: http://gerrit.openafs.org/3258 Reviewed-by: Derrick Brashear <shadow@dementia.org> Tested-by: Derrick Brashear <shadow@dementia.org>
This commit is contained in:
parent
6f1da57603
commit
3f4460e1e9
@ -1403,7 +1403,11 @@ AC_CHECK_TYPE([socklen_t],[],
|
||||
AC_CHECK_TYPES(off64_t)
|
||||
AC_CHECK_TYPES([ssize_t], [], [], [#include <unistd.h>])
|
||||
AC_CHECK_TYPES([struct winsize], [], [], [
|
||||
#include <sys/termios.h>
|
||||
#ifdef HAVE_TERMIOS_H
|
||||
# include <termios.h>
|
||||
#else
|
||||
# include <sys/termios.h>
|
||||
#endif
|
||||
#include <sys/ioctl.h>])
|
||||
AC_CHECK_TYPES([sa_family_t, socklen_t, struct sockaddr,
|
||||
struct sockaddr_storage],
|
||||
|
Loading…
Reference in New Issue
Block a user