From 0a2a8c5a01011ec2343f80cbed99054e88392665 Mon Sep 17 00:00:00 2001 From: "Yann E. MORIN" Date: Tue, 6 Jan 2015 23:36:27 +0100 Subject: configure: be more laxist on the required libtirpc version Currently, we check for libtirpc >= 0.2.4 with pkg-config, because that is the one version I had to test against. As reported on the list, however, older versions are also supported. Relax the check to not require a version at all, and accept any version of libtirpc. Reported-by: Chuck Lever Signed-off-by: "Yann E. MORIN" Cc: Steve Dickson Signed-off-by: Steve Dickson --- aclocal/libtirpc.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aclocal/libtirpc.m4 b/aclocal/libtirpc.m4 index ebc1bea..e7e6417 100644 --- a/aclocal/libtirpc.m4 +++ b/aclocal/libtirpc.m4 @@ -5,7 +5,7 @@ AC_DEFUN([AC_LIBTIRPC], [ PKG_PROG_PKG_CONFIG([0.9.0]) AS_IF( [test "$enable_tirpc" != "no"], - [PKG_CHECK_MODULES([TIRPC], [libtirpc >= 0.2.4], + [PKG_CHECK_MODULES([TIRPC], [libtirpc], [LIBTIRPC="${TIRPC_LIBS}" AM_CPPFLAGS="${AM_CPPFLAGS} ${TIRPC_CFLAGS}" AC_DEFINE([HAVE_LIBTIRPC], [1], -- cgit