From owner-svn-ports-head@freebsd.org Sun Feb 11 22:48:33 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D665DF205E6; Sun, 11 Feb 2018 22:48:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 816846FE9C; Sun, 11 Feb 2018 22:48:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 7C57813E9; Sun, 11 Feb 2018 22:48:33 +0000 (UTC) (envelope-from madpilot@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w1BMmXj9002314; Sun, 11 Feb 2018 22:48:33 GMT (envelope-from madpilot@FreeBSD.org) Received: (from madpilot@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w1BMmXLC002313; Sun, 11 Feb 2018 22:48:33 GMT (envelope-from madpilot@FreeBSD.org) Message-Id: <201802112248.w1BMmXLC002313@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: madpilot set sender to madpilot@FreeBSD.org using -f From: Guido Falsi Date: Sun, 11 Feb 2018 22:48:33 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r461535 - head/multimedia/x265 X-SVN-Group: ports-head X-SVN-Commit-Author: madpilot X-SVN-Commit-Paths: head/multimedia/x265 X-SVN-Commit-Revision: 461535 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Feb 2018 22:48:34 -0000 Author: madpilot Date: Sun Feb 11 22:48:33 2018 New Revision: 461535 URL: https://svnweb.freebsd.org/changeset/ports/461535 Log: ake advatnage of USES=compiler:c++14-lang instead of forcing clang 5.0 usage. This should play better with non intel architectures we support. Suggested by: jbeich@ (Thanks) Modified: head/multimedia/x265/Makefile Modified: head/multimedia/x265/Makefile ============================================================================== --- head/multimedia/x265/Makefile Sun Feb 11 22:36:07 2018 (r461534) +++ head/multimedia/x265/Makefile Sun Feb 11 22:48:33 2018 (r461535) @@ -15,7 +15,7 @@ LICENSE_FILE= ${WRKSRC}/../COPYING BUILD_DEPENDS= yasm:devel/yasm -USES= cmake pathfix +USES= cmake compiler:c++14-lang pathfix OPTIONS_DEFINE= DEBUG OPTIMIZED_FLAGS OPTIONS_DEFINE_amd64= HI10P HI12P @@ -40,16 +40,7 @@ CFLAGS_mips64= -DNO_ATOMICS # cannot use lang/gcc EXTRACT_AFTER_ARGS+= --exclude "md5*" WRKSRC= ${WRKDIR}/${PORTNAME}_v${PORTVERSION}/source -.include - -.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1100052 -BUILD_DEPENDS+= ${LOCALBASE}/bin/clang50:devel/llvm50 -CPP= ${LOCALBASE}/bin/clang-cpp50 -CC= ${LOCALBASE}/bin/clang50 -CXX= ${LOCALBASE}/bin/clang++50 -.endif - do-test: ${WRKSRC}/test/TestBench -.include +.include