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