X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=unix%2Fconfigure.ac;h=5b0c0c9ece437456b7e3d1dcf71eccfadc90f4c4;hb=12e019bafc75cb441e965c63e15dfceeaf71ca1e;hp=0cbd5ceeb8b9782a86f94860b2afab2d9d08900c;hpb=62b943922e8bb54a43e874cb82f4cfd35b8c9376;p=PuTTY.git diff --git a/unix/configure.ac b/unix/configure.ac index 0cbd5cee..5b0c0c9e 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -14,8 +14,7 @@ if test "X$GCC" = Xyes; then CFLAGS="$CFLAGS -Wall -Werror" fi -AC_CHECK_HEADERS([sys/sockio.h],,,[ ]) -AC_CHECK_HEADERS([utmpx.h],,,[ +AC_CHECK_HEADERS([utmpx.h sys/select.h],,,[ #include #include ]) @@ -24,7 +23,7 @@ AC_SUBST([all_targets]) AC_SEARCH_LIBS([socket], [xnet]) -AC_CHECK_FUNCS([getaddrinfo ptsname setresuid strsignal]) +AC_CHECK_FUNCS([getaddrinfo ptsname setresuid strsignal updwtmpx]) AC_OUTPUT @@ -40,10 +39,13 @@ AH_BOTTOM([ #ifndef HAVE_STRSIGNAL # define HAVE_NO_STRSIGNAL #endif -#ifndef HAVE_UTMPX_H +#if !defined(HAVE_UTMPX_H) || !defined(HAVE_UPDWTMPX) # define OMIT_UTMP #endif #ifndef HAVE_PTSNAME # define BSD_PTYS #endif +#ifndef HAVE_SYS_SELECT_H +# define HAVE_NO_SYS_SELECT_H +#endif ])