Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Mar 2021 14:10:35 +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: r567931 - head/japanese/kon2-16dot
Message-ID:  <202103091410.129EAZvV015355@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Tue Mar  9 14:10:35 2021
New Revision: 567931
URL: https://svnweb.freebsd.org/changeset/ports/567931

Log:
  japanese/kon2-16dot: 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.
  
  Emailed maintainer for approval, no objection.
  
  PR:		253275 [exp-run]
  Submitted by:	Dawid Gorecki <dgr@semihalf.com>
  Approved by:	lwhsu
  Differential Revision:	https://reviews.freebsd.org/D28868

Modified:
  head/japanese/kon2-16dot/Makefile

Modified: head/japanese/kon2-16dot/Makefile
==============================================================================
--- head/japanese/kon2-16dot/Makefile	Tue Mar  9 14:03:35 2021	(r567930)
+++ head/japanese/kon2-16dot/Makefile	Tue Mar  9 14:10:35 2021	(r567931)
@@ -25,6 +25,9 @@ SUB_LIST=	KON16FONT=${KON16FONT} \
 
 OPTIONS_DEFINE=	DOCS
 
+# XXX Static libraries with PIE are currently unsupported.
+MAKE_ARGS+=	WITHOUT_PIE=true
+
 .include <bsd.port.pre.mk>
 
 .if !defined(KONFONT)



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