[gst-devel] Where to get gstreamer 0.10.22.1
Tim-Philipp Müller
t.i.m at zen.co.uk
Thu Mar 19 16:18:50 CET 2009
On Thu, 2009-03-19 at 15:58 +0100, Javier Gálvez Guerrero wrote:
> I've built the gstreamer-0.10.22.1 core package but when trying to
> build the same version of the base plugins I get the same error than
> before (0.10.21 version instead the required 0.10.22.1). Obviously, I
> need to tell autogen.sh when building the base plugins that it has to
> look at the 0.10.22.1 directory, but I don't know how to do it (yes,
> I'm a completely newbie, but I would like to learn and that's why I'm
> asking the community).
gst-plugins-base and applications get the version information via
pkg-config, see:
$ pkg-config --modversion gstreamer-0.10
This info comes from .pc files which usually reside
in /usr/lib/pkgconfig if both your GStreamer and pkg-config were
installed from package.
You can make pkg-config look elsewhere for these files by doing
something like (if you installed GStreamer into /usr/local/ for example,
which is the default when building from source):
$ export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig:$PKG_CONFIG_PATH
$ export LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
This is all assuming that you actually did 'make install' into some
prefix, of course. If you're running in an uninstalled setup, the
gst-uninstalled sript will take care of all these paths for you.
Cheers
-Tim
More information about the gstreamer-devel
mailing list