Module Name: src
Committed By: tron
Date: Sat Mar 12 14:19:25 UTC 2011
Modified Files:
src/external/bsd/tmux/usr.bin/tmux: Makefile
Log Message:
Disable SSP warnings for a few files to make this build with "USE_SSP=yes".
To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 src/external/bsd/tmux/usr.bin/tmux/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/bsd/tmux/usr.bin/tmux/Makefile
diff -u src/external/bsd/tmux/usr.bin/tmux/Makefile:1.2 src/external/bsd/tmux/usr.bin/tmux/Makefile:1.3
--- src/external/bsd/tmux/usr.bin/tmux/Makefile:1.2 Sat Mar 12 03:02:59 2011
+++ src/external/bsd/tmux/usr.bin/tmux/Makefile Sat Mar 12 14:19:25 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.2 2011/03/12 03:02:59 christos Exp $
+# $NetBSD: Makefile,v 1.3 2011/03/12 14:19:25 tron Exp $
.include <bsd.own.mk>
WARNS?= 4
@@ -155,6 +155,12 @@
CPPFLAGS+= -DBUILD="\"$(VERSION)\""
CPPFLAGS+= -I${SRCDIR} -I${.CURDIR}
+COPTS.cmd-paste-buffer.c+= -Wno-stack-protector
+COPTS.cmd-server-info.c+= -Wno-stack-protector
+COPTS.imsg-buffer.c+= -Wno-stack-protector
+COPTS.imsg.c+= -Wno-stack-protector
+COPTS.screen.c+= -Wno-stack-protector
+
LDADD+= -levent -lterminfo -lutil
DPADD+= ${LIBEVENT} ${LIBTERMINFO} ${LIBUTIL}