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