Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / struct_nfs_gfs_mount.m4
blob026d37935d4f3e808196bb89c0d6f48ef4400390
1 dnl ######################################################################
2 dnl Find if struct nfs_gfs_mount exists anywhere in typical headers
3 AC_DEFUN([AMU_STRUCT_NFS_GFS_MOUNT],
5 dnl make sure this is called before [AC_TYPE_NFS_FH]
6 AC_BEFORE([$0], [AC_TYPE_NFS_FH])
7 AC_BEFORE([$0], [AC_STRUCT_FIELD_NFS_FH])
8 AC_CACHE_CHECK(for struct nfs_gfs_mount,
9 ac_cv_have_struct_nfs_gfs_mount,
11 # try to compile a program which may have a definition for the structure
12 AC_TRY_COMPILE_NFS(
13 [ struct nfs_gfs_mount ngm;
14 ], ac_cv_have_struct_nfs_gfs_mount=yes, ac_cv_have_struct_nfs_gfs_mount=no)
16 if test "$ac_cv_have_struct_nfs_gfs_mount" = yes
17 then
18   AC_DEFINE(HAVE_STRUCT_NFS_GFS_MOUNT)
19   AC_DEFINE(nfs_args_t, struct nfs_gfs_mount)
22 dnl ======================================================================