Fri Apr 9 09:06:52 2010 UTC ()
Guard against multiple inclusion. Bump rev.


(tnn)
diff -r1.8 -r1.9 pkgsrc/x11/xextproto/Makefile
diff -r1.1 -r1.2 pkgsrc/x11/xextproto/files/shmstr.h

cvs diff -r1.8 -r1.9 pkgsrc/x11/xextproto/Attic/Makefile (expand / switch to context diff)
--- pkgsrc/x11/xextproto/Attic/Makefile 2010/04/09 08:33:38 1.8
+++ pkgsrc/x11/xextproto/Attic/Makefile 2010/04/09 09:06:52 1.9
@@ -1,7 +1,8 @@
-# $NetBSD: Makefile,v 1.8 2010/04/09 08:33:38 tnn Exp $
+# $NetBSD: Makefile,v 1.9 2010/04/09 09:06:52 tnn Exp $
 #
 
 DISTNAME=		xextproto-7.1.1
+PKGREVISION=		1
 CATEGORIES=		x11
 MASTER_SITES=		${MASTER_SITE_XORG:=proto/}
 EXTRACT_SUFX=		.tar.bz2

cvs diff -r1.1 -r1.2 pkgsrc/x11/xextproto/files/Attic/shmstr.h (expand / switch to context diff)
--- pkgsrc/x11/xextproto/files/Attic/shmstr.h 2010/04/09 08:33:38 1.1
+++ pkgsrc/x11/xextproto/files/Attic/shmstr.h 2010/04/09 09:06:52 1.2
@@ -1,5 +1,8 @@
-/* $NetBSD: shmstr.h,v 1.1 2010/04/09 08:33:38 tnn Exp $ */
+/* $NetBSD: shmstr.h,v 1.2 2010/04/09 09:06:52 tnn Exp $ */
 
+#ifndef _SHMSTR_H_
+#define _SHMSTR_H_
+
 #warning this file is deprecated and provided only for source compatibility
 
 #include "shmproto.h"
@@ -30,3 +33,5 @@
     PixmapPtr	(* CreatePixmap)(XSHM_CREATE_PIXMAP_ARGS);
     void	(* PutImage)(XSHM_PUT_IMAGE_ARGS);
 } ShmFuncs, *ShmFuncsPtr;
+
+#endif