Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 1 Mar 2021 20:52:34 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r566909 - head/multimedia/cx88
Message-ID:  <202103012052.121KqY2p073843@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Mon Mar  1 20:52:33 2021
New Revision: 566909
URL: https://svnweb.freebsd.org/changeset/ports/566909

Log:
  multimedia/cx88: fix build with base system PIE default
  
  PIE with static libraries is currently unsupported in the FreeBSD base
  system.  Explicitly disable PIE for in affected ports for now.
  
  PR:		253275
  Submitted by:	Dawid Gorecki <dgr@semihalf.com>
  Approved by:	jah (maintainer), lwhsu
  Differential Revision:	https://reviews.freebsd.org/D28869

Modified:
  head/multimedia/cx88/Makefile

Modified: head/multimedia/cx88/Makefile
==============================================================================
--- head/multimedia/cx88/Makefile	Mon Mar  1 20:51:27 2021	(r566908)
+++ head/multimedia/cx88/Makefile	Mon Mar  1 20:52:33 2021	(r566909)
@@ -16,6 +16,8 @@ LIB_DEPENDS=	libjson-c.so:devel/json-c
 BUILD_DEPENDS=	${LOCALBASE}/lib/libezxml.a:textproc/ezxml \
 		libtuner>=1.1.4:multimedia/libtuner
 
+# XXX static libraries with PIE are currently unsupported
+MAKE_ARGS+=	WITHOUT_PIE=true
 MAKE_ARGS+=	LIBTUNER_LIB=${LOCALBASE}/lib/libtuner LIBTUNER_HEADER=${LOCALBASE}/include/libtuner KMODDIR=${KMODDIR} PREFIX=${STAGEDIR}${PREFIX}
 MAKE_JOBS_UNSAFE=	yes
 USES=			kmod libedit pkgconfig uidfix



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