blob: baa5239dcd84e9c35bcf95f429538b9009dcefc1 [file] [log] [blame]
dnl SPDX-License-Identifier: GPL-2.0-or-later
dnl Copyright (c) 2014 Oracle and/or its affiliates. All Rights Reserved.
AC_DEFUN([LTP_CHECK_TIRPC],[
TIRPC_CPPFLAGS=""
TIRPC_LIBS=""
AC_CHECK_HEADERS([tirpc/netconfig.h netconfig.h], [
TIRPC_CPPFLAGS="-I${SYSROOT}/usr/include/tirpc"
AC_DEFINE(HAVE_LIBTIRPC, 1, [Define to 1 if you have libtirpc headers installed])
AC_CHECK_LIB(tirpc, rpcb_set, [TIRPC_LIBS="-ltirpc"])])
AC_SUBST(TIRPC_CPPFLAGS)
AC_SUBST(TIRPC_LIBS)
])