Module Name: src
Committed By: mrg
Date: Mon Mar 17 09:21:19 UTC 2014
Modified Files:
src/external/mit/xorg/bin/twm: Makefile
Log Message:
avoid const problems for now.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/external/mit/xorg/bin/twm/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/mit/xorg/bin/twm/Makefile
diff -u src/external/mit/xorg/bin/twm/Makefile:1.5 src/external/mit/xorg/bin/twm/Makefile:1.6
--- src/external/mit/xorg/bin/twm/Makefile:1.5 Thu Aug 11 23:15:35 2011
+++ src/external/mit/xorg/bin/twm/Makefile Mon Mar 17 09:21:19 2014
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2011/08/11 23:15:35 joerg Exp $
+# $NetBSD: Makefile,v 1.6 2014/03/17 09:21:19 mrg Exp $
.include <bsd.own.mk>
@@ -46,5 +46,9 @@ DPADD+= ${LIBXMU} ${LIBXT} ${LIBSM} ${LI
CWARNFLAGS.clang+= -Wno-pointer-sign
+# XXX: has const issues best solved upstream
+COPTS.menus.c+= -Wno-error
+COPTS.util.c+= -Wno-error
+
.include <bsd.x11.mk>
.include <bsd.prog.mk>