diff options
author | matthieu <matthieu> | 2011-03-08 20:48:59 +0000 |
---|---|---|
committer | matthieu <matthieu> | 2011-03-08 20:48:59 +0000 |
commit | e03323d22e01f5cfd9ddf5997bfb2b01b6b0a1cc (patch) | |
tree | 8b5ca69c4bf37fbc046b0fd095937ab2dbc8c4ca | |
parent | 64e62989d01a1a14065ec220362dd67e85ce0b94 (diff) | |
download | cwm-e03323d22e01f5cfd9ddf5997bfb2b01b6b0a1cc.tar.gz cwm-e03323d22e01f5cfd9ddf5997bfb2b01b6b0a1cc.tar.xz cwm-e03323d22e01f5cfd9ddf5997bfb2b01b6b0a1cc.zip |
xcb is no longer optional.
-rw-r--r-- | Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Makefile b/Makefile index 8c43a84..7dc23b8 100644 --- a/Makefile +++ b/Makefile @@ -11,11 +11,8 @@ SRCS= calmwm.c screen.c xmalloc.c client.c menu.c \ CPPFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/freetype2 -I${.CURDIR} CFLAGS+= -Wall -.if ${XENOCARA_BUILD_XCB:L} != "no" -LIBXCB= -lxcb -.endif -LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 ${LIBXCB} -lXau -lXdmcp \ +LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 -lxcb -lXau -lXdmcp \ -lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr -lXext MANDIR= ${X11BASE}/man/cat |