Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 6 Nov 2019 21:17:24 +0000 (UTC)
From:      Cy Schubert <cy@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r516926 - head/sysutils/screen
Message-ID:  <201911062117.xA6LHOfM011882@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Wed Nov  6 21:17:24 2019
New Revision: 516926
URL: https://svnweb.freebsd.org/changeset/ports/516926

Log:
  Circumvent a hang on FreeBSD 11 i386 caused by an unreported (only visible
  through truss) stack assertion.
  
  This is a temporary fix which will require further investigation to
  determine the cause.
  
  PR:		241750
  Reported by:	Victor Sudakov <vas@sibptus.ru> (in the PR)
  		Paul Beard <paulbeard@gmail.com> (via direct email)

Modified:
  head/sysutils/screen/Makefile

Modified: head/sysutils/screen/Makefile
==============================================================================
--- head/sysutils/screen/Makefile	Wed Nov  6 20:49:25 2019	(r516925)
+++ head/sysutils/screen/Makefile	Wed Nov  6 21:17:24 2019	(r516926)
@@ -3,7 +3,7 @@
 
 PORTNAME=	screen
 PORTVERSION=	4.7.0
-PORTREVISION=	5
+PORTREVISION=	6
 CATEGORIES=	sysutils
 MASTER_SITES=	GNU \
 		ftp://ftp.gnu.org/gnu/screen/ \
@@ -50,6 +50,9 @@ CPE_VENDOR=	gnu
 .include <bsd.port.options.mk>
 
 .if ${ARCH} == armv6 || ${ARCH} == armv7
+SSP_CFLAGS?=	-fno-stack-protector
+.endif
+.if ${ARCH} == i386 && ${OSVERSION} < 1200000
 SSP_CFLAGS?=	-fno-stack-protector
 .endif
 



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