Commit 68f7b2b3 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

- Simplify check for getnameinfo

- Added check for getaddrinfo
parent 9ab66680
...@@ -391,24 +391,10 @@ if test $ac_cv_struct_sockaddr_storage = no; then ...@@ -391,24 +391,10 @@ if test $ac_cv_struct_sockaddr_storage = no; then
AC_DEFINE(ss_family, sa_family) AC_DEFINE(ss_family, sa_family)
fi fi
dnl getnameinfo, which implies {get,free}addrinfo, but not gai_strerror, dnl getaddrinfo, getnameinfo and gai_strerror check
dnl not available on win32 and -lresolv NOT needed on Solaris. dnl -lresolv is NOT needed on Solaris
AH_TEMPLATE(HAVE_GETNAMEINFO, dnl we purposedly make the test fail on Windows
[Define to 1 if you have the `getnameinfo' function.]) AC_CHECK_FUNCS([getaddrinfo getnameinfo gai_strerror])
AH_TEMPLATE(HAVE_GAI_STRERROR,
[Define to 1 if you have the `gai_strerror' function.])
AC_CACHE_CHECK([for getnameinfo], ac_cv_func_getnameinfo,
[AC_LINK_IFELSE([AC_LANG_PROGRAM([
[#include <sys/types.h>
# include <sys/socket.h>
# include <netdb.h>
#endif]
], [[getnameinfo(0,0,0,0,0,0,0);]])],
ac_cv_func_getnameinfo=yes,
ac_cv_func_getnameinfo=no)])
AS_IF([test $ac_cv_func_getnameinfo = yes],
[AC_DEFINE(HAVE_GETNAMEINFO)
AC_DEFINE(HAVE_GAI_STRERROR)])
dnl Check for va_copy dnl Check for va_copy
AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy, AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
......
...@@ -879,15 +879,6 @@ void httpd_StreamDelete( httpd_stream_t *stream ) ...@@ -879,15 +879,6 @@ void httpd_StreamDelete( httpd_stream_t *stream )
*****************************************************************************/ *****************************************************************************/
#define LISTEN_BACKLOG 100 #define LISTEN_BACKLOG 100
#if defined(HAVE_GETNAMEINFO) && !defined(HAVE_GETADDRINFO)
/*
* For now, VLC's configure script does not check for getaddrinfo(),
* but it should be present if getnameinfo() is (the opposite is untrue, with
* Debian potato as an example)
*/
# define HAVE_GETADDRINFO 1
#endif
static void httpd_HostThread( httpd_host_t * ); static void httpd_HostThread( httpd_host_t * );
static int GetAddrPort( const struct sockaddr_storage *p_ss ); static int GetAddrPort( const struct sockaddr_storage *p_ss );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment