aboutsummaryrefslogtreecommitdiff
path: root/graphics/libGLw
diff options
context:
space:
mode:
authorSteve Wills <swills@FreeBSD.org>2013-03-02 21:32:51 +0000
committerSteve Wills <swills@FreeBSD.org>2013-03-02 21:32:51 +0000
commit7b55291c59c80393e9eb139f36e8fe3ee2b99f29 (patch)
tree1d0348accd512e5829caf12a3a08a5ea3872830d /graphics/libGLw
parent735f615130350c902719f108cd1cbe48eaf294dc (diff)
downloadports-7b55291c59c80393e9eb139f36e8fe3ee2b99f29.tar.gz
ports-7b55291c59c80393e9eb139f36e8fe3ee2b99f29.zip
- Fix logic error which caused the gallium-intel driver to be always disabled [1]
- Make it possible to choose which DRI drivers will be built [2] PR: ports/174725 [1] PR: ports/154651 [2] Submitted by: John Marino <draco@marino.st> [1] Submitted by: bf [2] Reviewed by: kwm [2]
Notes
Notes: svn path=/head/; revision=313300
Diffstat (limited to 'graphics/libGLw')
-rw-r--r--graphics/libGLw/Makefile10
1 files changed, 3 insertions, 7 deletions
diff --git a/graphics/libGLw/Makefile b/graphics/libGLw/Makefile
index e7d60afeeab2..bee681133ace 100644
--- a/graphics/libGLw/Makefile
+++ b/graphics/libGLw/Makefile
@@ -1,13 +1,9 @@
-# New ports collection makefile for: libGLw
-# Date created: 7 May 2004
-# Whom: anholt@FreeBSD.org
-#
+# Created by: anholt@FreeBSD.org
# $FreeBSD$
-#
PORTNAME= libGLw
PORTVERSION= ${MESAVERSION}
-PORTREVISION= 1
+PORTREVISION= 2
CATEGORIES= graphics
COMMENT= OpenGL widgets library
@@ -23,7 +19,7 @@ do-install:
.include <bsd.port.pre.mk>
-.if ${ARCH} != "amd64" || ${ARCH} != "i386"
+.if !(${ARCH} == "amd64" || ${ARCH} == "i386")
CONFIGURE_ARGS+=--disable-gallium-intel
.endif