[gstreamer-bugs] [Bug 345182] gstneonhttpsrc.c error trying to compile 0.10.3

GStreamer (bugzilla.gnome.org) bugzilla-daemon at bugzilla.gnome.org
Sat Jun 17 09:05:27 PDT 2006


Do not reply to this via email (we are currently unable to handle email
responses and they get discarded).  You can add comments to this bug at
http://bugzilla.gnome.org/show_bug.cgi?id=345182
 GStreamer | gst-plugins-bad | Ver: 0.10.8


Tim-Philipp Müller changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|UNCONFIRMED                 |NEW
     Ever Confirmed|0                           |1




------- Comment #1 from Tim-Philipp Müller  2006-06-17 16:05 UTC -------
Since libneon is only API-stable within any 0.x series, the configure check is
probably wrong and should check for  >= 0.25.1 and < 0.25.99  or so.


However, if we're lucky not much that we need has changed. Could you try this
patch?

diff -u -p -r1.13 gstneonhttpsrc.c
--- gstneonhttpsrc.c    29 Apr 2006 15:36:15 -0000      1.13
+++ gstneonhttpsrc.c    17 Jun 2006 16:04:48 -0000
@@ -20,6 +20,10 @@
 #include <string.h>
 #include <unistd.h>

+#ifndef NE_FREE
+#define NEON_026_OR_LATER  1
+#endif
+
 #define HTTP_DEFAULT_HOST        "localhost"
 #define HTTP_DEFAULT_PORT        80
 #define HTTPS_DEFAULT_PORT       443
@@ -627,7 +631,11 @@ set_proxy (const char *uri, ne_uri * par
     goto clear;
   }

+#ifdef NEON_026_OR_LATER
+  if (!parsed->path || parsed->userinfo) {
+#else
   if (!parsed->path || parsed->authinfo) {
+#endif
     goto clear;
   }


-- 
Configure bugmail: http://bugzilla.gnome.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.




More information about the Gstreamer-bugs mailing list