- Timestamp:
- Dec 9, 2011, 12:23:18 AM (8 years ago)
- Location:
- neercs/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
neercs/trunk/configure.ac
r4790 r4791 71 71 AC_MSG_ERROR([you need libcaca version 0.99.beta17 or later])]) 72 72 73 AC_CHECK_HEADERS( stdio.h pty.h sys/ioctl.h sys/ptrace.h sys/stat.h sys/syscall.h sys/user.h sys/wait.h linux/kdev_t.h linux/major.h security/pam_appl.h security/pam_misc.h)73 AC_CHECK_HEADERS(libutil.h util.h stdio.h pty.h sys/ioctl.h sys/ptrace.h sys/stat.h sys/syscall.h sys/user.h sys/wait.h linux/kdev_t.h linux/major.h security/pam_appl.h security/pam_misc.h) 74 74 75 75 case $host_os in -
neercs/trunk/src/term.c
r4366 r4791 19 19 #if defined HAVE_PTY_H 20 20 # include <pty.h> /* for openpty and forkpty */ 21 #else 22 # include <util.h> /* for OS X */ 21 #endif 22 #if defined HAVE_UTIL_H 23 # include <util.h> /* for OS X, OpenBSD and NetBSD */ 24 #endif 25 #if defined HAVE_LIBUTIL_H 26 # include <libutil.h> /* for FreeBSD */ 23 27 #endif 24 28 #include <unistd.h>
Note: See TracChangeset
for help on using the changeset viewer.