diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2011-03-08 20:49:00 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2011-03-08 20:49:00 +0000 |
commit | 8497862bdc0e560d1d9fd5306860b00b1fbc1f79 (patch) | |
tree | f43a538f6c8aa3f931f0d0158892cace0b728d50 /app/xtsscale | |
parent | e3a3855ef99aac36d1c9dd930ab403ef96c040d1 (diff) |
xcb is no longer optional.
Diffstat (limited to 'app/xtsscale')
-rw-r--r-- | app/xtsscale/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/app/xtsscale/Makefile b/app/xtsscale/Makefile index 4d37e3fa4..081c9e6c8 100644 --- a/app/xtsscale/Makefile +++ b/app/xtsscale/Makefile @@ -1,17 +1,13 @@ -# $OpenBSD: Makefile,v 1.9 2010/01/22 07:47:54 matthieu Exp $ +# $OpenBSD: Makefile,v 1.10 2011/03/08 20:48:59 matthieu Exp $ .include <bsd.xconf.mk> PROG= xtsscale MAN= xtsscale.1 -.if ${XENOCARA_BUILD_XCB:L} == "yes" -LIBXCB= -lxcb -.endif - CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 \ -I${.CURDIR}/../../driver/xf86-input-ws/include LDADD+= -L${X11BASE}/lib -lXft -lXi -lXrender -lXrandr -lXext -lX11 \ - ${LIBXCB} -lXau -lXdmcp -lfontconfig -lexpat -lfreetype -lz + -lxcb -lXau -lXdmcp -lfontconfig -lexpat -lfreetype -lz CFLAGS+= -Wall MANDIR= ${X11BASE}/man/cat |