[Libusbx-devel] libusb Fedora boot problem

2012-09-20 Thread Chuck Cook
I have run into a rather strange problem that appears to be related to libusbx-13 on a Fedora 17 x64 box. My build commands: ./configure --libdir=/lib64 --prefix=/usr make make install At this point all seems well. The libraries are where they are supposed to be, headers & package config files

[Libusbx-devel] libusbx-1.0.13 has been released

2012-09-20 Thread Pete Batard
Hi, It with pleasure that I would like to announce the release of libusbx 1.0.13. This version brings the following notable changes: * [MAJOR] Fix a typo in the API with struct libusb_config_descriptor where MaxPower was used instead of bMaxPower, as per the specs. If your application was ac

Re: [Libusbx-devel] RC2 build options

2012-09-20 Thread Chuck Cook
I think I will remove any existing libusb-1.0 traces. Then re-build as per your last post and see what happens. Chuck On 09/20/2012 05:04 PM, Pete Batard wrote: > NB: I also realize that your issue was with compile rather than runtime > with shared lib, but I'm pretty sure it boils down to the

Re: [Libusbx-devel] RC2 build options

2012-09-20 Thread Pete Batard
NB: I also realize that your issue was with compile rather than runtime with shared lib, but I'm pretty sure it boils down to the same kind of issue. If you can't compile, then get_version is useless, since you don't have an executable that can report the version then. Logically however, if yo

Re: [Libusbx-devel] RC2 build options

2012-09-20 Thread Pete Batard
Was able to reproduce the issue on Slackware x64 with get_version. If you use strace, you should find that you're still attempting to pick a library from /usr/lib64 or something, rather than the new one in /lib64. Basically, this is what I did (after uninstalling libusb-1.0 from package manager,

Re: [Libusbx-devel] RC2 build options

2012-09-20 Thread Chuck Cook
Did that already, that how I came up with the suggestion of changing the version.description field. It did come up with 13 -rc2. If you don't see any thing wrong with my build ~ install proceedure. I start from scratch with a libusbx install. Chuck On 09/20/2012 01:58 PM, Pete Batard wrote:

Re: [Libusbx-devel] RC2 build options

2012-09-20 Thread Pete Batard
On 20 September 2012 13:44, Chuck Cook wrote: > //,libusb_get_port_number(deviceList[selItem]) Pretty sure you're still using libusb and not libusbx at runtime. get_port_number is one of the calls we added early on, and that libusb does not have. Can you try adding a libusb_get_ve

Re: [Libusbx-devel] RC2 build options

2012-09-20 Thread Chuck Cook
To build and install libusbx I did the following. ./configure --libdir=/lib64 make make install All of which seems to have been un-event full. The offending code is: wxString tStr = wxString::Format("Bus=%i Port= Address=%i" ,libusb_get_bus_number(deviceList[selItem]) //