Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Aug 2004 13:40:18 GMT
From:      Michael Johnson <ahze@ahze.net>
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   Re: ports/69832: [PATCH] multimedia/transcode: [add jpeg-mmx support]
Message-ID:  <200408301340.i7UDeIuE056894@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/69832; it has been noted by GNATS.

From: Michael Johnson <ahze@ahze.net>
To: freebsd-gnats-submit@FreeBSD.org
Cc: Hendrik Scholz <hscholz@raisdorf.net>,
	michael johnson <ahze@ahze.net>, Volker Stolz <vs@freebsd.org>
Subject: Re: ports/69832: [PATCH] multimedia/transcode: [add jpeg-mmx support]
Date: Mon, 30 Aug 2004 09:40:03 -0400

 Hi,
 
 I see a problem with my patch.
 
 in the part that reads
 
 .if exists(${LOCALBASE}/lib/libjpeg-mmx.so.62)
 WITH_JPEGMMX=  yes
 WITH_NASM=     yes
 .endif
 
 it probably should be the following because you can define WITH_JPEGMMX 
 and not have nasm installed.
 
 .if exists(${LOCALBASE}/lib/libjpeg-mmx.so.62)
 WITH_JPEGMMX= 	yes
 .endif
 
 .if defined(WITH_JPEGMMX)
 WITH_NASM=	yes
 .endif
 
 Michael
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200408301340.i7UDeIuE056894>