Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / struct_mntent.m4
blobd9f481194ddd10fa63f073665bbe452d6b0c4f39
1 dnl ######################################################################
2 dnl Find if struct mntent exists anywhere in mount.h or mntent.h headers
3 AC_DEFUN([AMU_STRUCT_MNTENT],
5 AC_CACHE_CHECK(for struct mntent,
6 ac_cv_have_struct_mntent,
8 # try to compile a program which may have a definition for the structure
9 AC_TRY_COMPILE(
10 AMU_MOUNT_HEADERS
13 struct mntent mt;
14 ], ac_cv_have_struct_mntent=yes, ac_cv_have_struct_mntent=no)
16 if test "$ac_cv_have_struct_mntent" = yes
17 then
18   AC_DEFINE(HAVE_STRUCT_MNTENT)
21 dnl ======================================================================