diff options
author | Alberto Villa <avilla@FreeBSD.org> | 2011-03-02 02:56:31 +0000 |
---|---|---|
committer | Alberto Villa <avilla@FreeBSD.org> | 2011-03-02 02:56:31 +0000 |
commit | e738604a7f13101940839b27ac11b853770da553 (patch) | |
tree | be803edc28dfd010a9581fbdb0f0b37ee706e85f /comms/usbmuxd | |
parent | ed20927f56068f7e4f7f6de93a89e652213b8fa4 (diff) | |
download | ports-e738604a7f13101940839b27ac11b853770da553.tar.gz ports-e738604a7f13101940839b27ac11b853770da553.zip |
Notes
Diffstat (limited to 'comms/usbmuxd')
-rw-r--r-- | comms/usbmuxd/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/comms/usbmuxd/Makefile b/comms/usbmuxd/Makefile index 5d8278cd3049..a7515d560136 100644 --- a/comms/usbmuxd/Makefile +++ b/comms/usbmuxd/Makefile @@ -23,8 +23,17 @@ PORTDOCS= AUTHORS README README.devel .include <bsd.port.pre.mk> -.if ${OSVERSION} < 800069 -BROKEN= requires libusb 1.0 +.if ${OSVERSION} == 800107 || ${OSVERSION} == 900002 +HAVE_LIBUSB104!= ${GREP} --quiet "libusb_fill_bulk_transfer" \ + /usr/include/libusb.h \ + && ${ECHO} yes || ${ECHO} no +.elif ${OSVERSION} > 800107 && ${OSVERSION} < 900000 || ${OSVERSION} > 900002 +HAVE_LIBUSB104= yes +.else +HAVE_LIBUSB104= no +.endif +.if ${HAVE_LIBUSB104} == "no" +BROKEN= requires libusb 1.0.4 .endif pre-configure: |