From 3a4d0d414728032ea35368bf3da91327e2e9e855 Mon Sep 17 00:00:00 2001 From: Doug Torrance Date: Sat, 22 Nov 2014 20:48:38 -0600 Subject: [PATCH] wmcliphist: Add X11 build flags; otherwise wmcliphist fails to build. --- wmcliphist/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wmcliphist/Makefile b/wmcliphist/Makefile index be3449d..c8ba5a9 100644 --- a/wmcliphist/Makefile +++ b/wmcliphist/Makefile @@ -1,6 +1,6 @@ CC ?= gcc PREFIX = /usr/local -INCLUDES = `pkg-config --cflags gtk+-2.0` -I. -Ifoodock +INCLUDES = `pkg-config --cflags gtk+-2.0 x11` -I. -Ifoodock # for normal use CFLAGS += -Wall -ansi -pedantic $(INCLUDES) @@ -12,7 +12,7 @@ DEBUG = #CFLAGS += -Wall -g -ansi $(INCLUDES) -DFNCALL_DEBUG #DEBUG = debug.o -LIBS = `pkg-config --libs gtk+-2.0` +LIBS = `pkg-config --libs gtk+-2.0 x11` OBJECTS = wmcliphist.o clipboard.o gui.o rcconfig.o history.o hotkeys.o utils.o $(DEBUG) TARGET = wmcliphist -- 2.11.4.GIT