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