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 /x11/rxvt/patches | |
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.
Diffstat (limited to 'x11/rxvt/patches')
-rw-r--r-- | x11/rxvt/patches/patch-ac | 15 |
1 files changed, 12 insertions, 3 deletions
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 |