[Bug 732411] rtsp server GIR has wrong C include
GStreamer (bugzilla.gnome.org)
bugzilla at gnome.org
Mon Jun 30 00:06:02 PDT 2014
https://bugzilla.gnome.org/show_bug.cgi?id=732411
GStreamer | gst-rtsp-server | unspecified
--- Comment #3 from Evan Nemerson <evan at coeus-group.com> 2014-06-30 07:05:57 UTC ---
rtsp-server.h includes rtsp-client.h which includes rtsp-context.h.
Based on a quick script I threw together rtsp-{media-factory-uri,params}.h are
the only ones missing, though I really do any testing.
#!/bin/sh
HEADERS=""
get_includes() {
for header in `grep -oP '^\#include [\"][^\"]+' "$1" | cut -b11-`; do
if [[ "$HEADERS" != *${header}* ]]; then
HEADERS="$HEADERS $header"
get_includes "$header"
fi;
done;
}
get_includes "$1"
for header in $HEADERS; do
echo $header
done | sort
--
Configure bugmail: https://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