diff options
author | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-04-14 10:23:05 +0000 |
---|---|---|
committer | Martin Pieuchot <mpi@cvs.openbsd.org> | 2013-04-14 10:23:05 +0000 |
commit | fd966211d0808f21e2a14207100cee08ad90da25 (patch) | |
tree | dc0204a6c1d89edd8343aec8b42420a69a477e5b /share/mk/bsd.xconf.mk | |
parent | 40170538c6bbb9521a9daad95a80aa00d9f23903 (diff) |
Add a new option to the xenocara infrastructure be able to automatically
build the Gallium3D software rasterizer as part of the libGL.
Note that it can also makes use of LLVM to build the llvmpipe if the
corresponding port is installed. Please refer to the README for a more
complete documentation.
Prodded by ajacoutot@, ok matthieu@
Diffstat (limited to 'share/mk/bsd.xconf.mk')
-rw-r--r-- | share/mk/bsd.xconf.mk | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/mk/bsd.xconf.mk b/share/mk/bsd.xconf.mk index 5409d9b1d..937ebcbdb 100644 --- a/share/mk/bsd.xconf.mk +++ b/share/mk/bsd.xconf.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xconf.mk,v 1.23 2013/02/21 17:45:34 todd Exp $ +# $OpenBSD: bsd.xconf.mk,v 1.24 2013/04/14 10:23:04 mpi Exp $ # Shared libs? .if ${MACHINE} == "vax" @@ -10,6 +10,7 @@ XENOCARA_HAVE_SHARED_LIBS?=yes # Build GL libs and apps? XENOCARA_BUILD_GL?=${XENOCARA_HAVE_SHARED_LIBS:L} XENOCARA_BUILD_DRI?=${XENOCARA_HAVE_SHARED_LIBS:L} +XENOCARA_BUILD_GALLIUM?=no # Build pixman? .if ${MACHINE} == "vax" |