Module Name: src
Committed By: jmmv
Date: Thu Aug 18 19:05:55 UTC 2011
Modified Files:
src/external/bsd/tmux/usr.bin/tmux: Makefile
Log Message:
Disable a few stack protector warnings to fix the build with USE_SSP.
This actually recovers something that was in the Makefile before but that
I removed during the update thinking they were not needed any more. (I had
assumed ssp was the default.)
Build problem reported by bch at methodlogic.net in current-users.
To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 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.6 src/external/bsd/tmux/usr.bin/tmux/Makefile:1.7
--- src/external/bsd/tmux/usr.bin/tmux/Makefile:1.6 Wed Aug 17 19:28:36 2011
+++ src/external/bsd/tmux/usr.bin/tmux/Makefile Thu Aug 18 19:05:54 2011
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.6 2011/08/17 19:28:36 jmmv Exp $
+# $NetBSD: Makefile,v 1.7 2011/08/18 19:05:54 jmmv Exp $
.include <bsd.own.mk>
@@ -11,6 +11,10 @@
MAN= tmux.1
WARNS?= 4
+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
SRCS= arguments.c
SRCS+= attributes.c