svn commit: r568020 - head/mail/mailest

Ed Maste emaste at FreeBSD.org
Wed Mar 10 18:21:05 UTC 2021


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


More information about the svn-ports-all mailing list