Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 7 Feb 2020 01:50:31 +0000 (UTC)
From:      Mikhail Teterin <mi@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r525455 - head/multimedia/x265
Message-ID:  <202002070150.0171oVjO075051@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 <bsd.port.mk>



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