All of lore.kernel.org
 help / color / mirror / Atom feed
From: Steve Dickson <SteveD@redhat.com>
To: Steve Dickson <SteveD@redhat.com>
Cc: "Gabor Z. Papp" <gzp@papp.hu>, linux-nfs@vger.kernel.org
Subject: Re: nfs-utils 1.2.4
Date: Tue, 12 Jul 2011 17:22:25 -0400	[thread overview]
Message-ID: <4E1CBB11.2090309@RedHat.com> (raw)
In-Reply-To: <4E0E30A7.90209@RedHat.com>



On 07/01/2011 04:40 PM, Steve Dickson wrote:
> On 07/01/2011 02:36 AM, Gabor Z. Papp wrote:
>> lo lo,
>>
>> trying to configure nfs-utils 1.2.4 with the options below:
>>
>> --disable-gss --disable-kprefix --enable-mount --enable-nfsv3
>> --disable-nfsv4 --with-statduser=nobody --with-statedir=/var/lib/nfs"
>> --without-tcp-wrappers --disable-tirpc
>>
>> but getting the following error:
>>
>> [...]
>> checking size of socklen_t... 4
>> configure: error: conditional "CONFIG_NFSIDMAP" was never defined.
>> Usually this means the macro was only invoked conditionally.
> The following patch seems to take care of the problem... The 
> problem stemmed from the use of the --disable-nfsv4, which
> I will throw into my unit tests... Please let me know
> if this fixes the problem... 
> 
> steved.
> 
> 
> [PATCH] Make sure CONFIG_NFSIDMAP is always defined.
> 
> CONFIG_NFSIDMAP always need to be define either
> negatively or positive whether nfsv4 is or is not
> defined.
> 
> Signed-off-by: Steve Dickson <steved@redhat.com>
> ---
>  configure.ac |    6 +++---
>  1 files changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/configure.ac b/configure.ac
> index ca12f9e..f8b0796 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -249,6 +249,9 @@ AC_CHECK_FUNC([getservbyname], ,
>  
>  AC_CHECK_LIB([crypt], [crypt], [LIBCRYPT="-lcrypt"])
>  
> +dnl enable nfsidmap when its support by libnfsidmap
> +AM_CONDITIONAL(CONFIG_NFSIDMAP, [test "$enable_nfsidmap" = "yes"])
> +
>  if test "$enable_nfsv4" = yes; then
>    dnl check for libevent libraries and headers
>    AC_LIBEVENT
> @@ -256,9 +259,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
>  
Committed....

steved.

      parent reply	other threads:[~2011-07-12 21:22 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-01  6:36 nfs-utils 1.2.4 Gabor Z. Papp
2011-07-01 20:40 ` Steve Dickson
2011-07-04  6:39   ` Gabor Z. Papp
2011-07-12 21:22   ` Steve Dickson [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E1CBB11.2090309@RedHat.com \
    --to=steved@redhat.com \
    --cc=gzp@papp.hu \
    --cc=linux-nfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.