summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2013-10-25 18:13:00 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2013-10-25 18:13:00 +0000
commitb78a7031bc2b387781902123c4ac82520435289f (patch)
tree04a66595c27bc12892210384eedbc2571f8ede7a /Makefile
parent14ee9ec107fcee5bbf38b2e7d912820229a15d83 (diff)
Do not attempt to build kdrive if we did not build Mesa, for its configure
script looks for libGL. ok matthieu@
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 21e2e9d29..b3aa82256 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.53 2013/09/09 19:17:09 espie Exp $
+# $OpenBSD: Makefile,v 1.54 2013/10/25 18:12:59 miod Exp $
.include <bsd.own.mk>
.include <bsd.xconf.mk>
@@ -14,6 +14,7 @@ XSERVER= xserver
.if defined(XENOCARA_BUILD_PIXMAN)
.if ${XENOCARA_BUILD_PIXMAN:L} == "yes" && \
+ ${XENOCARA_BUILD_GL:L} == "yes" && \
${XENOCARA_HAVE_SHARED_LIBS:L} == "yes"
XSERVER+= kdrive
.endif