aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar David Adam (zanchey) <zanchey@ucc.gu.uwa.edu.au>2013-02-24 23:00:54 +0800
committerGravatar ridiculousfish <corydoras@ridiculousfish.com>2013-03-05 12:25:00 -0800
commitdaf5ef1bbd4b8ceb005294c512004010010897b8 (patch)
tree8c87ace4aa251b100a2aa4d1aea103481bf269d4
parent85a5319c4b789dc1682d0fd10891e488c923791e (diff)
Kill termio.h and sys/termios.h
On FreeBSD, compilation complains that "this file includes <sys/termios.h> which is deprecated, use <termios.h> instead". On Linux and FreeBSD, <sys/termios.h> literally just pulls in <termios.h>. On OS X and Solaris, <termios.h> pulls in <sys/termios.h>. <termio.h> doesn't exist on FreeBSD or Mac OS X, and on Linux is marked as deprecated and just includes <termios.h>. It does exist on Solaris, but no `struct termio` is ever actually used in the codebase.
-rw-r--r--common.cpp8
-rw-r--r--configure.ac13
-rw-r--r--env.cpp4
-rw-r--r--fallback.cpp4
-rw-r--r--fish_pager.cpp7
-rw-r--r--input.cpp9
-rw-r--r--io.cpp8
-rw-r--r--output.cpp8
-rw-r--r--proc.cpp8
-rw-r--r--reader.cpp8
-rw-r--r--screen.cpp8
11 files changed, 3 insertions, 82 deletions
diff --git a/common.cpp b/common.cpp
index e5b298ee..b25e6c96 100644
--- a/common.cpp
+++ b/common.cpp
@@ -25,10 +25,6 @@ parts of fish.
#include <dirent.h>
#include <sys/types.h>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
@@ -56,10 +52,6 @@ parts of fish.
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/configure.ac b/configure.ac
index c94fa5a6..f5a54837 100644
--- a/configure.ac
+++ b/configure.ac
@@ -537,7 +537,7 @@ LIBS=$LIBS_COMMON
# Check presense of various header files
#
-AC_CHECK_HEADERS([getopt.h termio.h sys/resource.h term.h ncurses/term.h ncurses.h curses.h stropts.h siginfo.h sys/select.h sys/ioctl.h sys/termios.h execinfo.h spawn.h])
+AC_CHECK_HEADERS([getopt.h termios.h sys/resource.h term.h ncurses/term.h ncurses.h curses.h stropts.h siginfo.h sys/select.h sys/ioctl.h execinfo.h spawn.h])
if test x$local_gettext != xno; then
AC_CHECK_HEADERS([libintl.h])
@@ -620,13 +620,6 @@ for i in "" "-D_POSIX_C_SOURCE=200112L" "-D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=2
#include <siginfo.h>
#endif
- #ifdef HAVE_SYS_TERMIOS_H
- /* Neither POSIX, C89 nor C99: a common extension.
- * For: TIOCGWINSZ and struct winsize (under at least
- * Solaris, NetBSD and (dual-listed) FreeBSD). */
- #include <sys/termios.h>
- #endif
-
#ifdef HAVE_SYS_IOCTL_H
/* As above (under at least Linux and FreeBSD). */
#include <sys/ioctl.h>
@@ -750,8 +743,8 @@ AC_LINK_IFELSE(
[
AC_LANG_PROGRAM(
[
- #ifdef HAVE_SYS_TERMIOS_H
- #include <sys/termios.h>
+ #ifdef HAVE_TERMIOS_H
+ #include <termios.h>
#endif
#ifdef HAVE_SYS_IOCTL_H
diff --git a/env.cpp b/env.cpp
index 5539218e..112b5cf6 100644
--- a/env.cpp
+++ b/env.cpp
@@ -25,10 +25,6 @@
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/fallback.cpp b/fallback.cpp
index b52a6330..2095a88c 100644
--- a/fallback.cpp
+++ b/fallback.cpp
@@ -33,10 +33,6 @@
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/fish_pager.cpp b/fish_pager.cpp
index fb819fab..fac70497 100644
--- a/fish_pager.cpp
+++ b/fish_pager.cpp
@@ -11,9 +11,6 @@
#include <sys/types.h>
#include <sys/stat.h>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
@@ -32,10 +29,6 @@
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/input.cpp b/input.cpp
index 9710db83..e23a1b7a 100644
--- a/input.cpp
+++ b/input.cpp
@@ -15,10 +15,6 @@
#include <sys/types.h>
#include <sys/stat.h>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
@@ -32,11 +28,6 @@
#include <curses.h>
#endif
-
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/io.cpp b/io.cpp
index b7df0416..eb7d432d 100644
--- a/io.cpp
+++ b/io.cpp
@@ -15,10 +15,6 @@ Utilities for io redirection.
#include <set>
#include <algorithm>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
@@ -32,10 +28,6 @@ Utilities for io redirection.
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/output.cpp b/output.cpp
index 3b5f9d4b..855eecdf 100644
--- a/output.cpp
+++ b/output.cpp
@@ -12,10 +12,6 @@
#include <sys/types.h>
#include <sys/stat.h>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
@@ -30,10 +26,6 @@
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/proc.cpp b/proc.cpp
index fdaaed8c..dd94da18 100644
--- a/proc.cpp
+++ b/proc.cpp
@@ -22,10 +22,6 @@ Some of the code in this file is based on code from the Glibc manual.
#include <sys/stat.h>
#include <algorithm>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
@@ -41,10 +37,6 @@ Some of the code in this file is based on code from the Glibc manual.
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/reader.cpp b/reader.cpp
index 824d8a27..2c7d5706 100644
--- a/reader.cpp
+++ b/reader.cpp
@@ -30,10 +30,6 @@ commence.
#include <sys/types.h>
#include <sys/stat.h>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#ifdef HAVE_SYS_IOCTL_H
#include <sys/ioctl.h>
#endif
@@ -53,10 +49,6 @@ commence.
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H
diff --git a/screen.cpp b/screen.cpp
index 3670f567..68f78ad7 100644
--- a/screen.cpp
+++ b/screen.cpp
@@ -15,10 +15,6 @@ efficient way for transforming that to the desired screen content.
#include <termios.h>
#include <sys/types.h>
-#ifdef HAVE_SYS_TERMIOS_H
-#include <sys/termios.h>
-#endif
-
#include <unistd.h>
#include <wctype.h>
@@ -28,10 +24,6 @@ efficient way for transforming that to the desired screen content.
#include <curses.h>
#endif
-#if HAVE_TERMIO_H
-#include <termio.h>
-#endif
-
#if HAVE_TERM_H
#include <term.h>
#elif HAVE_NCURSES_TERM_H