diff options
author | dmcmahill <dmcmahill> | 2003-02-05 22:03:01 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2003-02-05 22:03:01 +0000 |
commit | bc9f384516d0d852da6c3b39d9b9e2b8b8063ce9 (patch) | |
tree | 8ac1c9812659573d92cf83da7c60ab52fc6396a5 /x11 | |
parent | 4cc565ba3cc6b84c38ecc97cc5d9a1002f62c5e4 (diff) | |
download | pkgsrc-bc9f384516d0d852da6c3b39d9b9e2b8b8063ce9.tar.gz |
make this compile when Xft does not exist (pre-XF4 systems)
Diffstat (limited to 'x11')
-rw-r--r-- | x11/xkbd/distinfo | 3 | ||||
-rw-r--r-- | x11/xkbd/patches/patch-ab | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/xkbd/distinfo b/x11/xkbd/distinfo index e21136c8195..ea8ebf9e547 100644 --- a/x11/xkbd/distinfo +++ b/x11/xkbd/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2002/12/20 18:16:37 tsarna Exp $ +$NetBSD: distinfo,v 1.2 2003/02/05 22:03:01 dmcmahill Exp $ SHA1 (xkbd-0.8.5.tar.gz) = 29cff38005ed6d55daf3f45269487a84f525e47f Size (xkbd-0.8.5.tar.gz) = 231953 bytes SHA1 (patch-aa) = e5865181c348e501676e8abd1ad13916eabf0d8d +SHA1 (patch-ab) = 53935e5df38a9ea4582036c32ec99d00885fada6 diff --git a/x11/xkbd/patches/patch-ab b/x11/xkbd/patches/patch-ab new file mode 100644 index 00000000000..2cc1427deb7 --- /dev/null +++ b/x11/xkbd/patches/patch-ab @@ -0,0 +1,15 @@ +$NetBSD: patch-ab,v 1.1 2003/02/05 22:03:02 dmcmahill Exp $ + +--- src/kb.c.orig Fri Sep 27 04:34:28 2002 ++++ src/kb.c +@@ -21,7 +21,10 @@ + #include <X11/Xutil.h> + #include <X11/extensions/XTest.h> + #include <X11/keysym.h> ++ ++#ifdef USE_XFT + #include <X11/Xft/Xft.h> ++#endif + + #include "structs.h" + #include "kb.h" |