]> git.ipfire.org Git - thirdparty/dbus.git/commitdiff
gitlab-ci: Install pkg-config on FreeBSD
authorAlex Richardson <arichardson@FreeBSD.org>
Mon, 8 Aug 2022 21:21:18 +0000 (21:21 +0000)
committerSimon McVittie <smcv@collabora.com>
Wed, 10 Aug 2022 11:18:20 +0000 (11:18 +0000)
Without this change the autotools build system fails to find glib and
reports an error. The CMake build worked prior to this change since CMake
has fallback logic to find glib even without pkg-config.

.gitlab-ci.yml
tools/ci-install.sh

index e44b47dc735ffb73d2b95a9c92bffc06945edae9..26ef753714ae472fad191cb654a4560c52221019 100644 (file)
@@ -72,7 +72,7 @@ variables:
     BUILD_OS: freebsd
     BUILD_ARCH: "x86_64"
     FDO_DISTRIBUTION_VERSION: '13.0'
-    FDO_DISTRIBUTION_TAG: '2022-08-08.0'  # Bump this version on every ci-install.sh change
+    FDO_DISTRIBUTION_TAG: '2022-08-08.1'  # Bump this version on every ci-install.sh change
     FDO_REPO_SUFFIX: "$BUILD_OS/$BUILD_ARCH"
 
 .cmake-common:
index c507ea3c14ce4eae15e481a0bc6d0720614034c7..328bb5c7e5fe10d40218e116b11d62db2fbf12ab 100755 (executable)
@@ -323,6 +323,7 @@ case "$ci_distro" in
             libtool
             libX11
             libxslt
+            pkgconf
             xmlto
         )
         $sudo pkg install -y "${packages[@]}"