Module Name:    src
Committed By:   matt
Date:           Sun Feb  5 17:47:30 UTC 2012

Modified Files:
        src/external/gpl3/gdb: Makefile.inc

Log Message:
For VAX & GCC, turn on -Wno-overflow to supress a GCC error.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/external/gpl3/gdb/Makefile.inc

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/gpl3/gdb/Makefile.inc
diff -u src/external/gpl3/gdb/Makefile.inc:1.3 src/external/gpl3/gdb/Makefile.inc:1.4
--- src/external/gpl3/gdb/Makefile.inc:1.3	Tue Oct 11 15:18:09 2011
+++ src/external/gpl3/gdb/Makefile.inc	Sun Feb  5 17:47:30 2012
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.inc,v 1.3 2011/10/11 15:18:09 joerg Exp $
+# $NetBSD: Makefile.inc,v 1.4 2012/02/05 17:47:30 matt Exp $
 
 USE_LIBEDIT=no
 USE_TUI=yes
@@ -10,4 +10,8 @@ CWARNFLAGS.clang+=	-Wno-unused-value -Wn
 			-Wno-format-security \
 			-Wno-tautological-compare -Wno-format-extra-args
 
+.if ${MACHINE} == "vax"
+CWARNFLAGS.gcc+=	-Wno-overflow
+.endif
+
 DIST=		${NETBSDSRCDIR}/external/gpl3/gdb/dist

Reply via email to