GNOME Bugzilla – Bug 591357
gst-plugins-base git won't build due to warning in gstrtspconnection.c
Last modified: 2009-08-10 19:20:33 UTC
Please describe the problem: When compiling gst-plugins-base, it fails due to a warning: Making all in rtsp CC gstrtspconnection.o CC rtsp-marshal.o CC gstrtsp-enumtypes.o cc1: warnings being treated as errors gstrtspconnection.c: In function ‘auth_digest_compute_response’: gstrtspconnection.c:923: warning: implicit declaration of function ‘g_checksum_reset’ make[5]: *** [libgstrtsp_0.10_la-gstrtspconnection.lo] Error 1 This is odd because glib.h is included in gstrtspconnection.c Steps to reproduce: Actual results: Expected results: Does this happen every time? Other information:
Thanks, should be fixed now: commit cb19626c8c7fc8ac1ab7e740e4ec776800dc290f Author: Tim-Philipp Müller <tim.muller@collabora.co.uk> Date: Mon Aug 10 20:18:24 2009 +0100 rtspconnection: don't use GLib-2.18 function g_checksum_reset() was added only in GLib 2.18, but we still require only 2.16, so work around that if we only have 2.16. Fixes #591357.