diff options
author | Chuck Lever <chuck.lever@oracle.com> | 2009-01-07 12:06:14 -0500 |
---|---|---|
committer | Steve Dickson <steved@redhat.com> | 2009-01-07 12:06:14 -0500 |
commit | aee8b1ab778f8e07b30305f10d4f9427023e314d (patch) | |
tree | 9e2e56ab8c48d147033f0d3561d0462a2bda68a8 | |
parent | 533e5a05a172306462ac6c11d222a18fe562ec6d (diff) | |
download | nfs-utils-aee8b1ab778f8e07b30305f10d4f9427023e314d.tar.gz nfs-utils-aee8b1ab778f8e07b30305f10d4f9427023e314d.tar.xz nfs-utils-aee8b1ab778f8e07b30305f10d4f9427023e314d.zip |
configure: Remove inet_ntop(3) check from configure.ac
nfs-utils no longer uses inet_ntop(3) so remove checks for it from
configure.ac.
Signed-off-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: Steve Dickson <steved@redhat.com>
-rw-r--r-- | configure.ac | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 7140f48..4448743 100644 --- a/configure.ac +++ b/configure.ac @@ -252,8 +252,6 @@ AC_CHECK_DECL([AI_ADDRCONFIG], [ #include <netdb.h> ] ) if test "$enable_ipv6" = yes; then - AC_CHECK_FUNC(inet_ntop, , , - AC_MSG_ERROR(Function 'inet_ntop' not found.)) AC_CHECK_FUNC(getnameinfo, , , AC_MSG_ERROR(Function 'getnameinfo' not found.)) AC_CHECK_LIB(tirpc, clnt_tli_create, , @@ -309,7 +307,7 @@ AC_FUNC_STAT AC_FUNC_VPRINTF AC_CHECK_FUNCS([alarm atexit dup2 fdatasync ftruncate getcwd \ gethostbyaddr gethostbyname gethostname getmntent \ - inet_ntop getnameinfo getrpcbyname \ + getnameinfo getrpcbyname \ bindresvport_sa getnetconfig \ clnt_create clnt_create_timed \ clnt_tli_create clnt_vc_create clnt_dg_create xdr_rpcb \ |