290e67360e
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@
21 lines
438 B
Makefile
21 lines
438 B
Makefile
# $OpenBSD: bsd.xconf.mk,v 1.24 2013/04/14 10:23:04 mpi Exp $
|
|
|
|
# Shared libs?
|
|
.if ${MACHINE} == "vax"
|
|
XENOCARA_HAVE_SHARED_LIBS?=no
|
|
.else
|
|
XENOCARA_HAVE_SHARED_LIBS?=yes
|
|
.endif
|
|
|
|
# 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"
|
|
XENOCARA_BUILD_PIXMAN?=no
|
|
.else
|
|
XENOCARA_BUILD_PIXMAN?=yes
|
|
.endif
|