Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Jun 2020 00:11:26 +0000 (UTC)
From:      Piotr Kubaj <pkubaj@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r537586 - head/graphics/openexr
Message-ID:  <202006030011.0530BQI1082105@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: pkubaj
Date: Wed Jun  3 00:11:26 2020
New Revision: 537586
URL: https://svnweb.freebsd.org/changeset/ports/537586

Log:
  graphics/openexr: fix build on powerpc head
  
  USE_GCC=yes breaks build on head, because powerpc now uses libc++. On stable/11 and stable/12, it's redundant because there already is USES=compiler:c++14-lang.

Modified:
  head/graphics/openexr/Makefile

Modified: head/graphics/openexr/Makefile
==============================================================================
--- head/graphics/openexr/Makefile	Tue Jun  2 22:49:59 2020	(r537585)
+++ head/graphics/openexr/Makefile	Wed Jun  3 00:11:26 2020	(r537586)
@@ -39,12 +39,6 @@ _DOC_FILES1=	CHANGES.md CONTRIBUTING.md GOVERNANCE.md 
 		CODE_OF_CONDUCT.md CONTRIBUTORS.md README.md
 _DOC_FILES2=	*.odt *.pdf
 
-.include <bsd.port.pre.mk>
-
-.if ${ARCH} == powerpc
-USE_GCC=	yes
-.endif
-
 MAJORVER=	2_5
 VER=		25
 
@@ -89,4 +83,4 @@ post-install-EXAMPLES-on:
 do-test:
 	cd ${BUILD_WRKSRC} && ctest -j ${MAKE_JOBS_NUMBER}
 
-.include <bsd.port.post.mk>
+.include <bsd.port.mk>



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