Date: Sat, 2 Jul 2016 11:41:26 +0000 (UTC) From: Pawel Pekala <pawel@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417928 - head/graphics/mupdf Message-ID: <201607021141.u62BfQid092390@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pawel Date: Sat Jul 2 11:41:26 2016 New Revision: 417928 URL: https://svnweb.freebsd.org/changeset/ports/417928 Log: Remove -I${LOCALBASE}/include from CFLAGS, it leads to broken build when older version is already installed on the system. Newer mupdf tries to build against old headers and in meanwhile API has changed considerably. PR: 210741 Submitted by: Tobias Kortkamp Reported by: drhowarddrfine@charter.net Modified: head/graphics/mupdf/Makefile Modified: head/graphics/mupdf/Makefile ============================================================================== --- head/graphics/mupdf/Makefile Sat Jul 2 11:35:15 2016 (r417927) +++ head/graphics/mupdf/Makefile Sat Jul 2 11:41:26 2016 (r417928) @@ -21,7 +21,7 @@ LIB_DEPENDS= libcurl.so:ftp/curl \ libjbig2dec.so:graphics/jbig2dec \ libopenjp2.so:graphics/openjpeg -CFLAGS+= -I${WRKSRC}/include/mupdf -I${LOCALBASE}/include +CFLAGS+= -I${WRKSRC}/include/mupdf LIBS+= -L${LOCALBASE}/lib MAKE_ARGS= build=release prefix=${PREFIX} mandir=${PREFIX}/man verbose=yes USES= cpe compiler:c++11-lang gmake jpeg pkgconfig
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201607021141.u62BfQid092390>