No empty .Rs/.Re
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / try_compile_nfs.m4
blobd04e19619fa5cb188fd4217da4e4648d028872c3
1 dnl ######################################################################
2 dnl Compile a program with NFS headers to try and find a feature.
3 dnl The headers part are fixed.  Only three arguments are allowed:
4 dnl [$1] is the program to compile (2nd arg to AC_TRY_COMPILE)
5 dnl [$2] action to take if the program compiled (3rd arg to AC_TRY_COMPILE)
6 dnl [$3] action to take if program did not compile (4rd arg to AC_TRY_COMPILE)
7 AC_DEFUN([AC_TRY_COMPILE_NFS],
8 [# try to compile a program which may have a definition for a structure
9 AC_TRY_COMPILE(
10 AMU_MOUNT_HEADERS
11 , [$1], [$2], [$3])
13 dnl ======================================================================