summary refs log tree commit diff stats
path: root/plugins/sysinfo/xsys-makefile
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-10-21 07:15:48 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-10-21 07:15:48 +0200
commitbc57507a4ceee92050a5eb8ac17dfd8b5d264b7a (patch)
tree9d353a8ab23d1116a8de0c38927493b2afc66882 /plugins/sysinfo/xsys-makefile
parent187351fa61e0ec9e8fe396de7a1d72a3a67d328f (diff)
Add Arch patches to SysInfo-Unix and rebrand it
Diffstat (limited to 'plugins/sysinfo/xsys-makefile')
-rw-r--r--plugins/sysinfo/xsys-makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/sysinfo/xsys-makefile b/plugins/sysinfo/xsys-makefile
index aeb28a99..8b51a53d 100644
--- a/plugins/sysinfo/xsys-makefile
+++ b/plugins/sysinfo/xsys-makefile
@@ -10,7 +10,6 @@ VER_MINOR = 2
 VER_PATCH = 0
 CC = gcc
 CFLAGS += -O2 -Wall -fPIC
-CFLAGS += $(shell pkg-config dbus-1 --cflags) $(shell pkg-config glib-2.0 --cflags)
 CFLAGS += -DVER_MINOR=$(VER_MINOR) -DVER_MAJOR=$(VER_MAJOR) -DVER_PATCH=$(VER_PATCH) \
           -DVER_STRING=\"$(VER_MAJOR).$(VER_MINOR).$(VER_PATCH)\" -DPCIIDS=\"$(PCIIDS)\" $(BUTTON)
 LDFLAGS = $(CFLAGS) -shared
@@ -20,7 +19,7 @@ OBJECTS = xsys.o parse.o pci.o match.o hwmon.o
 ALL : $(LIBRARY)
 
 $(LIBRARY) : $(OBJECTS)
-	$(CC) $(LDFLAGS) -o $(LIBRARY) $(OBJECTS) -lpci $(shell pkg-config dbus-1 --libs) $(shell pkg-config glib-2.0 --libs) -laudclient
+	$(CC) $(LDFLAGS) -o $(LIBRARY) $(OBJECTS) -lpci
 
 xsys.o : xsys.c
 parse.o : parse.c