The current code bails out if libtirpc is not found, making it a mandatory dependency of nfs-utils, which it is not: it is only an optional dependency. The culprit (introduced by me) is the action-if-not-found in PKG_CHECK_MODULES, that improerly checks the value of the --enable-tirpc flag. Fix that by checking against a 'yes'. Any other value means either 'auto' (in which case we do not want to fail), or 'no' (in which case we do not even run the test to start with). Signed-off-by: "Yann E. MORIN" <yann.morin.1998@xxxxxxx> Cc: Chuck Lever <check.lever@xxxxxxxxxx> 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 ebc1bea..c46f16a 100644 --- a/aclocal/libtirpc.m4 +++ b/aclocal/libtirpc.m4 @@ -10,7 +10,7 @@ AC_DEFUN([AC_LIBTIRPC], [ AM_CPPFLAGS="${AM_CPPFLAGS} ${TIRPC_CFLAGS}" AC_DEFINE([HAVE_LIBTIRPC], [1], [Define to 1 if you have and wish to use libtirpc.])], - [AS_IF([test "$enable_tirpc" != "no"], [AC_MSG_ERROR([libtirpc not found.])], + [AS_IF([test "$enable_tirpc" = "yes"], [AC_MSG_ERROR([libtirpc not found.])], [LIBTIRPC=""])])]) AC_SUBST([AM_CPPFLAGS]) -- 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