Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 19 Feb 2021 17:12:45 +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: r566081 - head/devel/libphk
Message-ID:  <202102191712.11JHCjVY061228@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Fri Feb 19 17:12:44 2021
New Revision: 566081
URL: https://svnweb.freebsd.org/changeset/ports/566081

Log:
  devel/libphk: fix build with base system PIE default
  
  PIE static libraries are currently not supported by the base system
  mk files.  For now just disable PIE in the affected ports as a
  workaround.
  
  PR:		253275
  Approved by:	lwhsu
  Sponsored by:	The FreeBSD Foundation
  Differential Revision:	https://reviews.freebsd.org/D28790

Modified:
  head/devel/libphk/Makefile

Modified: head/devel/libphk/Makefile
==============================================================================
--- head/devel/libphk/Makefile	Fri Feb 19 16:22:58 2021	(r566080)
+++ head/devel/libphk/Makefile	Fri Feb 19 17:12:44 2021	(r566081)
@@ -14,6 +14,9 @@ USES=		uidfix tar:tgz
 
 WRKSRC=		${WRKDIR}/Libphk
 
+# XXX static PIE libraries not yet supported by the base system
+MAKE_FLAGS+=	WITHOUT_PIE=true
+
 MAKE_JOBS_UNSAFE=	yes
 
 post-patch:



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