diff options
author | martin <martin@pkgsrc.org> | 2001-07-16 22:06:02 +0000 |
---|---|---|
committer | martin <martin@pkgsrc.org> | 2001-07-16 22:06:02 +0000 |
commit | a4e36a184d8dc764adf799ed655e3e49b8fd944d (patch) | |
tree | 9665694d7f508c76fd905d5a5e92ed2a52dc2d9d | |
parent | 8ea51f8da38664a1618399568217587a5a000c99 (diff) | |
download | pkgsrc-a4e36a184d8dc764adf799ed655e3e49b8fd944d.tar.gz |
Fix broken test in configure script which reverses the options for mouse
wheel support. This makes the pkg support mouse wheels.
I'm gonna contact the author to check whether this test has been
intentionally inverted.
-rw-r--r-- | x11/rxvt/distinfo | 4 | ||||
-rw-r--r-- | x11/rxvt/patches/patch-ac | 15 |
2 files changed, 14 insertions, 5 deletions
diff --git a/x11/rxvt/distinfo b/x11/rxvt/distinfo index 1f4e370a3fb..a6d840fcf7f 100644 --- a/x11/rxvt/distinfo +++ b/x11/rxvt/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.3 2001/06/09 14:52:16 wiz Exp $ +$NetBSD: distinfo,v 1.4 2001/07/16 22:06:02 martin Exp $ SHA1 (rxvt-2.7.3.tar.bz2) = 1f5380ba70d1b795e6532a79b1e2d7371505b504 Size (rxvt-2.7.3.tar.bz2) = 266784 bytes SHA1 (patch-aa) = 65c95a610a4c483628500976ffa7e7cf74b676ae SHA1 (patch-ab) = 72d2fac47a414e1d64aedc4ad20670736e24b0fa -SHA1 (patch-ac) = 12125056c1c6563ebef0ef04516af21952550348 +SHA1 (patch-ac) = 3e5e3fc12573f52f764fa2c9f5ae90c1578edde5 SHA1 (patch-ad) = 86047c69fa397d71f3e71ae476bd7addd153729f SHA1 (patch-ae) = ce0bd392cde7c436834f68391e0d38b53f1755cc diff --git a/x11/rxvt/patches/patch-ac b/x11/rxvt/patches/patch-ac index 75d225ac7d4..fa6de8a108a 100644 --- a/x11/rxvt/patches/patch-ac +++ b/x11/rxvt/patches/patch-ac @@ -1,7 +1,7 @@ -$NetBSD: patch-ac,v 1.3 2000/08/30 00:01:05 wiz Exp $ +$NetBSD: patch-ac,v 1.4 2001/07/16 22:06:03 martin Exp $ ---- configure.orig Sun Mar 26 16:47:39 2000 -+++ configure Wed Aug 16 03:06:27 2000 +--- configure.orig Sun Mar 26 09:47:39 2000 ++++ configure Tue Jul 17 00:01:45 2001 @@ -4163,6 +4163,7 @@ cat > conftest.$ac_ext <<EOF #line 4165 "configure" @@ -10,3 +10,12 @@ $NetBSD: patch-ac,v 1.3 2000/08/30 00:01:05 wiz Exp $ #include <stdio.h> #include <utmp.h> #include <errno.h> +@@ -5047,7 +5048,7 @@ + EOF + + fi +-if test x$support_mousewheel = xyes; then ++if test x$support_mousewheel = xno; then + cat >> confdefs.h <<\EOF + #define NO_MOUSE_WHEEL 1 + EOF |