Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 7 Nov 2019 17:00:49 +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: r516986 - head/sysutils/screen
Message-ID:  <201911071700.xA7H0nah017753@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Thu Nov  7 17:00:49 2019
New Revision: 516986
URL: https://svnweb.freebsd.org/changeset/ports/516986

Log:
  Memory constrained i386 is affected on all versions of FreeBSD. Though
  I am not able to reproduce this locally, it is reported that the hang
  also occurs on -CURRENT i386 on a memory constrained Intel Pentium III.
  (I am not able to reproduce this hang on my sandbox machine, with multiple
  boot partitions, one of which is i386 -CURRENT, because it has plenty of
  memory.)
  
  Reported by:	Michael Butler <imb@protected-networks.net>

Modified:
  head/sysutils/screen/Makefile

Modified: head/sysutils/screen/Makefile
==============================================================================
--- head/sysutils/screen/Makefile	Thu Nov  7 16:48:55 2019	(r516985)
+++ head/sysutils/screen/Makefile	Thu Nov  7 17:00:49 2019	(r516986)
@@ -3,7 +3,7 @@
 
 PORTNAME=	screen
 PORTVERSION=	4.7.0
-PORTREVISION=	6
+PORTREVISION=	7
 CATEGORIES=	sysutils
 MASTER_SITES=	GNU \
 		ftp://ftp.gnu.org/gnu/screen/ \
@@ -49,10 +49,7 @@ CPE_VENDOR=	gnu
 
 .include <bsd.port.options.mk>
 
-.if ${ARCH} == armv6 || ${ARCH} == armv7
-SSP_CFLAGS?=	-fno-stack-protector
-.endif
-.if ${ARCH} == i386 && ${OSVERSION} < 1200000
+.if ${ARCH} == armv6 || ${ARCH} == armv7 || ${ARCH} == i386
 SSP_CFLAGS?=	-fno-stack-protector
 .endif
 



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