From owner-svn-ports-head@freebsd.org Fri Feb 7 01:50:32 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 124742404BB; Fri, 7 Feb 2020 01:50:32 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 48DJCq6L18z3y3r; Fri, 7 Feb 2020 01:50:31 +0000 (UTC) (envelope-from mi@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 D004F25003; Fri, 7 Feb 2020 01:50:31 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0171oVis075052; Fri, 7 Feb 2020 01:50:31 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0171oVjO075051; Fri, 7 Feb 2020 01:50:31 GMT (envelope-from mi@FreeBSD.org) Message-Id: <202002070150.0171oVjO075051@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Fri, 7 Feb 2020 01:50:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r525455 - head/multimedia/x265 X-SVN-Group: ports-head X-SVN-Commit-Author: mi X-SVN-Commit-Paths: head/multimedia/x265 X-SVN-Commit-Revision: 525455 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.29 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: Fri, 07 Feb 2020 01:50:32 -0000 Author: mi Date: Fri Feb 7 01:50:31 2020 New Revision: 525455 URL: https://svnweb.freebsd.org/changeset/ports/525455 Log: Be sure, PIC is enabled for all builds. Upstream was turning it on on amd64 automatically, and on i386 it was not necessary, but our other platforms broke. Reported by: jbeich Modified: head/multimedia/x265/Makefile Modified: head/multimedia/x265/Makefile ============================================================================== --- head/multimedia/x265/Makefile Thu Feb 6 23:28:09 2020 (r525454) +++ head/multimedia/x265/Makefile Fri Feb 7 01:50:31 2020 (r525455) @@ -53,8 +53,7 @@ VMAF_DESC= Per frame and aggregate VMAF score OPTIONS_SUB= yes USE_LDCONFIG= yes -CMAKE_ARGS= -DENABLE_PIC=on -DENABLE_TESTS=on \ - -DENABLE_HDR10_PLUS:BOOL=true +CMAKE_ARGS= -DENABLE_TESTS=on -DENABLE_HDR10_PLUS:BOOL=true LDFLAGS_i386= -Wl,-znotext EXTRACT_AFTER_ARGS+= --exclude compat PATCH_WRKSRC= ${WRKSRC:H} @@ -116,5 +115,6 @@ do-test: .endif CMAKE_ARGS+= -D_END_CUSTOM_OPTIONS=1 +CMAKE_ARGS+= -DENABLE_PIC:BOOL=true .include