xref: /netbsd-src/external/bsd/am-utils/dist/m4/macros/type_rpcvers_t.m4 (revision a53f50b9b44dc9467ccc9c464999b1d1c509cb0c)
1dnl ######################################################################
2dnl check for type of rpcvers_t (usually in <rpc/types.h>)
3AC_DEFUN([AMU_TYPE_RPCVERS_T],
4[AC_CHECK_TYPE(rpcvers_t, ,
5[AC_DEFINE_UNQUOTED(rpcvers_t, unsigned long, [Check if rpcvers_t is defined in <rpc/types.h>])],
6[
7#ifdef HAVE_RPC_TYPES_H
8# include <rpc/types.h>
9#endif /* HAVE_RPC_TYPES_H */
10])])
11dnl ======================================================================
12