forked from mirrors/gstreamer-rs
Fix macOS PKG_CONFIG_PATH in readme for GStreamer Binaries
I've just installed the latest 1.20.1 GStreamer .pkg on a macOS GitHub Actions CI runner and it turns out that no /Library/Frameworks/GStreamer.framework/Versions directory exists. A /Library/Frameworks/GStreamer.framework/1.0 directory is installed instead, which is more consistent with the GStreamer distributions for other OSes, and works well enough to get pkg-config working.
This commit is contained in:
parent
07be60a22f
commit
69599e90d4
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ After installation, you also need to install `pkg-config` (e.g. via Homebrew)
|
|||
and set the `PKG_CONFIG_PATH` environment variable
|
||||
|
||||
```console
|
||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/Current/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||
$ export PKG_CONFIG_PATH="/Library/Frameworks/GStreamer.framework/Versions/1.0/lib/pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}"
|
||||
```
|
||||
|
||||
<a name="installation-windows"/>
|
||||
|
|
Loading…
Reference in a new issue