Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / struct_nfs_fh3.m4
blobba37e6da08ff5083334a11ca6c938f2f6b8c39a6
1 dnl ######################################################################
2 dnl Find the structure of an nfs filehandle.
3 dnl if found, defined am_nfs_fh3 to it, else leave it undefined.
4 dnl THE ORDER OF LOOKUPS IN THIS FILE IS VERY IMPORTANT!!!
5 AC_DEFUN([AMU_STRUCT_NFS_FH3],
7 AC_CACHE_CHECK(for type/structure of NFS V2 filehandle,
8 ac_cv_struct_nfs_fh3,
10 # try to compile a program which may have a definition for the type
11 dnl need a series of compilations, which will test out every possible type
12 dnl such as struct nfs_fh3, XXX - what else?, etc.
13 # set to a default value
14 ac_cv_struct_nfs_fh3=notfound
16 # look for "nfs_fh3"
17 if test "$ac_cv_struct_nfs_fh3" = notfound
18 then
19 AC_TRY_COMPILE_NFS(
20 [ nfs_fh3 nh;
21 ], ac_cv_struct_nfs_fh3="nfs_fh3_netbsd20", ac_cv_struct_nfs_fh3=notfound)
24 # look for "struct nfs_fh3"
25 if test "$ac_cv_struct_nfs_fh3" = notfound
26 then
27 AC_TRY_COMPILE_NFS(
28 [ struct nfs_fh3 nh;
29 ], ac_cv_struct_nfs_fh3="struct nfs_fh3", ac_cv_struct_nfs_fh3=notfound)
34 if test "$ac_cv_struct_nfs_fh3" != notfound
35 then
36   AC_DEFINE_UNQUOTED(am_nfs_fh3, $ac_cv_struct_nfs_fh3)
39 dnl ======================================================================