On Thursday 31 August 2006 21:24, Ranjit Vijayan wrote:
> Hello,
> I am trying to install a Volito2 tablet on a Fedora Core 1 (unfortunately,
> I am unable to upgrade at the moment) machine with 2.4.22 kernel. First I
> tried to compile wacom.o from the latest stable package 0.7.4-3. wacom.c
> wouldn't compile and gives the error:
> cc1: error: bad value (i386-redhat-linux) for -march= switch
> cc1: error: bad value (i386-redhat-linux) for -mcpu= switch
>
> I tried configuring with --with-arch=i686. This gives the error:
> wacom.c: In function `wacom_intuos_irq':
> wacom.c:699: error: void value not ignored as it ought to be

Hi,

The modules for the older kernels are not as well-tested (or compiled) as the 
later ones, especially for the 2.4-kernels. The compilation error in this case 
is a ')' in the wrong place:

The lines (699,700):
input_report_rel(dev, REL_WHEEL, (__u32)(data[8] & 0x01))
                                         - (__u32)((data[8] & 0x02) >> 1);

should be:
input_report_rel(dev, REL_WHEEL, (__u32)(data[8] & 0x01)
                                         - (__u32)((data[8] & 0x02) >> 1));

Hope you get it working
 Magnus

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Linuxwacom-discuss mailing list
Linuxwacom-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxwacom-discuss

Reply via email to