Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git] / external / bsd / am-utils / dist / m4 / macros / try_compile_rpc.m4
blob5c95348ca0b86c1f4897faa85cfebdf5309972f5
1 dnl ######################################################################
2 dnl Compile a program with RPC 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_RPC],
8 [# try to compile a program which may have a definition for a structure
9 AC_TRY_COMPILE(
11 #ifdef HAVE_SYS_TYPES_H
12 # include <sys/types.h>
13 #endif /* HAVE_SYS_TYPES_H */
14 #ifdef HAVE_RPC_RPC_H
15 # include <rpc/rpc.h>
16 #endif /* HAVE_RPC_RPC_H */
17 /* Prevent multiple inclusion on Ultrix 4 */
18 #if defined(HAVE_RPC_XDR_H) && !defined(__XDR_HEADER__)
19 # include <rpc/xdr.h>
20 #endif /* defined(HAVE_RPC_XDR_H) && !defined(__XDR_HEADER__) */
21 ], [$1], [$2], [$3])
23 dnl ======================================================================