Re: Missing typdefs and usb.h for Soarer's Converter

2019-03-30 Thread Sam Varshavchik

Leander Hutton writes:


Did some comparing between the Debian version of usb.h and Fedora. The
usb.h on Debian included sys/param.h and the Fedora version omits this.


/usr/include/usb.h is installed by the libusb 0.1.5, a comparatively old  
version



sys/param.h then includes sys/types.h, so that was indeed the underlying
cause. Shoving that include in place on the RawHID common include
Soarer's Converter bundles did allow it to be compiled on F29.


On Fedora, libusb 1.0 is parallel-installed as libusbx, with libusbx- 
devel-1.0.22 installing /usr/include/libusb-1.0/libusb.h which looks like  
the same one that you see on Debian as /usr/include/usb.h





pgpuzxfZZbJne.pgp
Description: PGP signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Missing typdefs and usb.h for Soarer's Converter

2019-03-29 Thread Leander Hutton
On 3/29/19 11:29 PM, Sam Varshavchik wrote:
> A brief grep finds these typedefs defined in :
> 
> #include 
> 
> typedef u_int8_t foo;
> 
> 
> This compiles just fine.
> 
> So, I surmise that the code in question was using something that itself
> includes sys/types.h, but whatever that is, the version on Fedora
> doesn't itself include it.
> 
> You'll just need to figure out which modules need this, and manually
> shove that include in there, yourself. That'll probably fix it.

Did some comparing between the Debian version of usb.h and Fedora. The
usb.h on Debian included sys/param.h and the Fedora version omits this.

sys/param.h then includes sys/types.h, so that was indeed the underlying
cause. Shoving that include in place on the RawHID common include
Soarer's Converter bundles did allow it to be compiled on F29.

I guess I need to figure out how to keep up with this since I don't
think anyone's maintaining the Linux version of this utility anymore.

Many thanks! Now off to use my very old and very loud keyboard!

Leander
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org


Re: Missing typdefs and usb.h for Soarer's Converter

2019-03-29 Thread Sam Varshavchik

Leander Hutton writes:


I have libusb-devel installed and /usr/include/usb.h and
/usr/include/stdint.h are both present. Running the included makefile
for the Linux build just dumps unknown type name errors for u_int8_t and
u_int16_t:

/usr/include/usb.h:81:2: error: unknown type name ‘u_int8_t’
  u_int8_t  bLength;
  ^~~~
/usr/include/usb.h:82:2: error: unknown type name ‘u_int8_t’
  u_int8_t  bDescriptorType;
  ^~~~
/usr/include/usb.h:87:2: error: unknown type name ‘u_int8_t’
  u_int8_t  bLength;
  ^~~~

Tested compiling the code on Debian and Ubuntu with the equivalent
libraries installed and it produces the binaries just fine, so I must be
missing something on the Fedora procedure. It's almost like it's missing


It's not that something's missing, but that something's is now a different  
version.



Unfortunately the original person who wrote this code has long since
vanished but Teensy stuff is pretty popular so I thought it'd be worth a
shot to ask here! I haven't messed with any other Teensy code myself.


A brief grep finds these typedefs defined in :

#include 

typedef u_int8_t foo;


This compiles just fine.

So, I surmise that the code in question was using something that itself  
includes sys/types.h, but whatever that is, the version on Fedora doesn't  
itself include it.


You'll just need to figure out which modules need this, and manually shove  
that include in there, yourself. That'll probably fix it.




pgpKXfXDg3OvC.pgp
Description: PGP signature
___
users mailing list -- users@lists.fedoraproject.org
To unsubscribe send an email to users-le...@lists.fedoraproject.org
Fedora Code of Conduct: https://getfedora.org/code-of-conduct.html
List Guidelines: https://fedoraproject.org/wiki/Mailing_list_guidelines
List Archives: 
https://lists.fedoraproject.org/archives/list/users@lists.fedoraproject.org