From: Wolfgang Bumiller Date: Mon, 6 Feb 2017 11:07:23 +0000 (+0100) Subject: logger: drop gthread dependency X-Git-Url: https://git.proxmox.com/?p=pve-firewall.git;a=commitdiff_plain;h=7f7b4890420c216283499c0cf00166a3f3aecbbf logger: drop gthread dependency g_thread_new is part of glib directly, libgthread only contains the deprecated g_thread_init() & friends which we do not use. This silences a build warning. --- diff --git a/src/Makefile b/src/Makefile index 74ae7fd..ed74393 100644 --- a/src/Makefile +++ b/src/Makefile @@ -25,7 +25,7 @@ LDFLAGS:=$(shell dpkg-buildflags --get LDFLAGS) pvefw-logger: pvefw-logger.c gcc -Wall -Werror pvefw-logger.c -o pvefw-logger -std=gnu99 \ $(CPPFLAGS) $(CFLAGS) $(LDFLAGS) \ - $(shell pkg-config libnetfilter_log glib-2.0 gthread-2.0 --libs --cflags) + $(shell pkg-config libnetfilter_log glib-2.0 --libs --cflags) .PHONY: install install: pve-firewall pve-firewall.8 pve-firewall.bash-completion pvefw-logger