From 8213f684bc81f018eab402dd934b60faf4fff044 Mon Sep 17 00:00:00 2001 From: Marijn Suijten Date: Mon, 26 Apr 2021 17:54:31 +0000 Subject: [PATCH] README: Install `glib2-devel` when building in MSYS2 --- README.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 252912fe9..528697c00 100644 --- a/README.md +++ b/README.md @@ -105,8 +105,9 @@ the GStreamer project. #### MSYS2 / pacman -``` -$ pacman -S pkg-config mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ +```sh +$ pacman -S glib2-devel pkg-config \ + mingw-w64-x86_64-gstreamer mingw-w64-x86_64-gst-plugins-base \ mingw-w64-x86_64-gst-plugins-good mingw-w64-x86_64-gst-plugins-bad \ mingw-w64-x86_64-gst-plugins-ugly mingw-w64-x86_64-gst-libav \ mingw-w64-x86_64-gst-rtsp-server @@ -131,7 +132,7 @@ After installation, you also need to install `pkg-config` (e.g. via MSYS2 or from [here](https://sourceforge.net/projects/pkgconfiglite/)) and set the `PKG_CONFIG_PATH` environment variable -``` +```sh $ export PKG_CONFIG_PATH="c:\\gstreamer\\1.0\\x86_64\\lib\\pkgconfig${PKG_CONFIG_PATH:+:$PKG_CONFIG_PATH}" ```