Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / check_nfs_hn_dref.m4
blob9ed2695d264e66d13e8578f74f8c0d1f662d0c54
1 dnl ######################################################################
2 dnl check the correct way to dereference the hostname part of the nfs fhandle
3 AC_DEFUN([AMU_CHECK_NFS_HN_DREF],
5 AC_CACHE_CHECK(nfs hostname dereferencing style,
6 ac_cv_nfs_hn_dref_style,
8 # select the correct nfs address dereferencing style
9 case "${host_os_name}" in
10         linux* )
11                 ac_cv_nfs_hn_dref_style=linux ;;
12         isc3 )
13                 ac_cv_nfs_hn_dref_style=isc3 ;;
14         * )
15                 ac_cv_nfs_hn_dref_style=default ;;
16 esac
18 am_utils_nfs_hn_dref=$srcdir"/conf/hn_dref/hn_dref_"$ac_cv_nfs_hn_dref_style".h"
19 AC_SUBST_FILE(am_utils_nfs_hn_dref)
21 dnl ======================================================================