diff options
author | Wu Xiaotian <[email protected]> | 2019-07-03 19:07:21 +0800 |
---|---|---|
committer | raveit65 <[email protected]> | 2019-07-10 15:51:13 +0200 |
commit | 4cad2cfe818be68e2eb3ef038ab6177cf2fa0bc4 (patch) | |
tree | 1ed08d4b7f35c89811049676cc820b7057e9fe4d | |
parent | ac597d28e36a87a987537787b88775a5161646e7 (diff) | |
download | libmateweather-4cad2cfe818be68e2eb3ef038ab6177cf2fa0bc4.tar.bz2 libmateweather-4cad2cfe818be68e2eb3ef038ab6177cf2fa0bc4.tar.xz |
avoid deprecated soup_session_async_new
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | libmateweather/weather.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index dd0d574..26e9166 100644 --- a/configure.ac +++ b/configure.ac @@ -23,7 +23,7 @@ AC_CANONICAL_HOST GLIB_REQUIRED=2.50.0 GTK_REQUIRED=3.22.0 -LIBSOUP_REQUIRED=2.34.0 +LIBSOUP_REQUIRED=2.54.0 GIO_REQUIRED=2.25.0 LIBXML_REQUIRED=2.6.0 diff --git a/libmateweather/weather.c b/libmateweather/weather.c index 20c46e9..1e9c7da 100644 --- a/libmateweather/weather.c +++ b/libmateweather/weather.c @@ -552,7 +552,7 @@ _weather_info_fill (WeatherInfo *info, info->cb_data = data; if (!info->session) { - info->session = soup_session_async_new (); + info->session = soup_session_new (); soup_session_add_feature_by_type (info->session, SOUP_TYPE_PROXY_RESOLVER_DEFAULT); } |