svn commit: r568022 - head/www/nostromo
Ed Maste
emaste at FreeBSD.org
Wed Mar 10 18:24:00 UTC 2021
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 at 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 \
More information about the svn-ports-all
mailing list