Date: Wed, 10 Mar 2021 18:19:01 +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: r568019 - head/net/sup Message-ID: <202103101819.12AIJ1eP049815@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103101819.12AIJ1eP049815>