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
11 ac_cv_nfs_hn_dref_style=linux ;;
13 ac_cv_nfs_hn_dref_style=isc3 ;;
15 ac_cv_nfs_hn_dref_style=default ;;
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 ======================================================================