Imported Upstream version 3.2.2
[debian/gnuradio] / config / grc_gcell.m4
1 dnl Copyright 2001,2002,2003,2004,2005,2006,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_GCELL],[
21     GRC_ENABLE(gcell)
22     dnl GRC_WITH(gcell)
23
24     dnl Don't do gcell if omnithread skipped
25     GRC_CHECK_DEPENDENCY(gcell, omnithread)
26
27     dnl If execution gets to here, $passed will be:
28     dnl   with : if the --with code didn't error out
29     dnl   yes  : if the --enable code passed muster and all dependencies are met
30     dnl   no   : otherwise
31     if test $passed = yes; then
32         dnl Don't build gcell if host_cpu isn't powerpc
33         AC_MSG_CHECKING([whether host_cpu is powerpc*])
34         case "$host_cpu" in
35             powerpc*)
36                 AC_MSG_RESULT(yes)
37                 ;;
38             *)
39                 passed=no
40                 AC_MSG_RESULT(no)
41                 ;;
42         esac
43
44         dnl Don't build gcell if we can't find spu-gcc.
45         AC_CHECK_PROG([SPU_GCC_PROG],[spu-gcc],[yes],[no])
46         if test $SPU_GCC_PROG = no; then
47             passed=no
48         fi
49     fi
50
51     if test $passed != with; then
52         dnl how and where to find INCLUDES and LA
53         gcell_INCLUDES="-I\${abs_top_srcdir}/gcell/include"
54         gcell_LA="\${abs_top_builddir}/gcell/lib/libgcell.la"
55         gcell_spu_INCLUDES="-I\${abs_top_srcdir}/gcell/include"
56         gcell_spu_LA="\${abs_top_builddir}/gcell/lib/spu/libgcell_spu.a"
57         AC_SUBST(gcell_spu_INCLUDES)
58         AC_SUBST(gcell_spu_LA)
59
60     fi
61
62     AC_CONFIG_FILES([ \
63         gcell/Makefile \
64         gcell/gcell.pc \
65         gcell/gcell_spu.pc \
66         gcell/include/Makefile \
67         gcell/include/gcell/Makefile \
68         gcell/include/gcell/spu/Makefile \
69         gcell/lib/Makefile \
70         gcell/lib/spu/Makefile \
71         gcell/lib/general/Makefile \
72         gcell/lib/wrapper/Makefile \
73         gcell/lib/runtime/Makefile \
74         gcell/apps/Makefile \
75         gcell/apps/spu/Makefile \
76         gcell/ibm/Makefile \
77     ])
78
79     GRC_BUILD_CONDITIONAL(gcell)
80 ])