Module Name:    src
Committed By:   msaitoh
Date:           Wed Jun 12 04:32:51 UTC 2013

Modified Files:
        src/external/mit/xorg/lib/libXi [netbsd-6]: Makefile

Log Message:
Pull up following revision(s) (requested by mrg in ticket #902):
        external/mit/xorg/lib/libXi/Makefile: revision 1.10
fix vax build issues - GCC 4.1 warns about always true comparisons
more than GCC 4.5 does.


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.8.4.1 src/external/mit/xorg/lib/libXi/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/lib/libXi/Makefile
diff -u src/external/mit/xorg/lib/libXi/Makefile:1.8 src/external/mit/xorg/lib/libXi/Makefile:1.8.4.1
--- src/external/mit/xorg/lib/libXi/Makefile:1.8	Thu Aug 11 23:15:39 2011
+++ src/external/mit/xorg/lib/libXi/Makefile	Wed Jun 12 04:32:51 2013
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile,v 1.8 2011/08/11 23:15:39 joerg Exp $
+#	$NetBSD: Makefile,v 1.8.4.1 2013/06/12 04:32:51 msaitoh Exp $
 
 .include <bsd.own.mk>
 
@@ -79,6 +79,10 @@ PKGDIST=	${LIB}
 COPTS.XExtInt.c+=	-Wno-error	# XXX
 COPTS.XSndExEv.c+=	-Wno-error	# XXX
 
+.if ${HAVE_GCC} < 45
+COPTS.XGetFCtl.c+=	-Wno-error	# XXX
+.endif
+
 CWARNFLAGS.clang+=	-Wno-pointer-sign
 
 .include <bsd.x11.mk>

Reply via email to