Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Nov 2019 20:43:08 +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: r516740 - head/sysutils/screen
Message-ID:  <201911042043.xA4Kh8Q1032433@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cy
Date: Mon Nov  4 20:43:08 2019
New Revision: 516740
URL: https://svnweb.freebsd.org/changeset/ports/516740

Log:
  Fix a stack assertion under arm.
  
  PR:		241690
  Submitted by:	mikael.urankar at gmail.com
  Reported by:	Ulrich Grey <usenet at ulrich-grey.de>

Modified:
  head/sysutils/screen/Makefile   (contents, props changed)

Modified: head/sysutils/screen/Makefile
==============================================================================
--- head/sysutils/screen/Makefile	Mon Nov  4 20:40:06 2019	(r516739)
+++ head/sysutils/screen/Makefile	Mon Nov  4 20:43:08 2019	(r516740)
@@ -3,7 +3,7 @@
 
 PORTNAME=	screen
 PORTVERSION=	4.7.0
-PORTREVISION=	4
+PORTREVISION=	5
 CATEGORIES=	sysutils
 MASTER_SITES=	GNU \
 		ftp://ftp.gnu.org/gnu/screen/ \
@@ -48,6 +48,10 @@ MAKE_ARGS+=	WITH_MAN=1
 CPE_VENDOR=	gnu
 
 .include <bsd.port.options.mk>
+
+.if ${ARCH} == armv6 || ${ARCH} == armv7
+SSP_CFLAGS?=	-fno-stack-protector
+.endif
 
 GNU_CONFIGURE=	yes
 CFLAGS+=	-I${NCURSESINC}



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