diff options
author | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
---|---|---|
committer | Jeremy Lea <reg@FreeBSD.org> | 2000-04-17 00:18:05 +0000 |
commit | 877b8a533b44bb6324ebbaf65cd80a60d1572003 (patch) | |
tree | e1a018208ceade04ca56a70c5184978cac51853e /graphics/utah-glx/Makefile | |
parent | Replace AWOL maintainer with an active one (Assar Westerlund <assar@stacken.k... (diff) |
Standardize all user defined options to the booleans WITH_FOO and
WITHOUT_FOO. Begin the process of reserving these prefixes for user defined
options.
No comment by: ports
Diffstat (limited to 'graphics/utah-glx/Makefile')
-rw-r--r-- | graphics/utah-glx/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/graphics/utah-glx/Makefile b/graphics/utah-glx/Makefile index e5e168c91dd9..0e0b70ee25cb 100644 --- a/graphics/utah-glx/Makefile +++ b/graphics/utah-glx/Makefile @@ -91,16 +91,16 @@ GNU_CONFIGURE= yes # we support nvidia RIVA 128, TNT.. and Matrox G200/400 cards .if defined(CHIPSET_3D) .if ${CHIPSET_3D} == RIVA -WITH_CHIPSET= --with-chipset=tnt +CONFIGURE_ARGS= --with-chipset=tnt .endif .if ${CHIPSET_3D} == MGA -WITH_CHIPSET= --with-chipset=mga +CONFIGURE_ARGS= --with-chipset=mga .endif .endif -CONFIGURE_ARGS= --with-mesa=${MESADIR} \ +CONFIGURE_ARGS+= --with-mesa=${MESADIR} \ --with-mesa-version=mesa30 \ - ${WITH_CHIPSET} # --with-mmx-asm --with-3dnow-asm + # --with-mmx-asm --with-3dnow-asm USE_GMAKE= yes |