Merge branch 'qtmake' of git@gnuradio.org:trondeau into master
[debian/gnuradio] / config / usrp_libusb.m4
1 dnl Copyright 2003,2008,2009 Free Software Foundation, Inc.
2 dnl 
3 dnl This file is part of GNU Radio
4 dnl 
5 dnl GNU Radio is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; either version 3, or (at your option)
8 dnl any later version.
9 dnl 
10 dnl GNU Radio is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 dnl GNU General Public License for more details.
14 dnl 
15 dnl You should have received a copy of the GNU General Public License
16 dnl along with GNU Radio; see the file COPYING.  If not, write to
17 dnl the Free Software Foundation, Inc., 51 Franklin Street,
18 dnl Boston, MA 02110-1301, USA.
19
20 # $1 is $req_libusb1:
21 #   yes : check libusb-1.0
22 #   no  : check libusb-0.12
23 #   ""  : check libusb-0.12
24
25
26 AC_DEFUN([USRP_LIBUSB], [
27   dnl Use PKGCONFIG to check for packages first, then check to
28   dnl make sure the USB_* variables work (whether from PKGCONFIG
29   dnl or overridden by the user)
30
31   libusbok=no
32   have_libusb1=no
33   if test x$1 = xyes; then
34     PKG_CHECK_MODULES(USB, libusb-1.0, [
35       libusbok=yes
36       have_libusb1=yes
37       usb_header='libusb-1.0/libusb.h'
38       usb_lib_func='libusb_bulk_transfer'
39       usb_lib_name='usb-1.0'
40     ])
41   else
42     dnl not using libusb1 (for now); see if legacy version is found.
43     dnl it might be installed under the name either 'libusb' or
44     dnl 'libusb-legacy', or just available via the
45     dnl user's shell environment
46
47     dnl see if the pkgconfig module 'libusb' is available
48     PKG_CHECK_MODULES(USB, libusb, [libusbok=yes], [libusbok=no])
49     dnl PKG_CHECK_MODULES does not work correctly when embedded
50     if test $libusbok = no; then
51       dnl if not, see if the pkgconfig module 'libusb-legacy' is available
52       PKG_CHECK_MODULES(USB, [libusb-legacy], [libusbok=yes], [libusbok=no])
53     fi
54     dnl set variables for further testing
55     usb_header='usb.h'
56     usb_lib_func='usb_bulk_write'
57     usb_lib_name='usb'
58   fi
59   if test x$1 != xyes || test $have_libusb1 = yes; then
60     dnl Either (1) libusb1 was specified and found; or
61     dnl (2) libusb1 was not specified. Restart checking.
62     libusbok=yes
63
64     dnl Verify that $usb_header is a valid header, and if so,
65     dnl then verify that $usb_lib_func can be found in the
66     dnl library $usb_lib_name.
67
68     dnl If PKGCONFIG found variable USB_INCLUDEDIR, and it is
69     dnl not empty, use it for checking for $usb_header.
70     dnl Otherwise, maybe the user's shell environment is already
71     dnl configured to find this header.
72
73     AC_LANG_PUSH(C)
74     save_CPPFLAGS="$CPPFLAGS"
75     if test x$USB_INCLUDEDIR != x; then
76       USB_INCLUDES="-I$USB_INCLUDEDIR"
77       CPPFLAGS="$CPPFLAGS $USB_INCLUDES"
78       AC_SUBST(USB_INCLUDES)
79     fi
80     AC_CHECK_HEADERS([$usb_header], [], [libusbok=no])
81     CPPFLAGS="$save_CPPFLAGS"
82     AC_LANG_POP(C)
83
84     if test $libusbok = no; then
85       AC_MSG_RESULT([USRP requires libusb header '$usb_header' which was not found or was not usable. See http://www.libusb.org])
86     else
87
88       dnl found the header; now make sure the library is OK
89       dnl On Darwin, need to include the IOKit library.     
90
91       AC_LANG_PUSH(C)
92       save_LIBS="$LIBS"
93       LIBS=""
94       case "$host_os" in
95         darwin*)
96           USB_LIBS="$USB_LIBS -lIOKit"
97           LIBS="$USB_LIBS"
98           ;;
99         *) ;;
100       esac
101       AC_CHECK_LIB([$usb_lib_name], [$usb_lib_func], [], [
102         libusbok=no
103         AC_MSG_RESULT([USRP requires library '$usb_lib_name' with function '$usb_lib_func', which was either not found or was not usable. See http://www.libusb.org])
104       ])
105       case "$host_os" in
106         cygwin* | mingw*)
107           USB_LIBS="$LIBS"
108           ;;
109         *) ;;
110       esac
111       LIBS="$save_LIBS"
112       AC_LANG_POP(C)
113     fi
114   fi
115   if test $libusbok = yes; then
116     AC_SUBST(USB_LIBS)
117     ifelse([$2], , :, [$2])
118   else
119     USB_INCLUDES=
120     USB_LIBS=
121     ifelse([$3], , :, [$3])
122   fi
123 ])