From: Edward Hervey Date: Mon, 27 Jul 2009 16:44:45 +0000 (+0200) Subject: soup: Use "GET" instead of SOUP_METHOD_GET. Fixes build with libsoup-2.7.* X-Git-Tag: RELEASE-0.10.16~288 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=4e6fcd2345d208d029e46286c141a2f6b4ea5d7d;p=platform%2Fupstream%2Fgst-plugins-good.git soup: Use "GET" instead of SOUP_METHOD_GET. Fixes build with libsoup-2.7.* This is due to a quality API change in libsoup 2.7. SOUP_METHOD_* are now integers and not strings... they could have changed the names. --- diff --git a/ext/soup/gstsouphttpsrc.c b/ext/soup/gstsouphttpsrc.c index c50fd3e..18b39b1 100644 --- a/ext/soup/gstsouphttpsrc.c +++ b/ext/soup/gstsouphttpsrc.c @@ -1101,7 +1101,7 @@ gst_soup_http_src_parse_status (SoupMessage * msg, GstSoupHTTPSrc * src) static gboolean gst_soup_http_src_build_message (GstSoupHTTPSrc * src) { - src->msg = soup_message_new (SOUP_METHOD_GET, src->location); + src->msg = soup_message_new ("GET", src->location); if (!src->msg) { GST_ELEMENT_ERROR (src, RESOURCE, OPEN_READ, (NULL), ("Error parsing URL \"%s\"", src->location));