svn commit: r493777 - head/graphics/mupdf

Tijl Coosemans tijl at FreeBSD.org
Sun Feb 24 19:04:43 UTC 2019


On Sun, 24 Feb 2019 17:48:15 +0000 (UTC) Alexandre C. Guimarães
<rigoletto at FreeBSD.org> wrote:
> Author: rigoletto
> Date: Sun Feb 24 17:48:15 2019
> New Revision: 493777
> URL: https://svnweb.freebsd.org/changeset/ports/493777
> 
> Log:
>   graphics/mupdf: fix build when graphics/openjpeg15 is present.
>   
>   PR:		235996
>   Submitted by:	Walter Schwarzenfeld <w.schwarzenfeld at utanet.at>
>   Reported by:	Marco Beishuizen <mbeis at xs4all.nl>
>   Approved by:	tcberner (mentor)
> 
> Modified:
>   head/graphics/mupdf/Makefile
> 
> Modified: head/graphics/mupdf/Makefile
> ==============================================================================
> --- head/graphics/mupdf/Makefile	Sun Feb 24 17:40:26 2019	(r493776)
> +++ head/graphics/mupdf/Makefile	Sun Feb 24 17:48:15 2019	(r493777)
> @@ -27,6 +27,9 @@ USE_GL=		gl glut
>  CPE_VENDOR=	artifex
>  USE_LDCONFIG=	yes
>  
> +# pkg-config to avoid the conflict with openjpeg15
> +CFLAGS+=	`pkg-config --cflags libopenjp2`

This means pkg-config will run every time the compiler is run.  Can't
you simply list the actual cflags here?


More information about the svn-ports-all mailing list