summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 2 deletions
diff --git a/.SRCINFO b/.SRCINFO
index eabec3473185..68a1148983ca 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = collectd
pkgdesc = Daemon which collects system performance statistics periodically
pkgver = 5.12.0
- pkgrel = 15
+ pkgrel = 16
url = https://collectd.org/
arch = x86_64
arch = aarch64
diff --git a/PKGBUILD b/PKGBUILD
index 1ebdf9645938..0a960c8673f0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
pkgname=collectd
pkgver=5.12.0
-pkgrel=15
+pkgrel=16
pkgdesc='Daemon which collects system performance statistics periodically'
url='https://collectd.org/'
arch=('x86_64' 'aarch64')
@@ -61,6 +61,10 @@ build() {
cd ${pkgname}-${pkgver}
# fix nut plugin build
export CFLAGS="$CFLAGS -Wno-incompatible-pointer-types"
+ # quick fix for https://github.com/collectd/collectd/issues/4310
+ # libgcrypt-config is gone
+ export GCRYPT_CPPFLAGS="$(pkg-config libgcrypt --cflags)"
+ export GCRYPT_LIBS="$(pkg-config libgcrypt --libs)"
./configure \
--prefix=/usr \
--sysconfdir=/etc \