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/xidle | |
parent | e3a3855ef99aac36d1c9dd930ab403ef96c040d1 (diff) |
xcb is no longer optional.
Diffstat (limited to 'app/xidle')
-rw-r--r-- | app/xidle/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/app/xidle/Makefile b/app/xidle/Makefile index 8c61aff70..72ab36f3c 100644 --- a/app/xidle/Makefile +++ b/app/xidle/Makefile @@ -1,14 +1,11 @@ -# $OpenBSD: Makefile,v 1.5 2010/11/27 14:25:47 matthieu Exp $ +# $OpenBSD: Makefile,v 1.6 2011/03/08 20:48:59 matthieu Exp $ .include <bsd.xconf.mk> PROG= xidle CPPFLAGS+= -I${X11BASE}/include CFLAGS+= -Wall -.if ${XENOCARA_BUILD_XCB:L} != "no" -LIBXCB= -lxcb -.endif -LDADD+= -L${X11BASE}/lib -lXss -lXext -lX11 ${LIBXCB} -lXau -lXdmcp +LDADD+= -L${X11BASE}/lib -lXss -lXext -lX11 -lxcb -lXau -lXdmcp MANDIR= ${X11BASE}/man/cat |