configure:13214: checking for GStreamer
configure:13224: $PKG_CONFIG --exists --print-errors "gstreamer-$GST_MAJORMINOR >= 1.0
gstreamer-base-$GST_MAJORMINOR >= 1.0
gstreamer-plugins-base-$GST_MAJORMINOR >= 1.0"
Package gstreamer-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing gstreamer-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-1.0' found
Package gstreamer-base-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containinggstreamer-base-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-base-1.0' found
Package gstreamer-plugins-base-1.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gstreamer-plugins-base-1.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gstreamer-plugins-base-1.0' found
What makes this bizzare is that the offending line works perfectly from a terminal:
Thank you for the fast reply! However, since I was using this tutorial(here), I don't know when nor where to execute the make install command(and related commands).
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
From config.log:
What makes this bizzare is that the offending line works perfectly from a terminal:
I should also mention that I tried to use the full path to pkg-config listed earlier in config.log as a sanity check, namely:
Also, I did a debug run of pkg-config to see where it was finding gstreamer:
I then added the appropriate directory via:
And reinstalled pocketsphinx via:
But the config.log still reported not finding gstreamer :/
Notes:
- OS X 10.13.2
- Installed pocketsphinx 5prealpha via homebrew per https://github.com/watsonbox/homebrew-cmu-sphinx
Last edit: Sean DeNigris 2018-04-29
It is missing gstreamer-base and gstreamer-plugins-base probably, not gstreamer.
Thanks for the reply! I checked all three .pc files via --debug and they all exist :/
Last edit: Sean DeNigris 2018-04-29
Workaround: I just made a fresh clone from GH and copied the built plugin under /usr/local
I'd like to ask where to find the config.log file, thanks!
In pocketsphinx source folder when you build from sources with ./configure && make && make install. Configure command creates it.
Thank you for the fast reply! However, since I was using this tutorial(here), I don't know when nor where to execute the make install command(and related commands).
I am using macOS. The command I used for installing was
Last edit: Cindy Chang 2019-01-30
In top source folder. You can probably watch some howtos on building linux software from source, it is well covered.