diff options
author | Cy Schubert <cy@FreeBSD.org> | 2019-11-04 20:43:08 +0000 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2019-11-04 20:43:08 +0000 |
commit | d43961bab7c367e1747efb6defd9da9cf3738d65 (patch) | |
tree | 4045eebaccb6fa29a1962c0de4b08b61b19bd30b /sysutils/screen/Makefile | |
parent | 91c3b180c1027e0ad7c2ee36f3a85f52bd96ac43 (diff) |
Fix a stack assertion under arm.
PR: 241690
Submitted by: mikael.urankar at gmail.com
Reported by: Ulrich Grey <usenet at ulrich-grey.de>
Notes
Notes:
svn path=/head/; revision=516740
Diffstat (limited to 'sysutils/screen/Makefile')
-rw-r--r-- | sysutils/screen/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sysutils/screen/Makefile b/sysutils/screen/Makefile index f7635b6ddc65..cdc749538cfd 100644 --- a/sysutils/screen/Makefile +++ b/sysutils/screen/Makefile @@ -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/ \ @@ -49,6 +49,10 @@ 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} LDFLAGS+= -L${NCURSESLIB} |