Source-Changes-HG archive

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

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



details:   https://anonhg.NetBSD.org/src/rev/59f389512f97
branches:  netbsd-6-0
changeset: 774814:59f389512f97
user:      msaitoh <msaitoh%NetBSD.org@localhost>
date:      Wed Jun 12 04:33:50 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 bb723d134bb5 -r 59f389512f97 external/mit/xorg/lib/libXi/Makefile
--- a/external/mit/xorg/lib/libXi/Makefile      Wed Jun 12 04:05:36 2013 +0000
+++ b/external/mit/xorg/lib/libXi/Makefile      Wed Jun 12 04:33:50 2013 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.8 2011/08/11 23:15:39 joerg Exp $
+#      $NetBSD: Makefile,v 1.8.10.1 2013/06/12 04:33:50 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