mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-10 17:35:59 +00:00
docs/faq/gst-uninstalled: Set up LD_LIBRARY_PATH to point at all the gstreamer libs. This will allow you to correctly...
Original commit message from CVS: * docs/faq/gst-uninstalled: Set up LD_LIBRARY_PATH to point at all the gstreamer libs. This will allow you to correctly run intalled applications built against old core, using plugins that require updated core (e.g. running installed totem against a full uninstalled gstreamer stack)
This commit is contained in:
parent
a9fe8575cc
commit
d5aa0e9723
2 changed files with 21 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
|||
2006-03-24 Michael Smith <msmith@fluendo.com>
|
||||
|
||||
* docs/faq/gst-uninstalled:
|
||||
Set up LD_LIBRARY_PATH to point at all the gstreamer libs. This will
|
||||
allow you to correctly run intalled applications built against old
|
||||
core, using plugins that require updated core (e.g. running
|
||||
installed totem against a full uninstalled gstreamer stack)
|
||||
|
||||
2006-03-24 Stefan Kost <ensonic@users.sf.net>
|
||||
|
||||
* libs/gst/base/gstcollectpads.c: (gst_collect_pads_is_collected):
|
||||
|
|
|
@ -40,8 +40,20 @@ fi
|
|||
|
||||
# set up a bunch of paths
|
||||
PATH=$GST/gstreamer/tools:$GST/gst-plugins/tools:$GST/gst-player/src:$GST/gst-editor/src:$GST/prefix/bin:$PATH
|
||||
|
||||
# /some/path: makes the dynamic linker look in . too, so avoid this
|
||||
export LD_LIBRARY_PATH=$GST/prefix/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
||||
LD_LIBRARY_PATH=$GST/prefix/lib${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}
|
||||
for path in audio cdda interfaces netbuffer riff rtp tag video
|
||||
do
|
||||
LD_LIBRARY_PATH=$GST/gst-plugins-base/gst-libs/gst/$path/.libs:$LD_LIBRARY_PATH
|
||||
done
|
||||
for path in base net check controller dataprotocol
|
||||
do
|
||||
LD_LIBRARY_PATH=$GST/gstreamer/libs/gst/$path/.libs:$LD_LIBRARY_PATH
|
||||
done
|
||||
LD_LIBRARY_PATH=$GST/gstreamer/gst/.libs:$LD_LIBRARY_PATH
|
||||
export LD_LIBRARY_PATH
|
||||
|
||||
export PKG_CONFIG_PATH=$GST/prefix/lib/pkgconfig:$GST/gstreamer/pkgconfig:$GST/gst-plugins/pkgconfig:$GST/gst-plugins-base/pkgconfig:$GST/gst-python/pkgconfig:$PKG_CONFIG_PATH
|
||||
export GST_PLUGIN_PATH=$GST/gstreamer:$GST/gst-plugins:$GST/gst-plugins-base:$GST/gst-plugins-good:$GST/gst-plugins-ugly:$GST/gst-plugins-bad:$GST/gst-ffmpeg:$GST/gst-monkeysaudio:$GST/plugins:$GST_PLUGIN_PATH
|
||||
export GST_PLUGIN_SYSTEM_PATH=
|
||||
|
|
Loading…
Reference in a new issue