Merge commit 'v3.3.0' into upstream
[debian/gnuradio] / config / grc_usrp2.m4
1 dnl Copyright 2008,2010 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 AC_DEFUN([GRC_USRP2],[
21     GRC_ENABLE(usrp2)
22
23     dnl firmware uses a subsidiary configure.ac
24     AC_CONFIG_SUBDIRS([usrp2/firmware])
25
26     dnl Don't do usrp if gruel is skipped
27     GRC_CHECK_DEPENDENCY(usrp2, gruel)
28
29     dnl USRP2 host code only works on Linux at the moment
30     AC_MSG_CHECKING([whether host_os is linux*])
31     case "$host_os" in
32       linux*)
33         AC_MSG_RESULT([yes])
34         ;;
35       *)
36         AC_MSG_RESULT([no])
37         AC_MSG_NOTICE([USRP2 currently requires Linux host OS, not found])
38         passed="no"
39         ;;
40     esac
41
42     dnl If execution gets to here, $passed will be:
43     dnl   with : if the --with code didn't error out
44     dnl   yes  : if the --enable code passed muster and all dependencies are met
45     dnl   no   : otherwise
46     if test $passed = yes; then
47         dnl Needed for usrp2_socket_opener
48         AC_CHECK_HEADERS(arpa/inet.h byteswap.h linux/if_packet.h sys/socket.h sys/un.h)
49         AC_CHECK_MEMBERS([struct msghdr.msg_control,
50                           struct msghdr.msg_accrights,
51                           struct cmsgcred.cmcred_uid,
52                           struct ucred.uid],
53                          [],[],
54                          [#define __USE_GNU 1
55                           #include <sys/types.h>
56                           #include <sys/socket.h>
57                           #include <sys/un.h>])
58     fi
59     if test $passed != with; then
60         dnl how and where to find INCLUDES and LA
61         USRP2_INCLUDES="-I\${abs_top_srcdir}/usrp2/host/include \
62                 -I\${abs_top_srcdir}/usrp2/firmware/include"
63         USRP2_LA="\${abs_top_builddir}/usrp2/host/lib/libusrp2.la"
64     fi
65
66     dnl Include the usrp2 INCLUDES and LA
67     AC_SUBST(USRP2_INCLUDES)
68     AC_SUBST(USRP2_LA)
69
70     AC_CONFIG_FILES([ \
71         usrp2/Makefile
72         usrp2/host/Makefile \
73         usrp2/host/usrp2.pc \
74         usrp2/host/include/Makefile
75         usrp2/host/include/usrp2/Makefile
76         usrp2/host/lib/Makefile
77         usrp2/host/apps/Makefile
78     ])
79
80     GRC_BUILD_CONDITIONAL(usrp2)
81 ])