diff options
author | dholland <dholland@pkgsrc.org> | 2010-07-11 23:51:15 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2010-07-11 23:51:15 +0000 |
commit | 6440824b3aa23d3356c29755a317d3047c0f7107 (patch) | |
tree | 45f161338770e443054f0b7635d53d122952eb0e /x11/xmx | |
parent | f169ed173d98775f93c41d40eef9c87b2996b879 (diff) | |
download | pkgsrc-6440824b3aa23d3356c29755a317d3047c0f7107.tar.gz |
Fix build with recent xextproto.
Diffstat (limited to 'x11/xmx')
-rw-r--r-- | x11/xmx/distinfo | 3 | ||||
-rw-r--r-- | x11/xmx/patches/patch-eg | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/xmx/distinfo b/x11/xmx/distinfo index 53519b07949..00566df0cf7 100644 --- a/x11/xmx/distinfo +++ b/x11/xmx/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.4 2008/08/31 06:52:29 dholland Exp $ +$NetBSD: distinfo,v 1.5 2010/07/11 23:51:15 dholland Exp $ SHA1 (xmx-2.1alpha.pl7.tar.gz) = b517b20a7bfa352b12ffb7dd260d50ea6c1ec21b RMD160 (xmx-2.1alpha.pl7.tar.gz) = 18560824a35ffc55ce90fa63d1894362afa45405 @@ -85,3 +85,4 @@ SHA1 (patch-ec) = 18de9cdf60967af54721d105072dc30867a99904 SHA1 (patch-ed) = 11c1d90ecad5bec0c92bbb4bd7b80c4056e4bcde SHA1 (patch-ee) = 077943c76a512a0e51e7097409ec645d43b1ba18 SHA1 (patch-ef) = 58e1b211139aaba6f4303cec5b6a6cac98ab5b66 +SHA1 (patch-eg) = fffaaddaf67708b90c44b76ac4b9a301ffef6530 diff --git a/x11/xmx/patches/patch-eg b/x11/xmx/patches/patch-eg new file mode 100644 index 00000000000..d5c5c8a550e --- /dev/null +++ b/x11/xmx/patches/patch-eg @@ -0,0 +1,15 @@ +$NetBSD: patch-eg,v 1.1 2010/07/11 23:51:16 dholland Exp $ + +Fix build with recent xextproto, where the shape extension prototypes +appear to have been moved to their own header file. + +--- server/shape.c~ 1997-09-27 21:10:13.000000000 +0000 ++++ server/shape.c +@@ -33,6 +33,7 @@ + #include <X11/Xutil.h> + #include <X11/Xproto.h> + #include <X11/extensions/shape.h> ++#include <X11/extensions/shapeproto.h> + #include "xmx.h" + #include "ptc.h" + #include "incl/shape.pvt.h" |