Fix for ac_struct_foo_has_member_bar
authoraland <aland>
Tue, 2 Sep 2003 15:03:00 +0000 (15:03 +0000)
committeraland <aland>
Tue, 2 Sep 2003 15:03:00 +0000 (15:03 +0000)
Reported by Jan Berkel

aclocal.m4
configure
configure.in

index 4a0ffdd..01cce8d 100644 (file)
@@ -4134,7 +4134,7 @@ dnl #  Look for a header file in a number of places.
 dnl #
 dnl #  Usage:  AC_CHECK_STRUCT_HAS_MEMBER([#include <foo.h>], [struct foo], member)
 dnl #  If the member is defined, then the variable
-dnl #     ac_cv_type_struct_foo_member is set to 'yes'
+dnl #     ac_cv_type_struct_foo_has_member is set to 'yes'
 dnl #
 AC_DEFUN(AC_CHECK_STRUCT_HAS_MEMBER, [
   AC_MSG_CHECKING([for $3 in $2])
index 3ab2641..5eff946 100755 (executable)
--- a/configure
+++ b/configure
@@ -731,7 +731,7 @@ fi
 
 
 
-# From configure.in Revision: 1.181 
+# From configure.in Revision: 1.182 
 RADIUSD_MAJOR_VERSION=1
 RADIUSD_MINOR_VERSION=0.0-pre0
 RADIUSD_VERSION="${RADIUSD_MAJOR_VERSION}.${RADIUSD_MINOR_VERSION}"
@@ -7445,7 +7445,7 @@ rm -f conftest*
     eval "ac_cv_type_${ac_safe_type}_has_ut_xtime="
  fi
 
- if test "x$ac_cv_type_struct_utmpx_ut_xtime" = "x"
+ if test "x$ac_cv_type_struct_utmpx_has_ut_xtime" = "x"
  then
    cat >> confdefs.h <<\EOF
 #define ut_xtime ut_tv.tv_sec
index 8c9df97..59ac7cc 100644 (file)
@@ -592,7 +592,7 @@ dnl # if not, set it to define ut_xtime == ut_tv.tv_sec
 if test "x$ac_cv_header_utmpx_h" = "xyes"
 then
  AC_CHECK_STRUCT_HAS_MEMBER([#include <utmpx.h>], [struct utmpx], ut_xtime)
- if test "x$ac_cv_type_struct_utmpx_ut_xtime" = "x"
+ if test "x$ac_cv_type_struct_utmpx_has_ut_xtime" = "x"
  then
    AC_DEFINE(ut_xtime,ut_tv.tv_sec)
  fi