diff options
author | Brian Callahan <bcallah@cvs.openbsd.org> | 2013-08-17 17:05:44 +0000 |
---|---|---|
committer | Brian Callahan <bcallah@cvs.openbsd.org> | 2013-08-17 17:05:44 +0000 |
commit | b93e4d5a60e7a96b845feab6048899b5ca915042 (patch) | |
tree | 91cf48e2d7dfc8fa9c2a99c136ab3845f74a06bb | |
parent | ca5b3f203d87462c9be0d165916845f3b588a814 (diff) |
As discussed with matthieu@, since there are no octeon machines with video
output where OpenGL makes since, we should disable OpenGL on octeon.
ok matthieu@
-rw-r--r-- | share/mk/bsd.xconf.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/share/mk/bsd.xconf.mk b/share/mk/bsd.xconf.mk index 69447ea6f..05e530eb2 100644 --- a/share/mk/bsd.xconf.mk +++ b/share/mk/bsd.xconf.mk @@ -1,4 +1,4 @@ -# $OpenBSD: bsd.xconf.mk,v 1.25 2013/08/12 04:16:52 jsg Exp $ +# $OpenBSD: bsd.xconf.mk,v 1.26 2013/08/17 17:05:43 bcallah Exp $ # Shared libs? .if ${MACHINE} == "vax" @@ -8,8 +8,13 @@ XENOCARA_HAVE_SHARED_LIBS?=yes .endif # Build GL libs and apps? +.if ${MACHINE} == "octeon" +XENOCARA_BUILD_GL?=no +XENOCARA_BUILD_DRI?=no +.else XENOCARA_BUILD_GL?=${XENOCARA_HAVE_SHARED_LIBS:L} XENOCARA_BUILD_DRI?=${XENOCARA_HAVE_SHARED_LIBS:L} +.endif XENOCARA_BUILD_GALLIUM?=${XENOCARA_HAVE_SHARED_LIBS:L} # Build pixman? |