svn commit: r567931 - head/japanese/kon2-16dot

Ed Maste emaste at FreeBSD.org
Tue Mar 9 14:10:35 UTC 2021


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 at 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)


More information about the svn-ports-head mailing list