svn commit: r568019 - head/net/sup

Ed Maste emaste at FreeBSD.org
Wed Mar 10 18:19:02 UTC 2021


Author: emaste (src committer)
Date: Wed Mar 10 18:19:01 2021
New Revision: 568019
URL: https://svnweb.freebsd.org/changeset/ports/568019

Log:
  net/sup: 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 [exp-run]
  Submitted by:	Dawid Gorecki <dgr at semihalf.com>
  Approved by:	lwhsu
  Approved by:	Maintainer timeout
  Differential Revision:	https://reviews.freebsd.org/D28801

Modified:
  head/net/sup/Makefile

Modified: head/net/sup/Makefile
==============================================================================
--- head/net/sup/Makefile	Wed Mar 10 18:17:52 2021	(r568018)
+++ head/net/sup/Makefile	Wed Mar 10 18:19:01 2021	(r568019)
@@ -16,6 +16,9 @@ USES=		uidfix
 USE_GITHUB=	yes
 GH_ACCOUNT=	hrs-allbsd
 
+# XXX Static libraries with PIE are currently unsupported.
+MAKE_ARGS+=	WITHOUT_PIE=true
+
 PLIST_FILES=	bin/sup bin/supfilesrv bin/supscan \
 		man/man1/sup.1.gz man/man8/supfilesrv.8.gz \
 		man/man8/supscan.8.gz man/man8/supservers.8.gz


More information about the svn-ports-head mailing list