From fd6e8c85fd56f281de94b4c46b20c5c78a394e10 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Sat, 28 Apr 2001 02:20:57 +0000 Subject: [PATCH] * configure.in(K5_CHECK_UT_MEMBER): Fix typo in previous; make sure to include the correct header when checking structure members. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13219 dc483132-0cff-0310-8789-dd5450dbe970 --- src/util/pty/ChangeLog | 4 ++++ src/util/pty/configure.in | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog index f1877a104..bae05fd13 100644 --- a/src/util/pty/ChangeLog +++ b/src/util/pty/ChangeLog @@ -1,5 +1,9 @@ 2001-04-27 Tom Yu + * configure.in(K5_CHECK_UT_MEMBER): Fix typo in previous; make + sure to include the correct header when checking structure + members. + * configure.in: Many changes to support the rewriting of the utmp pieces of libpty. Do a large amount of checking for consistency of various utmp and utmpx APIs as currently understood. See rant diff --git a/src/util/pty/configure.in b/src/util/pty/configure.in index 0ad74238c..3d3e1ec6e 100644 --- a/src/util/pty/configure.in +++ b/src/util/pty/configure.in @@ -76,7 +76,7 @@ AC_DEFUN(K5_CHECK_UT_MEMBER, [AC_MSG_CHECKING([for $2 in struct $1]) AC_CACHE_VAL([krb5_cv_struct_$1_$2], [AC_TRY_COMPILE([#include -#include ], [struct $1 u; u.$2;], +#include <$1.h>], [struct $1 u; u.$2;], eval "krb5_cv_struct_$1_$2=yes", eval "krb5_cv_struct_$1_$2=no")]) if eval "test \"`echo '$krb5_cv_struct_'$1'_'$2`\" = yes"; then AC_MSG_RESULT(yes) -- 2.26.2