GNOME Bugzilla – Bug 786804
help pkg-config find gstreamer-audio-1.0
Last modified: 2017-08-28 16:09:30 UTC
Created attachment 358404 [details] [review] patch on gst-docs On my Ubuntu box compiling of basic-tutorial-8.c with gcc basic-tutorial-8.c -o basic-tutorial-8 `pkg-config --cflags --libs gstreamer-1.0 gst-audio-1.0 because pkg-config cannot find gst-audio-1.0 I suggest adding and "or" line gcc basic-tutorial-8.c -o basic-tutorial-8 `pkg-config --cflags --libs gstreamer-1.0 gstreamer-audio-1.0 that does work.
oops. I failed to say compiling fails...
commit 8b61265d7ec69ef276a834c73f239fef80a2721f (HEAD -> master) Author: apple muncy <j.apple.muncy@gmail.com> Date: Fri Aug 25 09:41:40 2017 -0400 Use correct pkg-config package name for gstreamer-audio-1.0 https://bugzilla.gnome.org/show_bug.cgi?id=786804
Review of attachment 358404 [details] [review]: ::: markdown/tutorials/basic/short-cutting-the-pipeline.md @@ +336,3 @@ > +> or +> `` gcc basic-tutorial-8.c -o basic-tutorial-8 `pkg-config --cflags --libs gstreamer-1.0 gstreamer-audio-1.0` `` Ah I failed reading the diff, sorry. The first line was just wrong, I fixed it now and removed the second line again.