After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 786804 - help pkg-config find gstreamer-audio-1.0
help pkg-config find gstreamer-audio-1.0
Status: RESOLVED FIXED
Product: GStreamer
Classification: Platform
Component: documentation
git master
Other Linux
: Normal minor
: git master
Assigned To: GStreamer Maintainers
GStreamer Maintainers
Depends on:
Blocks:
 
 
Reported: 2017-08-25 14:07 UTC by apple muncy
Modified: 2017-08-28 16:09 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
patch on gst-docs (1.60 KB, patch)
2017-08-25 14:07 UTC, apple muncy
committed Details | Review

Description apple muncy 2017-08-25 14:07: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.
Comment 1 apple muncy 2017-08-25 14:14:05 UTC
oops. I failed to say compiling fails...
Comment 2 Sebastian Dröge (slomo) 2017-08-28 16:07:39 UTC
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
Comment 3 Sebastian Dröge (slomo) 2017-08-28 16:09:30 UTC
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.