Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 10 Mar 2021 18:24:00 +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: r568022 - head/www/nostromo
Message-ID:  <202103101824.12AIO0aF056176@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste (src committer)
Date: Wed Mar 10 18:24:00 2021
New Revision: 568022
URL: https://svnweb.freebsd.org/changeset/ports/568022

Log:
  www/nostromo: 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/D28864

Modified:
  head/www/nostromo/Makefile

Modified: head/www/nostromo/Makefile
==============================================================================
--- head/www/nostromo/Makefile	Wed Mar 10 18:22:44 2021	(r568021)
+++ head/www/nostromo/Makefile	Wed Mar 10 18:24:00 2021	(r568022)
@@ -21,6 +21,9 @@ USES=		uidfix ssl
 MAKE_ENV?=	MAKEOBJDIR=. NOSTROMO_DIR=${NOSTROMO_DIR} MANDIR=${PREFIX}/man/man
 PLIST_SUB+=	NOSTROMODIR="${NOSTROMO_DIR}" NOSTROMOLOGDIR="${NOSTROMO_LOGDIR}"
 
+# XXX PIE with static libraries is currently unsupported.
+MAKE_ENV+=	WITHOUT_PIE=true
+
 post-extract:
 	@${REINPLACE_CMD} -e "s@/var/nostromo@${NOSTROMO_DIR}@g" \
 		${WRKSRC}/src/nhttpd/nhttpd.8	\



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