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 <check.lever@xxxxxxxxxx> Signed-off-by: "Yann E. MORIN" <yann.morin.1998@xxxxxxx> Cc: Steve Dickson <SteveD@xxxxxxxxxx> --- aclocal/libtirpc.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aclocal/libtirpc.m4 b/aclocal/libtirpc.m4 index c46f16a..9ea17c5 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], -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-nfs" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html