svn commit: r525455 - head/multimedia/x265

Mikhail Teterin mi at FreeBSD.org
Fri Feb 7 01:50:32 UTC 2020


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>


More information about the svn-ports-head mailing list