| 1 |
dnl Copyright 2001,2002,2003,2004,2005,2006,2007 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_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,3.1.1) |
|---|
| 26 |
AC_CONFIG_SRCDIR([gnuradio-core/src/lib/runtime/gr_vmcircbuf.cc]) |
|---|
| 27 |
|
|---|
| 28 |
DEFINES="" |
|---|
| 29 |
AC_SUBST(DEFINES) |
|---|
| 30 |
|
|---|
| 31 |
dnl Remember if the user explicity set CXXFLAGS |
|---|
| 32 |
if test -n "${CXXFLAGS}"; then |
|---|
| 33 |
user_set_cxxflags=yes |
|---|
| 34 |
fi |
|---|
| 35 |
|
|---|
| 36 |
GR_X86_64 dnl check for lib64 suffix |
|---|
| 37 |
LF_CONFIGURE_CC |
|---|
| 38 |
LF_CONFIGURE_CXX |
|---|
| 39 |
|
|---|
| 40 |
dnl The three macros above are known to override CXXFLAGS if the user |
|---|
| 41 |
dnl didn't specify them. Though I'm sure somebody thought this was |
|---|
| 42 |
dnl a good idea, it makes it hard to use other than -g -O2 when compiling |
|---|
| 43 |
dnl selected files. Thus we "undo" the damage here... |
|---|
| 44 |
dnl |
|---|
| 45 |
dnl If the user specified CXXFLAGS, we use them. Otherwise when compiling |
|---|
| 46 |
dnl the output of swig use use -O1 if we're using g++. |
|---|
| 47 |
dnl See Makefile.common for the rest of the magic. |
|---|
| 48 |
if test "$user_set_cxxflags" != yes; then |
|---|
| 49 |
autoconf_default_CXXFLAGS="$CXXFLAGS" |
|---|
| 50 |
CXXFLAGS="" |
|---|
| 51 |
if test "$GXX" = yes; then |
|---|
| 52 |
case "$host_cpu" in |
|---|
| 53 |
powerpc*) |
|---|
| 54 |
# "-O1" is broken on the PPC for some reason |
|---|
| 55 |
# (at least as of g++ 4.1.1) |
|---|
| 56 |
swig_CXXFLAGS="-g1 -O2" |
|---|
| 57 |
;; |
|---|
| 58 |
*) |
|---|
| 59 |
swig_CXXFLAGS="-g1 -O1" |
|---|
| 60 |
;; |
|---|
| 61 |
esac |
|---|
| 62 |
fi |
|---|
| 63 |
fi |
|---|
| 64 |
AC_SUBST(autoconf_default_CXXFLAGS) |
|---|
| 65 |
AC_SUBST(swig_CXXFLAGS) |
|---|
| 66 |
|
|---|
| 67 |
|
|---|
| 68 |
LF_SET_WARNINGS |
|---|
| 69 |
GR_SET_GPROF |
|---|
| 70 |
GR_SET_PROF |
|---|
| 71 |
AM_PROG_AS |
|---|
| 72 |
AC_PROG_LN_S |
|---|
| 73 |
AC_PROG_MAKE_SET |
|---|
| 74 |
AC_PROG_INSTALL |
|---|
| 75 |
AC_PATH_PROG([RM_PROG], [rm]) |
|---|
| 76 |
|
|---|
| 77 |
AC_LIBTOOL_WIN32_DLL |
|---|
| 78 |
dnl AC_DISABLE_SHARED dnl don't build shared libraries |
|---|
| 79 |
AC_ENABLE_SHARED dnl do build shared libraries |
|---|
| 80 |
AC_DISABLE_STATIC dnl don't build static libraries |
|---|
| 81 |
AC_PROG_LIBTOOL |
|---|
| 82 |
GR_FORTRAN |
|---|
| 83 |
|
|---|
| 84 |
GR_NO_UNDEFINED dnl do we need the -no-undefined linker flag |
|---|
| 85 |
GR_SCRIPTING |
|---|
| 86 |
|
|---|
| 87 |
AC_CHECK_PROG([XMLTO],[xmlto],[yes],[]) |
|---|
| 88 |
AM_CONDITIONAL([HAS_XMLTO], [test x$XMLTO = xyes]) |
|---|
| 89 |
|
|---|
| 90 |
dnl Checks for libraries. |
|---|
| 91 |
AC_CHECK_LIB(socket,socket) |
|---|
| 92 |
|
|---|
| 93 |
dnl check for threads (mandatory) |
|---|
| 94 |
GR_OMNITHREAD |
|---|
| 95 |
#AC_SUBST(PTHREAD_CFLAGS) |
|---|
| 96 |
CFLAGS="${CFLAGS} $PTHREAD_CFLAGS" |
|---|
| 97 |
CXXFLAGS="${CXXFLAGS} $PTHREAD_CFLAGS" |
|---|
| 98 |
|
|---|
| 99 |
if test "x$CXX_FOR_BUILD" = x |
|---|
| 100 |
then |
|---|
| 101 |
CXX_FOR_BUILD=${CXX} |
|---|
| 102 |
fi |
|---|
| 103 |
AC_SUBST(CXX_FOR_BUILD) |
|---|
| 104 |
|
|---|
| 105 |
dnl Check for SysV shm (mandatory) |
|---|
| 106 |
dnl FIXME this is no longer mandatory. Check the macro. |
|---|
| 107 |
GR_SYSV_SHM |
|---|
| 108 |
|
|---|
| 109 |
dnl Checks for header files. |
|---|
| 110 |
AC_HEADER_STDC |
|---|
| 111 |
AC_HEADER_SYS_WAIT |
|---|
| 112 |
AC_CHECK_HEADERS(fcntl.h limits.h strings.h time.h sys/ioctl.h sys/time.h unistd.h) |
|---|
| 113 |
AC_CHECK_HEADERS(linux/ppdev.h sys/mman.h sys/select.h sys/types.h) |
|---|
| 114 |
AC_CHECK_HEADERS(sys/resource.h stdint.h sched.h signal.h sys/syscall.h) |
|---|
| 115 |
|
|---|
| 116 |
dnl Checks for typedefs, structures, and compiler characteristics. |
|---|
| 117 |
AC_C_CONST |
|---|
| 118 |
AC_C_INLINE |
|---|
| 119 |
AC_TYPE_SIZE_T |
|---|
| 120 |
AC_HEADER_TIME |
|---|
| 121 |
AC_C_BIGENDIAN |
|---|
| 122 |
AC_STRUCT_TM |
|---|
| 123 |
|
|---|
| 124 |
dnl Checks for library functions. |
|---|
| 125 |
AC_FUNC_ALLOCA |
|---|
| 126 |
AC_FUNC_SETVBUF_REVERSED |
|---|
| 127 |
AC_FUNC_VPRINTF |
|---|
| 128 |
AC_CHECK_FUNCS([mmap select socket strcspn strerror strspn getpagesize sysconf]) |
|---|
| 129 |
AC_CHECK_FUNCS([snprintf gettimeofday nanosleep sched_setscheduler]) |
|---|
| 130 |
AC_CHECK_FUNCS([modf sqrt sigaction sigprocmask pthread_sigmask]) |
|---|
| 131 |
AC_CHECK_FUNCS([sched_setaffinity]) |
|---|
| 132 |
|
|---|
| 133 |
AC_CHECK_LIB(m, sincos, [AC_DEFINE([HAVE_SINCOS],[1],[Define to 1 if your system has `sincos'.])]) |
|---|
| 134 |
AC_CHECK_LIB(m, sincosf,[AC_DEFINE([HAVE_SINCOSF],[1],[Define to 1 if your system has `sincosf'.])]) |
|---|
| 135 |
AC_CHECK_LIB(m, sinf, [AC_DEFINE([HAVE_SINF],[1],[Define to 1 if your system has `sinf'.])]) |
|---|
| 136 |
AC_CHECK_LIB(m, cosf, [AC_DEFINE([HAVE_COSF],[1],[Define to 1 if your system has `cosf'.])]) |
|---|
| 137 |
AC_CHECK_LIB(m, trunc, [AC_DEFINE([HAVE_TRUNC],[1],[Define to 1 if your system has `trunc'.])]) |
|---|
| 138 |
AC_CHECK_LIB(m, exp10, [AC_DEFINE([HAVE_EXP10],[1],[Define to 1 if your system has 'exp10'.])]) |
|---|
| 139 |
#AC_FUNC_MKTIME |
|---|
| 140 |
|
|---|
| 141 |
AH_BOTTOM([ |
|---|
| 142 |
#ifndef HAVE_TRUNC |
|---|
| 143 |
#include <math.h> |
|---|
| 144 |
inline static double trunc(double x) |
|---|
| 145 |
{ |
|---|
| 146 |
return x >= 0 ? floor(x) : ceil(x); |
|---|
| 147 |
} |
|---|
| 148 |
#endif |
|---|
| 149 |
|
|---|
| 150 |
#ifndef HAVE_EXP10 |
|---|
| 151 |
#include <math.h> |
|---|
| 152 |
inline static double exp10(double x) |
|---|
| 153 |
{ |
|---|
| 154 |
return pow(10.0, x); |
|---|
| 155 |
} |
|---|
| 156 |
#endif |
|---|
| 157 |
]) |
|---|
| 158 |
|
|---|
| 159 |
GR_CHECK_SHM_OPEN |
|---|
| 160 |
GR_LIBGNURADIO_CORE_EXTRA_LDFLAGS |
|---|
| 161 |
GR_CHECK_CREATEFILEMAPPING |
|---|
| 162 |
|
|---|
| 163 |
dnl Check for Mingw support |
|---|
| 164 |
GR_PWIN32 |
|---|
| 165 |
|
|---|
| 166 |
dnl Do we have "dot", part of the graphviz package from AT&T? |
|---|
| 167 |
dnl Doxgen will use it to draw pretty diagrams ;-) |
|---|
| 168 |
AC_CHECK_PROG(HAVE_DOT, [dot],[YES],[NO]) |
|---|
| 169 |
|
|---|
| 170 |
PKG_CHECK_MODULES(FFTW3F, fftw3f >= 3.0) |
|---|
| 171 |
AC_SUBST(FFTW3F_LIBS) |
|---|
| 172 |
|
|---|
| 173 |
dnl conditional build stuff |
|---|
| 174 |
GR_CHECK_DOXYGEN |
|---|
| 175 |
GR_SET_MD_CPU |
|---|
| 176 |
|
|---|
| 177 |
dnl Define where to look for cppunit includes and libs |
|---|
| 178 |
dnl sets CPPUNIT_CFLAGS and CPPUNIT_LIBS |
|---|
| 179 |
AM_PATH_CPPUNIT([1.9.14],[], |
|---|
| 180 |
[AC_MSG_ERROR([GNU Radio requires cppunit. Stop])]) |
|---|
| 181 |
|
|---|
| 182 |
CPPUNIT_INCLUDES=$CPPUNIT_CFLAGS |
|---|
| 183 |
AC_SUBST(CPPUNIT_INCLUDES) |
|---|
| 184 |
|
|---|
| 185 |
dnl Define where to find boost includes |
|---|
| 186 |
dnl defines BOOST_CFLAGS |
|---|
| 187 |
GR_REQUIRE_BOOST_INCLUDES |
|---|
| 188 |
|
|---|
| 189 |
# If this is being done from a subversion tree, create variables |
|---|
| 190 |
GR_SUBVERSION |
|---|
| 191 |
|
|---|
| 192 |
dnl Component specific configuration |
|---|
| 193 |
dnl The order of the GR_ macros determines the order of compilation |
|---|
| 194 |
AC_ARG_ENABLE( |
|---|
| 195 |
[all-components], |
|---|
| 196 |
[ --enable-all-components Build all components or stop on failed dependencies] |
|---|
| 197 |
) |
|---|
| 198 |
|
|---|
| 199 |
build_dirs="config" |
|---|
| 200 |
GRC_OMNITHREAD dnl must come before gnuradio-core and mblock |
|---|
| 201 |
GRC_GNURADIO_CORE |
|---|
| 202 |
GRC_USRP |
|---|
| 203 |
GRC_GR_USRP dnl this must come after GRC_USRP |
|---|
| 204 |
GRC_GR_AUDIO_ALSA |
|---|
| 205 |
GRC_GR_AUDIO_JACK |
|---|
| 206 |
GRC_GR_AUDIO_OSS |
|---|
| 207 |
GRC_GR_AUDIO_OSX |
|---|
| 208 |
GRC_GR_AUDIO_PORTAUDIO |
|---|
| 209 |
GRC_GR_AUDIO_WINDOWS |
|---|
| 210 |
GRC_GR_ATSC |
|---|
| 211 |
GRC_GR_COMEDI |
|---|
| 212 |
GRC_GR_GSM_FR_VOCODER |
|---|
| 213 |
GRC_GR_PAGER |
|---|
| 214 |
GRC_GR_RADAR_MONO |
|---|
| 215 |
GRC_GR_RADIO_ASTRONOMY |
|---|
| 216 |
GRC_GR_TRELLIS |
|---|
| 217 |
GRC_GR_VIDEO_SDL |
|---|
| 218 |
GRC_GR_WXGUI |
|---|
| 219 |
GRC_GR_SOUNDER dnl this must come after GRC_USRP |
|---|
| 220 |
GRC_GR_UTILS |
|---|
| 221 |
GRC_GNURADIO_EXAMPLES dnl must come last |
|---|
| 222 |
|
|---|
| 223 |
# Each component is now either to be built, was skipped, or failed dependencies |
|---|
| 224 |
AC_SUBST([build_dirs], [$build_dirs]) |
|---|
| 225 |
AC_SUBST([skipped_dirs], [$skipped_dirs]) |
|---|
| 226 |
|
|---|
| 227 |
AC_CONFIG_FILES([\ |
|---|
| 228 |
Makefile \ |
|---|
| 229 |
run_tests.sh |
|---|
| 230 |
config/Makefile |
|---|
| 231 |
]) |
|---|
| 232 |
|
|---|
| 233 |
dnl run_tests.sh is created from run_tests.in.sh. Make it executable. |
|---|
| 234 |
AC_CONFIG_COMMANDS([run_tests_build], [chmod +x run_tests.sh]) |
|---|
| 235 |
|
|---|
| 236 |
AC_OUTPUT |
|---|
| 237 |
|
|---|
| 238 |
echo |
|---|
| 239 |
echo "*********************************************************************" |
|---|
| 240 |
echo The following GNU Radio components have been successfully configured: |
|---|
| 241 |
echo |
|---|
| 242 |
for dir in $build_dirs |
|---|
| 243 |
do |
|---|
| 244 |
echo $dir |
|---|
| 245 |
done |
|---|
| 246 |
echo |
|---|
| 247 |
echo You my now run the 'make' command to build these components. |
|---|
| 248 |
echo |
|---|
| 249 |
if test "$skipped_dirs" != ""; then |
|---|
| 250 |
echo "*********************************************************************" |
|---|
| 251 |
echo The following components were skipped either because you asked not |
|---|
| 252 |
echo to build them or they didn\'t pass configuration checks: |
|---|
| 253 |
echo |
|---|
| 254 |
for dir in $skipped_dirs |
|---|
| 255 |
do |
|---|
| 256 |
echo $dir |
|---|
| 257 |
done |
|---|
| 258 |
echo |
|---|
| 259 |
echo These components will not be built. |
|---|
| 260 |
echo |
|---|
| 261 |
fi |
|---|