linux-nfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] configure: fix AM_CONDITIONAL(CONFIG_NFSIDMAP)
@ 2011-01-19 15:46 Karel Zak
  0 siblings, 0 replies; only message in thread
From: Karel Zak @ 2011-01-19 15:46 UTC (permalink / raw)
  To: linux-nfs; +Cc: Steve Dickson, Karel Zak

./configure --disable-gss --disable-nfsv4
[...]
configure: error: conditional "CONFIG_NFSIDMAP" was never defined.

Signed-off-by: Karel Zak <kzak@redhat.com>
---
 configure.ac |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 92833e3..2e074d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -247,9 +247,6 @@ if test "$enable_nfsv4" = yes; then
   dnl check for nfsidmap libraries and headers
   AC_LIBNFSIDMAP
 
-  dnl enable nfsidmap when its support by libnfsidmap
-  AM_CONDITIONAL(CONFIG_NFSIDMAP, [test "$enable_nfsidmap" = "yes"])
-
   dnl check for the keyutils libraries and headers
   AC_KEYUTILS
 
@@ -260,6 +257,9 @@ if test "$enable_nfsv4" = yes; then
   fi
 fi
 
+dnl enable nfsidmap when its support by libnfsidmap
+AM_CONDITIONAL(CONFIG_NFSIDMAP, [test "$enable_nfsidmap" = "yes"])
+
 if test "$knfsd_cv_glibc2" = no; then
     AC_CHECK_LIB(bsd, daemon, [LIBBSD="-lbsd"])
 fi
-- 
1.7.3.3


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2011-01-19 15:46 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-19 15:46 [PATCH] configure: fix AM_CONDITIONAL(CONFIG_NFSIDMAP) Karel Zak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).