Date: Wed, 10 Mar 2021 18:21:04 +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: r568020 - head/mail/mailest Message-ID: <202103101821.12AIL4NQ051865@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: emaste (src committer) Date: Wed Mar 10 18:21:04 2021 New Revision: 568020 URL: https://svnweb.freebsd.org/changeset/ports/568020 Log: mail/mailest: 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/D28866 Modified: head/mail/mailest/Makefile Modified: head/mail/mailest/Makefile ============================================================================== --- head/mail/mailest/Makefile Wed Mar 10 18:19:01 2021 (r568019) +++ head/mail/mailest/Makefile Wed Mar 10 18:21:04 2021 (r568020) @@ -27,6 +27,9 @@ GH_ACCOUNT= yasuoka MAKE_ENV= USE_BSDMAKE=true WITH_INSTALL_AS_USER=true +# XXX Static libraries with PIE are currently unsupported +MAKE_ENV+= WITHOUT_PIE=true + LICENSE_BSD2CLAUSE_SRC= bytebuf.c replace/sys/tree.h LICENSE_BSD3CLAUSE_SRC= replace/sys/queue.h LICENSE_ISCL_SRC= mailestctl.c parser.c parser.h \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202103101821.12AIL4NQ051865>