You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
482 B
16 lines
482 B
7 months ago
|
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)
|
||
|
])
|