Imported Upstream version 3.0.4
[debian/gnuradio] / config / usrp_libusb.m4
1 # Check for libusb support.                             -*- Autoconf -*-
2
3 # Copyright 2003 Free Software Foundation, Inc.
4
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3, or (at your option)
8 # any later version.
9
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Boston, MA
18 # 02110-1301, USA.
19
20 AC_DEFUN([USRP_LIBUSB],
21 [
22         AC_LANG_PUSH(C)
23
24         libusbok=yes
25         AC_CHECK_HEADERS([usb.h],
26           [],
27           [libusbok=no, 
28            AC_MSG_RESULT([USRP requires libusb. usb.h not found. See http://libusb.sf.net])]
29         )
30
31         save_LIBS="$LIBS"
32         case "$host_os" in
33             darwin*)    LIBS="$LIBS -lIOKit" ;;
34             *) ;;
35         esac
36         AC_SEARCH_LIBS(usb_bulk_write, [usb],
37           [USB_LIBS="$LIBS"],
38           [libusbok=no,
39            AC_MSG_RESULT([USRP requires libusb. usb_bulk_write not found. See http://libusb.sf.net])]
40         )
41         LIBS="$save_LIBS"
42
43         AC_LANG_POP
44
45         if test $libusbok = yes; then
46             AC_SUBST(USB_LIBS)
47             ifelse([$1], , :, [$1])
48         else
49             ifelse([$2], , :, [$2])
50         fi
51 ])