|
From: Roger L. <rli...@us...> - 2007-12-03 16:12:37
|
Update of /cvsroot/javax-usb/javax-usb-ri-linux/jni In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv26838/jni Modified Files: JavaxUsbKernel.h Log Message: Reveret to using linux/usb.h since linux/usb/ch9.h seems to have different location between distributions. Index: JavaxUsbKernel.h =================================================================== RCS file: /cvsroot/javax-usb/javax-usb-ri-linux/jni/JavaxUsbKernel.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** JavaxUsbKernel.h 3 Dec 2007 11:50:30 -0000 1.6 --- JavaxUsbKernel.h 3 Dec 2007 16:12:22 -0000 1.7 *************** *** 14,20 **** //****************************************************************************** // Kernel-specific #include <sys/utsname.h> #include <linux/usbdevice_fs.h> ! #include <linux/usb/ch9.h> // The names of this struct's fields change from 2.4 to 2.6. --- 14,21 ---- //****************************************************************************** // Kernel-specific + #include <sys/utsname.h> #include <linux/usbdevice_fs.h> ! #include <linux/usb.h> // The names of this struct's fields change from 2.4 to 2.6. |