From: Jeff Layton Date: Tue, 29 May 2012 17:53:09 +0000 (-0400) Subject: autoconf: make the test for prctl have an effect X-Git-Tag: debian/1%1.2.8-1~11^2^2~116 X-Git-Url: https://git.decadent.org.uk/gitweb/?p=nfs-utils.git;a=commitdiff_plain;h=7e9c0f760397d7e8fa78bdeefffc14eb8269925b autoconf: make the test for prctl have an effect We currently test to ensure that prctl() is available, but the results of that test are a no-op either way. statd calls prctl() unconditionally, so make configure bail out if prctl() isn't available since the build will fail in that event anyway. Cc: Chuck Lever Signed-off-by: Jeff Layton Signed-off-by: Steve Dickson --- diff --git a/aclocal/libcap.m4 b/aclocal/libcap.m4 index 68a624c..f8a0ed1 100644 --- a/aclocal/libcap.m4 +++ b/aclocal/libcap.m4 @@ -3,7 +3,7 @@ dnl AC_DEFUN([AC_LIBCAP], [ dnl look for prctl - AC_CHECK_FUNC([prctl], , ) + AC_CHECK_FUNC([prctl], , AC_MSG_ERROR([prctl syscall is not available])) AC_ARG_ENABLE([caps], [AS_HELP_STRING([--disable-caps], [Disable capabilities support])])