From 063e29fd1bfffb4e3540aca63ce55e7844306199 Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Fri, 9 Mar 2018 19:28:57 +0200 Subject: [PATCH] Remove parsing of the X11LIB variable X11LIB was introduced along with other similar variables such as X11INC in 1faee75, before dunst used pkg-config to manage libraries. These variables were removed after the introduction of pkg-config in 0de2e17 so theoretically it is safe to remove it. I really hope this doesn't break something... --- config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.mk b/config.mk index 19cdb48..08808c6 100644 --- a/config.mk +++ b/config.mk @@ -15,7 +15,7 @@ PKG_CONFIG ?= pkg-config # flags CPPFLAGS += -D_DEFAULT_SOURCE -DVERSION=\"${VERSION}\" CFLAGS += -g --std=gnu99 -pedantic -Wall -Wno-overlength-strings -Os ${STATIC} ${CPPFLAGS} -LDFLAGS += -lm -L${X11LIB} +LDFLAGS += -lm CPPFLAGS_DEBUG := -DDEBUG_BUILD CFLAGS_DEBUG := -O0