5
0
mirror of git://git.proxmox.com/git/qemu-server.git synced 2025-08-04 08:21:54 +03:00

d/control: replace outdated pkg-config with pkgconf dependency

Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Thomas Lamprecht
2025-06-17 12:46:02 +02:00
parent 54396a397e
commit ee08cd188d
2 changed files with 3 additions and 3 deletions

2
debian/control vendored
View File

@ -17,7 +17,7 @@ Build-Depends: debhelper-compat (= 13),
libuuid-perl,
lintian,
perl,
pkg-config,
pkgconf,
pve-cluster,
pve-doc-generator (>= 6.2-5),
pve-edk2-firmware-ovmf (>= 4.2025.02-3),

View File

@ -8,8 +8,8 @@ MANDIR=$(PREFIX)/share/man
CC ?= gcc
CFLAGS += -O2 -Werror -Wall -Wextra -Wpedantic -Wtype-limits -Wl,-z,relro -std=gnu11
CFLAGS += $(shell pkg-config --cflags json-c glib-2.0)
LDFLAGS += $(shell pkg-config --libs json-c glib-2.0)
CFLAGS += $(shell pkgconf --cflags json-c glib-2.0)
LDFLAGS += $(shell pkgconf --libs json-c glib-2.0)
qmeventd: qmeventd.c
$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)