X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/376eafbf00a5abe767ca04714959d532d1aca19b..c24e27c631bae3139724e5a0951a12a956353bca:/unix/configure.ac diff --git a/unix/configure.ac b/unix/configure.ac index 699e6ef8..5b0c0c9e 100644 --- a/unix/configure.ac +++ b/unix/configure.ac @@ -14,7 +14,7 @@ if test "X$GCC" = Xyes; then CFLAGS="$CFLAGS -Wall -Werror" fi -AC_CHECK_HEADERS([utmpx.h],,,[ +AC_CHECK_HEADERS([utmpx.h sys/select.h],,,[ #include #include ]) @@ -23,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 @@ -39,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 ])