diff --git a/src/cf/linux-test1.m4 b/src/cf/linux-test1.m4 index 6c096a4fa4..106c5b59a1 100644 --- a/src/cf/linux-test1.m4 +++ b/src/cf/linux-test1.m4 @@ -127,11 +127,16 @@ AC_DEFUN([AC_CHECK_LINUX_FUNC], dnl AC_CHECK_LINUX_STRUCT([structure], [element], [includes]) AC_DEFUN([AC_CHECK_LINUX_STRUCT], - [AC_CHECK_LINUX_BUILD([for $2 in struct $1], - [ac_cv_linux_struct_$1_has_$2], - [#include ], - [struct $1 _test; printk("%x\n", &_test.$2); ], - AS_TR_CPP(STRUCT_$1_HAS_$2), - [Define if kernel struct $1 has the $2 element]) + [AC_CHECK_LINUX_TYPED_STRUCT([struct $1], [$2], [$3]) + ]) + +dnl AC_CHECK_LINUX_TYPED_STRUCT([structure], [element], [includes]) +AC_DEFUN([AC_CHECK_LINUX_TYPED_STRUCT], + [AC_CHECK_LINUX_BUILD([for $2 in $1], + [ac_cv_linux_$1_has_$2], + [#include ], + [$1 _test; printk("%x\n", &_test.$2); ], + AS_TR_CPP($1_HAS_$2), + [Define if kernel typedef'd $1 has the $2 element]) ])