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
14 ], ac_cv_have_struct_mntent=yes, ac_cv_have_struct_mntent=no)
16 if test "$ac_cv_have_struct_mntent" = yes
18 AC_DEFINE(HAVE_STRUCT_MNTENT)
21 dnl ======================================================================