summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bootstrap.conf1
-rw-r--r--m4/jm-macros.m43
-rw-r--r--src/ls.c4
-rw-r--r--src/stty.c4
4 files changed, 4 insertions, 8 deletions
diff --git a/bootstrap.conf b/bootstrap.conf
index e84424a99..920fe63db 100644
--- a/bootstrap.conf
+++ b/bootstrap.conf
@@ -207,6 +207,7 @@ gnulib_modules="
sys_ioctl
sys_stat
sys_wait
+ termios
timespec
tzset
uname
diff --git a/m4/jm-macros.m4 b/m4/jm-macros.m4
index 20b9af9a4..6faf08ac0 100644
--- a/m4/jm-macros.m4
+++ b/m4/jm-macros.m4
@@ -1,4 +1,4 @@
-#serial 109 -*- autoconf -*-
+#serial 110 -*- autoconf -*-
dnl Misc type-related macros for coreutils.
@@ -176,7 +176,6 @@ AC_DEFUN([gl_CHECK_ALL_HEADERS],
sys/resource.h \
sys/systeminfo.h \
syslog.h \
- termios.h \
)
AC_CHECK_HEADERS([sys/sysctl.h], [], [],
[AC_INCLUDES_DEFAULT
diff --git a/src/ls.c b/src/ls.c
index 6e3e836cb..f861df91a 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -39,9 +39,7 @@
#include <config.h>
#include <sys/types.h>
-#if HAVE_TERMIOS_H
-# include <termios.h>
-#endif
+#include <termios.h>
#if HAVE_STROPTS_H
# include <stropts.h>
#endif
diff --git a/src/stty.c b/src/stty.c
index 71045c281..5d9d4f0c0 100644
--- a/src/stty.c
+++ b/src/stty.c
@@ -36,9 +36,7 @@
#include <stdio.h>
#include <sys/types.h>
-#if HAVE_TERMIOS_H
-# include <termios.h>
-#endif
+#include <termios.h>
#if HAVE_STROPTS_H
# include <stropts.h>
#endif