Hi, Call me silly, but I //extract version 2.0.3. In the drivers folder there is bcmxcp_usb.c which is the uncompiled file. When I type the commands ./configure and make usb - it does not compile bcmxcp_usb. I then add bcmxcp_usb to the usb compile list in Makefile and when I run ./configure and then make usb it resets itself so that bcmxcp_usb is not on the list. Cheers, -- John Anderson System Administrator Development Resource Centre TEL 04 496 9514 MOB 027 600 6840
On 5/9/06, John Anderson <john@drc.org.nz> wrote:> I then add bcmxcp_usb to the usb compile list in Makefile and when I run > ./configure and then make usb it resets itself so that bcmxcp_usb is not > on the list.bcmxcp_usb is added to @USB_DRIVER_LIST@ by configure, but only if it finds a working libusb. You should not have to edit the Makefile (or Makefile.in) for 2.0.3. Be sure that "libusb-config" is on your path. If not, you may only have the libusb runtime, and you will need to download the development package for your particular distribution, or install it from source. Home page for libusb: http://libusb.sourceforge.net/ (use the stable 0.1.x branch, not the experimental 1.0 branch.) -- - Charles Lepple
Charles Lepple wrote:> > On 5/9/06, John Anderson <john@drc.org.nz> wrote: > > I then add bcmxcp_usb to the usb compile list in Makefile and when I run > > ./configure and then make usb it resets itself so that bcmxcp_usb is not > > on the list. > > bcmxcp_usb is added to @USB_DRIVER_LIST@ by configure, but only if it > finds a working libusb. You should not have to edit the Makefile (or > Makefile.in) for 2.0.3. > > Be sure that "libusb-config" is on your path. If not, you may only > have the libusb runtime, and you will need to download the development > package for your particular distribution, or install it from source. > > Home page for libusb: http://libusb.sourceforge.net/ (use the stable > 0.1.x branch, not the experimental 1.0 branch.)But John said that newhidups was built, so this should not be the problem. Have you tried: cd drivers make bcmxcp_usb This also works for me. -- Peter