aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--configure.ac2
-rw-r--r--expand.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 34f25e1f..31675186 100644
--- a/configure.ac
+++ b/configure.ac
@@ -511,7 +511,7 @@ LIBS=$LIBS_COMMON
# Check presense of various header files
#
-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])
+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 sys/sysctl.h])
if test x$local_gettext != xno; then
AC_CHECK_HEADERS([libintl.h])
diff --git a/expand.cpp b/expand.cpp
index 74e50102..6dfa9e44 100644
--- a/expand.cpp
+++ b/expand.cpp
@@ -18,7 +18,9 @@ parameter expansion.
#include <limits.h>
#include <sys/param.h>
#include <sys/types.h>
+#ifdef HAVE_SYS_SYSCTL_H
#include <sys/sysctl.h>
+#endif
#include <termios.h>
#include <dirent.h>
#include <sys/stat.h>