Bug 24464

Summary: mouse wheel support is broken in rxvt-2.7.5-8
Product: [Retired] Red Hat Raw Hide Reporter: Need Real Name <ehl>
Component: rxvtAssignee: Harald Hoyer <harald>
Status: CLOSED RAWHIDE QA Contact: David Lawrence <dkl>
Severity: medium Docs Contact:
Priority: medium    
Version: 1.0   
Target Milestone: ---   
Target Release: ---   
Hardware: i386   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: Bug Fix
Doc Text:
Story Points: ---
Clone Of: Environment:
Last Closed: 2001-01-20 19:48:53 UTC Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:

Description Need Real Name 2001-01-20 19:48:50 UTC
The configure test for mouse-wheel support in rxvt-2.7.5-8 seems to be reversed.  If $support_mousewheel is yes, then the configure script
defined NO_MOUSE_WHEEL -- which turns off mouse wheel support!

Here's a patch:

--- rxvt-2.7.5/autoconf/configure.in.mouse-wheel        Wed Sep 13 00:00:44 2000
+++ rxvt-2.7.5/autoconf/configure.in    Sat Jan 20 10:51:20 2001
@@ -1025,7 +1025,7 @@
 if test x$support_frills = xno; then
   AC_DEFINE(NO_FRILLS)
 fi
-if test x$support_mousewheel = xyes; then
+if test x$support_mousewheel != xyes; then
   AC_DEFINE(NO_MOUSE_WHEEL)
 fi
 if test x$support_oldselection = xno; then

Comment 1 Harald Hoyer 2001-01-22 14:09:02 UTC
thanks