diff options
author | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-06-04 00:13:57 +0000 |
---|---|---|
committer | Matthieu Herrb <matthieu@cvs.openbsd.org> | 2009-06-04 00:13:57 +0000 |
commit | 29b13ae9fb8f05775fdb83a09fcca3276492cc5e (patch) | |
tree | 5c0505dfb201e5eddf514c732699355cc591e6b1 /lib/libX11 | |
parent | 9f1f2b984390f3db90d9df0fd999b94977f3cf2e (diff) |
if XENOCARA_BUILD_XCB is set, build the XCB version of libX11.
Diffstat (limited to 'lib/libX11')
-rw-r--r-- | lib/libX11/Makefile.bsd-wrapper | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libX11/Makefile.bsd-wrapper b/lib/libX11/Makefile.bsd-wrapper index 0d8518a17..80fe7f8e2 100644 --- a/lib/libX11/Makefile.bsd-wrapper +++ b/lib/libX11/Makefile.bsd-wrapper @@ -1,9 +1,13 @@ -# $OpenBSD: Makefile.bsd-wrapper,v 1.8 2009/06/03 23:56:07 matthieu Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.9 2009/06/04 00:13:56 matthieu Exp $ .include <bsd.xconf.mk> SHARED_LIBS= X11 11.2 -CONFIGURE_ARGS= --without-xcb --enable-tcp-transport --enable-unix-transport --enable-ipv6 +CONFIGURE_ARGS= --enable-tcp-transport --enable-unix-transport --enable-ipv6 + +.if ${XENOCARA_BUILD_XCB:L} == "no" +CONFIGURE_ARGS+= --disable-xcb +.endif .if ${XENOCARA_HAVE_SHARED_LIBS:L} == "no" CONFIGURE_ARGS+= --disable-loadable-xcursor |