diff options
author | swills <swills@FreeBSD.org> | 2013-03-03 05:32:51 +0800 |
---|---|---|
committer | swills <swills@FreeBSD.org> | 2013-03-03 05:32:51 +0800 |
commit | 00a615b4c85e93d5ab7e7cf4bdc1f8c77a65150d (patch) | |
tree | 1d0348accd512e5829caf12a3a08a5ea3872830d /graphics/libGLw | |
parent | 753496fc3af61adc934d07bb3af39a564a4faf70 (diff) | |
download | freebsd-ports-gnome-00a615b4c85e93d5ab7e7cf4bdc1f8c77a65150d.tar.gz freebsd-ports-gnome-00a615b4c85e93d5ab7e7cf4bdc1f8c77a65150d.tar.zst freebsd-ports-gnome-00a615b4c85e93d5ab7e7cf4bdc1f8c77a65150d.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]
Diffstat (limited to 'graphics/libGLw')
-rw-r--r-- | graphics/libGLw/Makefile | 10 |
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 |