Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / firmware / config / grc_usrp2_firmware.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_FIRMWARE],[
21     dnl we use  --enable-usrp2-firmware to enable this
22     GRC_ENABLE(usrp2-firmware)
23
24     GRC_CHECK_DEPENDENCY(usrp2-firmware, usrp2)
25
26     AC_REQUIRE([AC_PROG_CC])
27     AC_REQUIRE([AC_PROG_CPP])
28     AC_REQUIRE([AM_PROG_AS])
29     AC_REQUIRE([AC_PROG_RANLIB])
30
31
32     AC_CHECK_HEADERS(arpa/inet.h netinet/in.h byteswap.h)
33     AC_C_BIGENDIAN
34
35     dnl If execution gets to here, $passed will be:
36     dnl   with : if the --with code didn't error out
37     dnl   yes  : if the --enable code passed muster and all dependencies are met
38     dnl   no   : otherwise
39     if test $passed = yes; then
40
41         dnl Only do firmware if mb-gcc can be found
42         AC_CHECK_PROG([MB_GCC],[mb-gcc],[yes],[no])
43         if test $MB_GCC = no; then
44             AC_MSG_RESULT([usrp2 firmware requires mb-gcc.  Not found])
45             passed=no
46         fi
47     fi
48     if test $passed != with; then
49         dnl how and where to find INCLUDES and LA
50         dnl USRP2_INCLUDES="-I\${abs_top_srcdir}/usrp2/host/include \
51         dnl     -I\${abs_top_srcdir}/usrp2/firmware/include"
52         dnl USRP2_LA="\${abs_top_builddir}/usrp2/host/lib/libusrp2.la"
53         :
54     fi
55
56     dnl Include the usrp2 INCLUDES and LA
57     dnl AC_SUBST(USRP2_INCLUDES)
58     dnl AC_SUBST(USRP2_LA)
59
60     AC_CONFIG_FILES([ \
61         apps/Makefile \
62         include/Makefile \
63         lib/Makefile \
64     ])
65
66     dnl Slightly non-standard:  we handle this with an AM_CONDITIONAL
67     AM_CONDITIONAL(BUILDING_USRP2_FIRMWARE, [test $passed = yes && test "$enable_usrp2_firmware" != no])
68
69     GRC_BUILD_CONDITIONAL(usrp2-firmware)
70 ])