diff options
author | Dan Winship <danw@gnome.org> | 2012-02-13 21:12:34 -0500 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2012-12-12 15:20:22 +0100 |
commit | 211ed1775dfc514077984d0fea5d2529dcc5036e (patch) | |
tree | 195bb690e66877fa15257c6e732feee678c1192a /configure.ac | |
parent | b377e69685c99150cf7661e1aa77d60934e00521 (diff) | |
download | glib-211ed1775dfc514077984d0fea5d2529dcc5036e.tar.gz |
gsocket: add getsockopt/setsockopt wrappers
Add g_socket_get_option() and g_socket_set_option(), wrapping
getsockopt/setsockopt for the case of integer-valued options. Update
code to use these instead of the underlying calls.
https://bugzilla.gnome.org/show_bug.cgi?id=623187
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/configure.ac b/configure.ac index e08b2556c..bf4d938a4 100644 --- a/configure.ac +++ b/configure.ac @@ -1065,25 +1065,25 @@ fi AC_CHECK_FUNCS(getprotobyname_r endservent if_nametoindex) -# <wspiapi.h> in the Windows SDK and in mingw-w64 has wrappers for -# inline workarounds for getaddrinfo, getnameinfo and freeaddrinfo if -# they aren't present at run-time (on Windows 2000). -AC_CHECK_HEADER([wspiapi.h], [WSPIAPI_INCLUDE="\#include <wspiapi.h>"]) -AC_SUBST(WSPIAPI_INCLUDE) - -AC_MSG_CHECKING([if arpa/nameser_compat.h is needed]) -AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arpa/nameser.h>], - [int qclass = C_IN;])], - [AC_MSG_RESULT([no])], - [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arpa/nameser.h> - #include <arpa/nameser_compat.h>], - [int qclass = C_IN;])], - [AC_MSG_RESULT([yes]) - NAMESER_COMPAT_INCLUDE="\#include <arpa/nameser_compat.h>"], - [AC_MSG_ERROR([could not compile test program either way])])]) -AC_SUBST(NAMESER_COMPAT_INCLUDE) - -AS_IF([test $glib_native_win32 = no], [ +AS_IF([test $glib_native_win32 = yes], [ + # <wspiapi.h> in the Windows SDK and in mingw-w64 has wrappers for + # inline workarounds for getaddrinfo, getnameinfo and freeaddrinfo if + # they aren't present at run-time (on Windows 2000). + AC_CHECK_HEADER([wspiapi.h], [WSPIAPI_INCLUDE="#include <wspiapi.h>"]) + AC_SUBST(WSPIAPI_INCLUDE) +], [ + AC_MSG_CHECKING([if arpa/nameser_compat.h is needed]) + AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arpa/nameser.h>], + [int qclass = C_IN;])], + [AC_MSG_RESULT([no])], + [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([#include <arpa/nameser.h> + #include <arpa/nameser_compat.h>], + [int qclass = C_IN;])], + [AC_MSG_RESULT([yes]) + NAMESER_COMPAT_INCLUDE="\#include <arpa/nameser_compat.h>"], + [AC_MSG_ERROR([could not compile test program either way])])]) + AC_SUBST(NAMESER_COMPAT_INCLUDE) + # We can't just use AC_CHECK_FUNC/AC_CHECK_LIB here. Bug 586150 NETWORK_LIBS="" AC_MSG_CHECKING([for res_query]) |