Date: Thu, 7 Jun 2018 13:36:45 +0000 (UTC) From: Philip Paeps <philip@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r471921 - head/graphics/dspdfviewer Message-ID: <201806071336.w57DajA9036063@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: philip Date: Thu Jun 7 13:36:45 2018 New Revision: 471921 URL: https://svnweb.freebsd.org/changeset/ports/471921 Log: Fix build on 12.0-CURRENT >= 1200056 (LLVM update) Submitted by: Santhosh Raju <santhosh.raju@gmail.com> (maintainer) Modified: head/graphics/dspdfviewer/Makefile Modified: head/graphics/dspdfviewer/Makefile ============================================================================== --- head/graphics/dspdfviewer/Makefile Thu Jun 7 13:33:03 2018 (r471920) +++ head/graphics/dspdfviewer/Makefile Thu Jun 7 13:36:45 2018 (r471921) @@ -43,4 +43,8 @@ CFLAGS+= -Wno-error=undefined-func-template CFLAGS+= -Wno-error=zero-as-null-pointer-constant .endif +.if ${OPSYS} == FreeBSD && ${OSVERSION} >= 1200056 +CFLAGS+= -Wno-error=redundant-parens +.endif + .include <bsd.port.post.mk>
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201806071336.w57DajA9036063>