mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
configure.ac: Update gio's pkg-config file name as currently in SVN.
Original commit message from CVS: * configure.ac: Update gio's pkg-config file name as currently in SVN. * ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_location): Remove special casing for a NULL query string. g_strjoin won't add the separator if there's only one string.
This commit is contained in:
parent
3668cfd91e
commit
453fef95a1
3 changed files with 12 additions and 6 deletions
|
@ -1,3 +1,12 @@
|
|||
2007-09-29 Sebastian Dröge <slomo@circular-chaos.org>
|
||||
|
||||
* configure.ac:
|
||||
Update gio's pkg-config file name as currently in SVN.
|
||||
|
||||
* ext/neon/gstneonhttpsrc.c: (gst_neonhttp_src_set_location):
|
||||
Remove special casing for a NULL query string. g_strjoin won't add
|
||||
the separator if there's only one string.
|
||||
|
||||
2007-09-28 Wim Taymans <wim.taymans@gmail.com>
|
||||
|
||||
* gst/rtpmanager/gstrtpbin.c: (free_client):
|
||||
|
|
|
@ -531,8 +531,8 @@ AG_GST_CHECK_FEATURE(FAAD, [AAC decoder plug-in], faad, [
|
|||
|
||||
dnl *** libgio ***
|
||||
translit(dnm, m, l) AM_CONDITIONAL(USE_GIO, true)
|
||||
AG_GST_CHECK_FEATURE(GIO, [GIO standalone library], gio, [
|
||||
PKG_CHECK_MODULES(GIO, gio-standalone >= 0.0.1, HAVE_GIO="yes", [
|
||||
AG_GST_CHECK_FEATURE(GIO, [GIO library], gio, [
|
||||
PKG_CHECK_MODULES(GIO, gio-2.0 >= 0.1, HAVE_GIO="yes", [
|
||||
HAVE_GIO="no"
|
||||
AC_MSG_RESULT(no)
|
||||
])
|
||||
|
|
|
@ -729,10 +729,7 @@ gst_neonhttp_src_set_location (GstNeonhttpSrc * src, const gchar * uri)
|
|||
if (!src->uri.path)
|
||||
src->uri.path = g_strdup ("");
|
||||
|
||||
if (src->uri.query)
|
||||
src->query_string = g_strjoin ("?", src->uri.path, src->uri.query, NULL);
|
||||
else
|
||||
src->query_string = g_strdup (src->uri.path);
|
||||
src->query_string = g_strjoin ("?", src->uri.path, src->uri.query, NULL);
|
||||
|
||||
src->location = ne_uri_unparse (&src->uri);
|
||||
|
||||
|
|
Loading…
Reference in a new issue