diff options
author | agc <agc@pkgsrc.org> | 2002-10-25 07:25:07 +0000 |
---|---|---|
committer | agc <agc@pkgsrc.org> | 2002-10-25 07:25:07 +0000 |
commit | b597ec27862f016a17afefbd7f7f5a94b55d7a62 (patch) | |
tree | 93b27bb5dcaedc7be9df56686d102e129e513b09 /wm | |
parent | f9228b97a6976620fed53874b68f3dba31aa075f (diff) | |
download | pkgsrc-b597ec27862f016a17afefbd7f7f5a94b55d7a62.tar.gz |
Guard all inclusions of Xft functionality with USE_XFT, so that this will
compile on XF86 3 systems.
Diffstat (limited to 'wm')
-rw-r--r-- | wm/matchbox/distinfo | 3 | ||||
-rw-r--r-- | wm/matchbox/patches/patch-ac | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/wm/matchbox/distinfo b/wm/matchbox/distinfo index 01e8a8e7d18..b50b2b2ff4f 100644 --- a/wm/matchbox/distinfo +++ b/wm/matchbox/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.3 2002/10/08 02:16:46 wiz Exp $ +$NetBSD: distinfo,v 1.4 2002/10/25 07:25:07 agc Exp $ SHA1 (matchbox-0.3.5.tar.gz) = 1221f4367c40c44ad417f1f57f3a06234d268d29 Size (matchbox-0.3.5.tar.gz) = 331686 bytes SHA1 (patch-aa) = c4f6d89d10f0f1b7f30ff30a2ad5312ade1769b0 SHA1 (patch-ab) = c7e73b8c32dd10f7b3ef0b8af9921ba461925230 +SHA1 (patch-ac) = 1b0b60ea25a4d8f0799917e9c28dc9481258bb16 diff --git a/wm/matchbox/patches/patch-ac b/wm/matchbox/patches/patch-ac new file mode 100644 index 00000000000..4e147fd5199 --- /dev/null +++ b/wm/matchbox/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2002/10/25 07:25:09 agc Exp $ + +--- util/mbmenu.c 2002/10/25 07:09:25 1.1 ++++ util/mbmenu.c 2002/10/25 07:09:47 +@@ -31,7 +31,9 @@ + #include <X11/Xlib.h> + #include <X11/Xutil.h> + #include <X11/Xatom.h> ++#ifdef USE_XFT + #include <X11/Xft/Xft.h> ++#endif + #include <X11/xpm.h> + #include <X11/Xresource.h> + #include <X11/extensions/shape.h> |