aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--mpd-notification.h2
2 files changed, 2 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index f604121..32f5172 100644
--- a/Makefile
+++ b/Makefile
@@ -9,10 +9,7 @@ RM := rm
# flags
CFLAGS_EXTRA += -std=c11 -O2 -fPIC -Wall -Werror
-ifneq ($(wildcard /usr/include/iniparser),)
-CFLAGS_EXTRA += -I/usr/include/iniparser
-endif
-CFLAGS_EXTRA += -liniparser
+CFLAGS_EXTRA += $(shell pkg-config --cflags --libs iniparser)
CFLAGS_SYSTEMD := $(shell pkg-config --cflags --libs libsystemd 2>/dev/null)
ifneq ($(CFLAGS_SYSTEMD),)
CFLAGS_EXTRA += -DHAVE_SYSTEMD $(CFLAGS_SYSTEMD)
diff --git a/mpd-notification.h b/mpd-notification.h
index cd8b386..a7f9453 100644
--- a/mpd-notification.h
+++ b/mpd-notification.h
@@ -34,7 +34,7 @@
#include <systemd/sd-daemon.h>
#endif
-#include <iniparser.h>
+#include <iniparser/iniparser.h>
#include <libnotify/notify.h>
#include <mpd/client.h>