<div dir="ltr">Hi,<br><br>On Fri, Dec 16, 2016 at 12:33 AM, Mikl <<a href="mailto:michael.yarochkin@timetronics.be">michael.yarochkin@timetronics.be</a>> wrote:<br>><br>> I am compiling library on Debian using last Gstreamer (fresh from apt-get)<br>><br>> On my code<br>>     gst_bus_remove_watch(_bus);<br>><br>> i have error<br>> error: 'gst_bus_remove_watch' was not declared in this scope<br>>      gst_bus_remove_watch(_bus);<br>><br>> Can you help me what i am doing wrong, please?<br><br>It'd be better to post a smallest possible code that can reproduce the error,<br>along with your compiler command line.<br><br>btw, this, doesn't make sense at all but, compiles fiine on a Debian Sid.<br><br>$ cat a.c<br>#include <gst/gst.h><br><br>int main() {<br>    gst_bus_remove_watch(NULL);<br>    return 0;<br>}<br><br>$ g++ -Wall -Wextra -g $(pkg-config --cflags --libs gstreamer-1.0) a.c<br><br>Thanks,<br>-- <br>            yashi</div>