svn commit: r516740 - head/sysutils/screen

Cy Schubert cy at FreeBSD.org
Mon Nov 4 20:43:08 UTC 2019


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}


More information about the svn-ports-all mailing list