2009-01-20 21:05:33 +00:00
|
|
|
# inet_ntop.m4 serial 8
|
|
|
|
dnl Copyright (C) 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
|
2007-12-05 21:35:32 +00:00
|
|
|
dnl This file is free software; the Free Software Foundation
|
|
|
|
dnl gives unlimited permission to copy and/or distribute it,
|
|
|
|
dnl with or without modifications, as long as this notice is preserved.
|
|
|
|
|
|
|
|
AC_DEFUN([gl_INET_NTOP],
|
|
|
|
[
|
2008-04-30 16:11:08 +00:00
|
|
|
dnl Persuade Solaris <arpa/inet.h> to declare inet_ntop.
|
|
|
|
AC_REQUIRE([gl_USE_SYSTEM_EXTENSIONS])
|
|
|
|
|
2008-10-28 17:47:12 +00:00
|
|
|
gl_REPLACE_ARPA_INET_H
|
2008-04-29 19:52:26 +00:00
|
|
|
|
2009-01-20 21:05:33 +00:00
|
|
|
AC_REPLACE_FUNCS([inet_ntop])
|
2007-12-05 21:35:32 +00:00
|
|
|
gl_PREREQ_INET_NTOP
|
|
|
|
])
|
|
|
|
|
2008-04-29 19:52:26 +00:00
|
|
|
# Prerequisites of lib/inet_ntop.c.
|
2007-12-05 21:35:32 +00:00
|
|
|
AC_DEFUN([gl_PREREQ_INET_NTOP], [
|
|
|
|
AC_CHECK_DECLS([inet_ntop],,,[#include <arpa/inet.h>])
|
2008-05-09 13:46:09 +00:00
|
|
|
if test $ac_cv_have_decl_inet_ntop = no; then
|
|
|
|
HAVE_DECL_INET_NTOP=0
|
|
|
|
fi
|
2007-12-05 21:35:32 +00:00
|
|
|
AC_REQUIRE([gl_SOCKET_FAMILIES])
|
|
|
|
AC_REQUIRE([AC_C_RESTRICT])
|
|
|
|
])
|