Updated FSF address in all files. Fixes ticket:51
[debian/gnuradio] / gr-howto-write-a-block / 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 2, 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_REQUIRE([AC_CANONICAL_HOST])
23         AC_LANG_PUSH(C)
24
25         AC_CHECK_HEADERS([usb.h],
26           [],
27           [ AC_MSG_ERROR([USRP requires libusb. usb.h not found, stop. See http://libusb.sf.net]) ]
28         )
29
30         save_LIBS="$LIBS"
31         case "$host_os" in
32             darwin*)    LIBS="$LIBS -lIOKit" ;;
33             *) ;;
34         esac
35         AC_SEARCH_LIBS(usb_bulk_write, [usb],
36           [ USB_LIBS="$LIBS" ],
37           [ AC_MSG_ERROR([USRP requires libusb. usb_bulk_write not found, stop. See http://libusb.sf.net]) ]
38         )
39         LIBS="$save_LIBS"
40
41         AC_LANG_POP
42         AC_SUBST(USB_LIBS)
43 ])