Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6-1]: src/external/mit/xorg/lib/libXi Pull up following revision(...



details:   https://anonhg.NetBSD.org/src/rev/b8cffe748ac1
branches:  netbsd-6-1
changeset: 775799:b8cffe748ac1
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Jun 12 04:36:30 2013 +0000

description:
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.

diffstat:

 external/mit/xorg/lib/libXi/Makefile |  6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diffs (20 lines):

diff -r 515f5b83f829 -r b8cffe748ac1 external/mit/xorg/lib/libXi/Makefile
--- a/external/mit/xorg/lib/libXi/Makefile      Wed Jun 12 04:28:30 2013 +0000
+++ b/external/mit/xorg/lib/libXi/Makefile      Wed Jun 12 04:36:30 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.8 2011/08/11 23:15:39 joerg Exp $
+#      $NetBSD: Makefile,v 1.8.16.1 2013/06/12 04:36:30 msaitoh Exp $
 
 .include <bsd.own.mk>
 
@@ -79,6 +79,10 @@
 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>



Home | Main Index | Thread Index | Old Index