diff options
author | Dan Winship <danw@gnome.org> | 2011-11-30 19:16:36 +0100 |
---|---|---|
committer | Dan Winship <danw@gnome.org> | 2012-04-28 13:18:11 -0400 |
commit | a4910d0ca8f5034d75e35dd69059332f01a64ac0 (patch) | |
tree | badd5aa3b486c1b6c74e77105e051623ea7a4fa4 /configure.ac | |
parent | bac8c22fd28479a3be149c0d742b8c7417381091 (diff) | |
download | libsoup-a4910d0ca8f5034d75e35dd69059332f01a64ac0.tar.gz libsoup-a4910d0ca8f5034d75e35dd69059332f01a64ac0.tar.bz2 libsoup-a4910d0ca8f5034d75e35dd69059332f01a64ac0.zip |
Reorganize proxy resolution, and support SOCKS and other proxy types
Push the proxy resolution code from SoupSession down into
SoupConnection and SoupSocket. If using a SoupProxyResolverDefault,
just enable proxy support on the GSocketClient instead (after adding
"http" as an application protocol). This way we get support for SOCKS
proxies (and any other proxies supported by GProxy types).
https://bugzilla.gnome.org/show_bug.cgi?id=553269
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 97741934..51757fb4 100644 --- a/configure.ac +++ b/configure.ac @@ -72,8 +72,7 @@ dnl *********************** dnl *** Checks for glib *** dnl *********************** -dnl FIXME: should actually be 2.33.0, but glib hasn't bumped yet -GLIB_REQUIRED=2.32.2 +GLIB_REQUIRED=2.33.1 AM_PATH_GLIB_2_0($GLIB_REQUIRED,,,gobject gio) if test "$GLIB_LIBS" = ""; then AC_MSG_ERROR(GLIB $GLIB_REQUIRED or later is required to build libsoup) |