From d24b17b1058498eaff3ad92665bc6855034b4770 Mon Sep 17 00:00:00 2001 From: cube Date: Mon, 12 Jul 2004 19:27:05 +0000 Subject: For USE_MMX users, do the following: o only include it in the BUILD_DEFS if the current platform is concerned. For now that only includes i386, but we might find amd64 users in the future. o test against [Yy][Ee][Ss], for consistency. Fixes part of PR 26243. --- graphics/imlib2/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'graphics/imlib2') diff --git a/graphics/imlib2/Makefile b/graphics/imlib2/Makefile index 307906b823b..12fee2e9ee5 100644 --- a/graphics/imlib2/Makefile +++ b/graphics/imlib2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.19 2004/02/14 18:26:28 jmmv Exp $ +# $NetBSD: Makefile,v 1.20 2004/07/12 19:27:05 cube Exp $ # DISTNAME= imlib2-1.1.0 @@ -21,10 +21,12 @@ LIBS.SunOS= -lm .include "../../mk/bsd.prefs.mk" -.if ${MACHINE_ARCH} == "i386" && ${USE_MMX} != "NO" +.if ${MACHINE_ARCH} == "i386" +BUILD_DEFS+= USE_MMX +. if !empty(USE_MMX:M[Yy][Ee][Ss]) CONFIGURE_ARGS+= --enable-mmx +. endif .endif -BUILD_DEFS+= USE_MMX .include "../../devel/pkgconfig/buildlink3.mk" .include "../../graphics/freetype2/buildlink3.mk" -- cgit v1.2.3