Merged jcorgan/ezdop into trunk.
[debian/gnuradio] / configure.ac
1 dnl Copyright 2001,2002,2003,2004,2005,2006 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 2, 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., 59 Temple Place - Suite 330,
18 dnl Boston, MA 02111-1307, USA.
19
20 AC_INIT
21 AC_PREREQ(2.57)
22 AM_CONFIG_HEADER(config.h)
23 AC_CANONICAL_HOST
24 AC_CANONICAL_TARGET([])
25 AM_INIT_AUTOMAKE(gnuradio,2.8svn)
26
27 GR_X86_64               dnl check for lib64 suffix
28 LF_CONFIGURE_CC
29 LF_CONFIGURE_CXX
30 LF_SET_WARNINGS
31 GR_SET_GPROF
32 GR_SET_PROF
33 GR_PROG_AS
34 AC_PROG_LN_S
35 AC_PROG_MAKE_SET
36 AC_PROG_INSTALL
37
38 AC_LIBTOOL_WIN32_DLL
39 dnl AC_DISABLE_SHARED   dnl don't build shared libraries
40 AC_ENABLE_SHARED        dnl do build shared libraries
41 AC_DISABLE_STATIC       dnl don't build static libraries
42 AC_PROG_LIBTOOL
43 GR_FORTRAN
44
45 GR_NO_UNDEFINED         dnl do we need the -no-undefined linker flag
46 GR_SCRIPTING
47
48 dnl Checks for libraries.
49 AC_CHECK_LIB(socket,socket)
50
51 dnl check for threads (mandatory)
52 GR_OMNITHREAD
53 #AC_SUBST(PTHREAD_CFLAGS)
54 CFLAGS="${CFLAGS} $PTHREAD_CFLAGS"
55 CXXFLAGS="${CXXFLAGS} $PTHREAD_CFLAGS"
56
57 if test "x$CXX_FOR_BUILD" = x
58 then
59   CXX_FOR_BUILD=${CXX}
60 fi
61 AC_SUBST(CXX_FOR_BUILD)
62
63 dnl Check for SysV shm (mandatory)
64 dnl FIXME this is no longer mandatory.  Check the macro.
65 GR_SYSV_SHM
66
67 dnl Checks for header files.
68 AC_HEADER_STDC
69 AC_HEADER_SYS_WAIT
70 AC_CHECK_HEADERS(fcntl.h limits.h strings.h time.h sys/ioctl.h sys/time.h unistd.h)
71 AC_CHECK_HEADERS(linux/ppdev.h sys/mman.h sys/select.h sys/types.h)
72 AC_CHECK_HEADERS(sys/resource.h stdint.h sched.h)
73
74 dnl Checks for typedefs, structures, and compiler characteristics.
75 AC_C_CONST
76 AC_C_INLINE
77 AC_TYPE_SIZE_T
78 AC_HEADER_TIME
79 AC_C_BIGENDIAN
80 AC_STRUCT_TM
81
82 dnl Checks for library functions.
83 AC_FUNC_ALLOCA
84 AC_FUNC_SETVBUF_REVERSED
85 AC_FUNC_VPRINTF
86 AC_CHECK_FUNCS([mmap select socket strcspn strerror strspn getpagesize sysconf])
87 AC_CHECK_FUNCS([snprintf gettimeofday nanosleep sched_setscheduler])
88 AC_CHECK_FUNCS([modf sqrt])
89
90 AC_CHECK_LIB(m, sincos, [AC_DEFINE([HAVE_SINCOS],[1],[Define to 1 if your system has `sincos'.])])
91 AC_CHECK_LIB(m, sincosf,[AC_DEFINE([HAVE_SINCOSF],[1],[Define to 1 if your system has `sincosf'.])])
92 AC_CHECK_LIB(m, sinf, [AC_DEFINE([HAVE_SINF],[1],[Define to 1 if your system has `sinf'.])])
93 AC_CHECK_LIB(m, cosf, [AC_DEFINE([HAVE_COSF],[1],[Define to 1 if your system has `cosf'.])])
94 AC_CHECK_LIB(m, trunc, [AC_DEFINE([HAVE_TRUNC],[1],[Define to 1 if your system has `trunc'.])])
95 AC_CHECK_LIB(m, exp10, [AC_DEFINE([HAVE_EXP10],[1],[Define to 1 if your system has 'exp10'.])])
96 #AC_FUNC_MKTIME
97
98 AH_BOTTOM([
99 #ifndef HAVE_TRUNC
100 #include <math.h>
101 inline static double trunc(double x)
102 {
103   return x >= 0 ? floor(x) : ceil(x);
104 }
105 #endif
106
107 #ifndef HAVE_EXP10
108 #include <math.h>
109 inline static double exp10(double x)
110 {
111   return pow(10.0, x);
112 }
113 #endif
114 ])
115
116 GR_CHECK_SHM_OPEN
117 GR_LIBGNURADIO_CORE_EXTRA_LDFLAGS
118 GR_CHECK_CREATEFILEMAPPING
119
120 dnl Check for Mingw support
121 GR_PWIN32
122
123 dnl Do we have "dot", part of the graphviz package from AT&T?
124 dnl Doxgen will use it to draw pretty diagrams ;-)
125 AC_CHECK_PROG(HAVE_DOT, [dot],[YES],[NO])
126
127 PKG_CHECK_MODULES(FFTW3F, fftw3f >= 3.0)
128 AC_SUBST(FFTW3F_LIBS)
129
130 dnl conditional build stuff
131 GR_CHECK_DOXYGEN
132 GR_SET_MD_CPU
133
134 dnl Define where to look for cppunit includes and libs
135 dnl sets CPPUNIT_CFLAGS and CPPUNIT_LIBS
136 AM_PATH_CPPUNIT([1.9.14],[],
137                 [AC_MSG_ERROR([GNU Radio requires cppunit.  Stop])])
138
139 CPPUNIT_INCLUDES=$CPPUNIT_CFLAGS
140 AC_SUBST(CPPUNIT_INCLUDES)
141
142 dnl Define where to find boost includes
143 dnl defines BOOST_CFLAGS
144 GR_REQUIRE_BOOST_INCLUDES
145
146 DEFINES=""
147 AC_SUBST(DEFINES)
148
149 dnl Component specific configuration
150 dnl The order of the GR_ macros determines the order of compilation
151 subdirs="config"
152 GRC_GNURADIO_CORE
153 GRC_GNURADIO_EXAMPLES
154 GRC_USRP
155 GRC_GR_USRP                     dnl this must come after GRC_USRP
156 GRC_GR_AUDIO_ALSA
157 GRC_GR_AUDIO_JACK
158 GRC_GR_AUDIO_OSS
159 GRC_GR_AUDIO_OSX                dnl ***NOT TESTED***
160 GRC_GR_AUDIO_PORTAUDIO          dnl ***NOT TESTED***
161 GRC_GR_AUDIO_WINDOWS            dnl ***NOT TESTED***
162 GRC_GR_ATSC
163 GRC_GR_COMEDI
164 #GRC_GR_ERROR_CORRECTING_CODES  dnl disabled until fix for ticket:25
165 GRC_GR_GSM_FR_VOCODER
166 GRC_GR_RADAR
167 GRC_GR_RADIO_ASTRONOMY
168 GRC_GR_VIDEO_SDL
169 GRC_GR_WXGUI
170 GRC_PMT
171 GRC_GR_TRELLIS
172 GRC_EZDOP
173 GRC_GR_EZDOP                    dnl this must come after GRC_EZDOP
174
175 dnl Has list of successfully configured components
176 AC_SUBST([subdirs],$subdirs)
177 AC_SUBST([failed_subdirs], $failed)
178  
179 AC_CONFIG_FILES([\
180           Makefile \
181           config/Makefile
182 ])
183
184 AC_OUTPUT
185
186 echo
187 echo "*******************************************************************"
188 echo The following GNU Radio components have been successfully configured:
189 echo 
190 for dir in $subdirs
191 do
192     echo $dir
193 done
194 echo
195 if test "$failed" != ""; then
196     echo However, the following components did not configure successfully due to 
197     echo missing dependencies:
198     echo
199     for dir in $failed
200     do
201         echo $dir
202     done
203     echo
204     echo You may still run the 'make' command to build the successfully configured
205     echo components.
206     echo
207     #exit 1
208 fi
209 echo You my now run the 'make' command to build these packages.
210 echo