From: Jim Meyering Date: Sun, 27 May 2001 13:45:39 +0000 (+0000) Subject: (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx. X-Git-Tag: CPPI-1_9~38 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=0e94296ac1e930cec0e5585686b8a2d3e18499c2;p=thirdparty%2Fcoreutils.git (jm_PREREQ_READUTMP): Check for ut_type in struct utmpx. Check for ut_type in struct utmp. --- diff --git a/m4/prereq.m4 b/m4/prereq.m4 index e6979b460c..cfa5aad05a 100644 --- a/m4/prereq.m4 +++ b/m4/prereq.m4 @@ -1,4 +1,4 @@ -#serial 18 +#serial 19 dnl These are the prerequisite macros for files in the lib/ dnl directories of the fileutils, sh-utils, and textutils packages. @@ -109,6 +109,8 @@ $ac_includes_default AC_CHECK_MEMBERS([struct utmp.ut_user],,,[$utmp_includes]) AC_CHECK_MEMBERS([struct utmpx.ut_name],,,[$utmp_includes]) AC_CHECK_MEMBERS([struct utmp.ut_name],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmpx.ut_type],,,[$utmp_includes]) + AC_CHECK_MEMBERS([struct utmp.ut_type],,,[$utmp_includes]) AC_LIBOBJ(readutmp) fi ])