diff options
author | John Hay <jhay@FreeBSD.org> | 2012-01-14 16:50:08 +0000 |
---|---|---|
committer | John Hay <jhay@FreeBSD.org> | 2012-01-14 16:50:08 +0000 |
commit | 163cc1d59457e2560c199bb0847b62a9b7868d94 (patch) | |
tree | 06d1bf05ae3d1b83e37fdc10ca49a63250fd42a5 /lang/nqc/files | |
parent | f67d0fd9c45d3d6bc6b57264a40c0c4397951020 (diff) |
Notes
Diffstat (limited to 'lang/nqc/files')
-rw-r--r-- | lang/nqc/files/extra-patch-rcxlib-RCX_USBTowerPipe_fbsd.cpp | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/lang/nqc/files/extra-patch-rcxlib-RCX_USBTowerPipe_fbsd.cpp b/lang/nqc/files/extra-patch-rcxlib-RCX_USBTowerPipe_fbsd.cpp new file mode 100644 index 000000000000..2a4424f49261 --- /dev/null +++ b/lang/nqc/files/extra-patch-rcxlib-RCX_USBTowerPipe_fbsd.cpp @@ -0,0 +1,29 @@ +--- rcxlib/RCX_USBTowerPipe_fbsd.cpp.orig 2012-01-05 18:08:27.000000000 -0600 ++++ rcxlib/RCX_USBTowerPipe_fbsd.cpp 2012-01-05 18:13:13.000000000 -0600 +@@ -20,6 +20,7 @@ + #include <cstring> + #include <unistd.h> + #include <dev/usb/usb.h> ++#include <dev/usb/usb_ioctl.h> + + #include "RCX_Pipe.h" + +@@ -308,15 +309,15 @@ + return -1; + } + iov = 1; +- err = ioctl(fdRd, USB_SET_SHORT_XFER, &iov); ++ err = ioctl(fdRd, USB_SET_RX_SHORT_XFER, &iov); + if (fdRd == -1) { +- perror("ioctl USB_SET_SHORT_XFER"); ++ perror("ioctl USB_SET_RX_SHORT_XFER"); + return -1; + } + iov = 5000; +- err = ioctl(fdRd, USB_SET_TIMEOUT, &iov); ++ err = ioctl(fdRd, USB_SET_RX_TIMEOUT, &iov); + if (fdRd == -1) { +- perror("ioctl USB_SET_TIMEOUT"); ++ perror("ioctl USB_SET_RX_TIMEOUT"); + return -1; + } |