diff options
author | matthieu | 2010-11-27 14:25:47 +0000 |
---|---|---|
committer | matthieu | 2010-11-27 14:25:47 +0000 |
commit | a2e547562236c8458a92b1718194e5f9f93754b6 (patch) | |
tree | f8c16188a8539e2b733d90dc392dff969697898e /Makefile | |
parent | 388113350aa93ef961008cd02a2fb30e76058291 (diff) | |
download | cwm-a2e547562236c8458a92b1718194e5f9f93754b6.tar.gz |
Explicitely link libxcb when needed for static arches.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.15 2009/01/19 20:23:19 todd Exp $ +# $OpenBSD: Makefile,v 1.16 2010/11/27 14:25:47 matthieu Exp $ .include <bsd.xconf.mk> @@ -11,8 +11,11 @@ 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 -lXau -lXdmcp \ +LDADD+= -L${X11BASE}/lib -lXft -lXrender -lX11 ${LIBXCB} -lXau -lXdmcp \ -lfontconfig -lexpat -lfreetype -lz -lXinerama -lXrandr -lXext MANDIR= ${X11BASE}/man/cat |