Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
GSoC
GSoC2018
macOS
vlc
Commits
170ce706
Commit
170ce706
authored
Mar 11, 2005
by
Rémi Denis-Courmont
Browse files
- Check for gai_strerror
(stupid Winsock2 has getnameinfo but not gai_strerror)
parent
c5a8df9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
configure.ac
View file @
170ce706
...
...
@@ -399,7 +399,7 @@ AH_TEMPLATE(HAVE_GETNAMEINFO,
ac_func_getnameinfo_save_LIBS=$LIBS
AS_IF([test "${SYS}" = "mingw32"],
[LIBS="-lws2_32 $LIBS"])
AC_CACHE_CHECK([for getnameinfo], ac_cv_func_getnameinfo,
AC_CACHE_CHECK([for getnameinfo], ac_cv_func_getnameinfo,
[AC_LINK_IFELSE([AC_LANG_PROGRAM([
[#include <sys/types.h>
#if defined( UNDER_CE )
...
...
@@ -417,6 +417,26 @@ AS_IF([test $ac_cv_func_getnameinfo = yes],
[AC_DEFINE(HAVE_GETNAMEINFO)])
LIBS=$ac_func_getnameinfo_save_LIBS
dnl Cannot have gai_strerror if not getaddrinfo
AH_TEMPLATE(HAVE_GAI_STRERROR,
[Define to 1 if you have the `gai_strerror' function.])
AC_CACHE_CHECK([for gai_strerror], ac_cv_func_gai_strerror,
[AC_LINK_IFELSE([AC_LANG_PROGRAM([
[#include <sys/types.h>
#if defined( UNDER_CE )
# include <winsock.h>
#elif defined( WIN32 )
# include <winsock2.h>
#else
# include <sys/socket.h>
# include <netdb.h>
#endif]], [[gai_strerror(0);]])],
ac_cv_func_gai_strerror=yes,
ac_cv_func_gai_strerror=no)])
AS_IF([test $ac_cv_func_gai_strerror = yes],
[AC_DEFINE(HAVE_GAI_STRERROR)],
[gai_support=no])
dnl Check for va_copy
AC_CACHE_CHECK([for va_copy], ac_cv_c_va_copy,
AC_TRY_LINK(
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment