svn commit: r476404 - head/multimedia/xvid

Thomas Zander riggs at FreeBSD.org
Sun Aug 5 10:24:49 UTC 2018


Author: riggs
Date: Sun Aug  5 10:24:48 2018
New Revision: 476404
URL: https://svnweb.freebsd.org/changeset/ports/476404

Log:
  Set LLD_UNSAFE on i386 in preparation for switch to lld on FreeBSD 12
  
  PR:		230208
  Reported by:	emaste

Modified:
  head/multimedia/xvid/Makefile

Modified: head/multimedia/xvid/Makefile
==============================================================================
--- head/multimedia/xvid/Makefile	Sun Aug  5 10:05:07 2018	(r476403)
+++ head/multimedia/xvid/Makefile	Sun Aug  5 10:24:48 2018	(r476404)
@@ -36,6 +36,12 @@ OPTIONS_DEFINE=	OPTIMIZED_CFLAGS
 .if ${ARCH} == "amd64"
 CONFIGURE_TARGET=	x86_64-portbld-freebsd${OSREL}
 .endif
+
+.if ${ARCH}=="i386"
+# relocation against symbol in readonly segment
+LLD_UNSAFE=	yes
+.endif
+
 .if ${ARCH} == "amd64" || ${ARCH} == "i386"
 BUILD_DEPENDS+=	nasm:devel/nasm
 .endif


More information about the svn-ports-head mailing list