From f91e92c43e8c82f30066b0ad9a325e587ea2b102 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Thu, 27 Apr 2006 11:47:09 -0700 Subject: [PATCH] Use pkg-config to find libXCBxtest in the Makefile for the xtest test application. --- app/xte/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/xte/Makefile b/app/xte/Makefile index b602e80..84f64ba 100644 --- a/app/xte/Makefile +++ b/app/xte/Makefile @@ -1,6 +1,6 @@ -pkgs = xcb xcb-keysyms +pkgs = xcb xcb-keysyms xcb-xtest CFLAGS = `pkg-config --cflags $(pkgs)` -g -Wall -Wpointer-arith -Wstrict-prototypes -LIBS = `pkg-config --libs $(pkgs)` -lXCBxtest +LIBS = `pkg-config --libs $(pkgs)` xte: xte.c $(CC) $(CFLAGS) xte.c $(LIBS) -o xte -- 2.34.1