All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] nfs-utils: fix AC_CHECK_FUNC calls in configure.ac
@ 2009-03-16 18:51 Chuck Lever
       [not found] ` <20090316185007.13728.1047.stgit-07a7zB5ZJzbwdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: Chuck Lever @ 2009-03-16 18:51 UTC (permalink / raw)
  To: steved; +Cc: jlayton, linux-nfs

From: Jeff Layton <jlayton@redhat.com>

AC_CHECK_FUNC and AC_CHECK_FUNCS take 3 args. Any ones beyond that are
ignored. In several places, we're passing the "action-if-not-found" in
as the 4th arg so it's being ignored.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
---

Steve-

Thanks for committing the other patches.  Here's one more nit that Jeff
found recently.

 aclocal/ipv6.m4 |    2 +-
 configure.ac    |    6 +++---
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/aclocal/ipv6.m4 b/aclocal/ipv6.m4
index 0564b3e..ba9dcc2 100644
--- a/aclocal/ipv6.m4
+++ b/aclocal/ipv6.m4
@@ -15,7 +15,7 @@ AC_DEFUN([AC_IPV6], [
     fi
 
     dnl IPv6-enabled networking functions required for IPv6
-    AC_CHECK_FUNCS([getnameinfo bindresvport_sa], , ,
+    AC_CHECK_FUNCS([getnameinfo bindresvport_sa], ,
                    [AC_MSG_ERROR([Missing functions needed for IPv6.])])
 
     dnl Need to detect presence of IPv6 networking at run time via
diff --git a/configure.ac b/configure.ac
index e34b7e2..f942238 100644
--- a/configure.ac
+++ b/configure.ac
@@ -185,13 +185,13 @@ AC_CHECK_FUNC([connect], ,
               [AC_CHECK_LIB([socket], [connect], [LIBSOCKET="-lsocket"],
                     [AC_MSG_ERROR([Function 'socket' not found.])], [$LIBNSL])])
 
-AC_CHECK_FUNC([getaddrinfo], , ,
+AC_CHECK_FUNC([getaddrinfo], ,
               [AC_MSG_ERROR([Function 'getaddrinfo' not found.])])
 
-AC_CHECK_FUNC([getrpcbynumber], , ,
+AC_CHECK_FUNC([getrpcbynumber], ,
               [AC_MSG_ERROR([Function 'getrpcbynumber' not found.])])
 
-AC_CHECK_FUNC([getservbyname], , ,
+AC_CHECK_FUNC([getservbyname], ,
               [AC_MSG_ERROR([Function 'getservbyname' not found.])])
 
 AC_CHECK_LIB([crypt], [crypt], [LIBCRYPT="-lcrypt"])


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] nfs-utils: fix AC_CHECK_FUNC calls in configure.ac
       [not found] ` <20090316185007.13728.1047.stgit-07a7zB5ZJzbwdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
@ 2009-04-04 11:53   ` Steve Dickson
  0 siblings, 0 replies; 2+ messages in thread
From: Steve Dickson @ 2009-04-04 11:53 UTC (permalink / raw)
  To: Chuck Lever; +Cc: jlayton, linux-nfs



Chuck Lever wrote:
> From: Jeff Layton <jlayton@redhat.com>
> 
> AC_CHECK_FUNC and AC_CHECK_FUNCS take 3 args. Any ones beyond that are
> ignored. In several places, we're passing the "action-if-not-found" in
> as the 4th arg so it's being ignored.
> 
> Signed-off-by: Jeff Layton <jlayton@redhat.com>
> Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
> ---
> 
> Steve-
> 
> Thanks for committing the other patches.  Here's one more nit that Jeff
> found recently.
> 
>  aclocal/ipv6.m4 |    2 +-
>  configure.ac    |    6 +++---
>  2 files changed, 4 insertions(+), 4 deletions(-)
> 
> diff --git a/aclocal/ipv6.m4 b/aclocal/ipv6.m4
> index 0564b3e..ba9dcc2 100644
> --- a/aclocal/ipv6.m4
> +++ b/aclocal/ipv6.m4
> @@ -15,7 +15,7 @@ AC_DEFUN([AC_IPV6], [
>      fi
>  
>      dnl IPv6-enabled networking functions required for IPv6
> -    AC_CHECK_FUNCS([getnameinfo bindresvport_sa], , ,
> +    AC_CHECK_FUNCS([getnameinfo bindresvport_sa], ,
>                     [AC_MSG_ERROR([Missing functions needed for IPv6.])])
>  
>      dnl Need to detect presence of IPv6 networking at run time via
> diff --git a/configure.ac b/configure.ac
> index e34b7e2..f942238 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -185,13 +185,13 @@ AC_CHECK_FUNC([connect], ,
>                [AC_CHECK_LIB([socket], [connect], [LIBSOCKET="-lsocket"],
>                      [AC_MSG_ERROR([Function 'socket' not found.])], [$LIBNSL])])
>  
> -AC_CHECK_FUNC([getaddrinfo], , ,
> +AC_CHECK_FUNC([getaddrinfo], ,
>                [AC_MSG_ERROR([Function 'getaddrinfo' not found.])])
>  
> -AC_CHECK_FUNC([getrpcbynumber], , ,
> +AC_CHECK_FUNC([getrpcbynumber], ,
>                [AC_MSG_ERROR([Function 'getrpcbynumber' not found.])])
>  
> -AC_CHECK_FUNC([getservbyname], , ,
> +AC_CHECK_FUNC([getservbyname], ,
>                [AC_MSG_ERROR([Function 'getservbyname' not found.])])
>  
>  AC_CHECK_LIB([crypt], [crypt], [LIBCRYPT="-lcrypt"])
> 
Committed..

steved

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2009-04-04 11:56 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-16 18:51 [PATCH] nfs-utils: fix AC_CHECK_FUNC calls in configure.ac Chuck Lever
     [not found] ` <20090316185007.13728.1047.stgit-07a7zB5ZJzbwdl/1UfZZQIVfYA8g3rJ/@public.gmane.org>
2009-04-04 11:53   ` Steve Dickson

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.