svn commit: r516926 - head/sysutils/screen

Cy Schubert cy at FreeBSD.org
Wed Nov 6 21:17:25 UTC 2019


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 at sibptus.ru> (in the PR)
  		Paul Beard <paulbeard at 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
 


More information about the svn-ports-all mailing list