I have built gstreamer & gst-base plug-in from source but while configuring
gst-plugins-good-0.10.30, I am getting error like this
checking for struct ip_mreqn... yes
checking for GLIB... configure:
configure: error: This package requires GLib >= 2.20 to compile.
What is the meaning of this error and how can I install gst-plugins-good-0.10.30?
The error can mean one of the following things:
1. You don’t have
Glibdevelopment package (-devel) installed i.e. header files & pkg-config (.pc) file forGlib. You can check this usingdpkgoryumor other commands based on your Linux distro.2. You have
Glibdevelopment package installed but the version is not2.20or higher. To check the version see the output ofpkg-config --modversion glib-2.03. You have
Glibdevelopment package installed but thepkg-configis not able to find it. You will have to setPKG_CONFIG_PATHenvironment variable in this case.For the packages needed in case of gstreamer source, there is a
REQUIREMENTSfile with the list of required packages. Also,configurewill throw missing package which are needed. You will need to install from source or from the repo configure for your distro.Hope this helps!