17ecb02a8a8cad5732b2d5779370cd51de747735
[debian/gnuradio] / usrp2 / firmware / aclocal.m4
1 # generated automatically by aclocal 1.10.2 -*- Autoconf -*-
2
3 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
4 # 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
5 # This file is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
13
14 m4_ifndef([AC_AUTOCONF_VERSION],
15   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.63],,
17 [m4_warning([this file was generated for autoconf 2.63.
18 You have another version of autoconf.  It may work, but is not guaranteed to.
19 If you have problems, you may need to regenerate the build system entirely.
20 To do so, use the procedure documented by the package, typically `autoreconf'.])])
21
22 # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
23 #
24 # This file is free software; the Free Software Foundation
25 # gives unlimited permission to copy and/or distribute it,
26 # with or without modifications, as long as this notice is preserved.
27
28 # AM_AUTOMAKE_VERSION(VERSION)
29 # ----------------------------
30 # Automake X.Y traces this macro to ensure aclocal.m4 has been
31 # generated from the m4 files accompanying Automake X.Y.
32 # (This private macro should not be called outside this file.)
33 AC_DEFUN([AM_AUTOMAKE_VERSION],
34 [am__api_version='1.10'
35 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
36 dnl require some minimum version.  Point them to the right macro.
37 m4_if([$1], [1.10.2], [],
38       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
39 ])
40
41 # _AM_AUTOCONF_VERSION(VERSION)
42 # -----------------------------
43 # aclocal traces this macro to find the Autoconf version.
44 # This is a private macro too.  Using m4_define simplifies
45 # the logic in aclocal, which can simply ignore this definition.
46 m4_define([_AM_AUTOCONF_VERSION], [])
47
48 # AM_SET_CURRENT_AUTOMAKE_VERSION
49 # -------------------------------
50 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
51 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
52 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
53 [AM_AUTOMAKE_VERSION([1.10.2])dnl
54 m4_ifndef([AC_AUTOCONF_VERSION],
55   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
56 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
57
58 # Figure out how to run the assembler.                      -*- Autoconf -*-
59
60 # Copyright (C) 2001, 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
61 #
62 # This file is free software; the Free Software Foundation
63 # gives unlimited permission to copy and/or distribute it,
64 # with or without modifications, as long as this notice is preserved.
65
66 # serial 5
67
68 # AM_PROG_AS
69 # ----------
70 AC_DEFUN([AM_PROG_AS],
71 [# By default we simply use the C compiler to build assembly code.
72 AC_REQUIRE([AC_PROG_CC])
73 test "${CCAS+set}" = set || CCAS=$CC
74 test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
75 AC_ARG_VAR([CCAS],      [assembler compiler command (defaults to CC)])
76 AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])
77 _AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
78 ])
79
80 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
81
82 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
83 #
84 # This file is free software; the Free Software Foundation
85 # gives unlimited permission to copy and/or distribute it,
86 # with or without modifications, as long as this notice is preserved.
87
88 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
89 # $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
90 # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
91 #
92 # Of course, Automake must honor this variable whenever it calls a
93 # tool from the auxiliary directory.  The problem is that $srcdir (and
94 # therefore $ac_aux_dir as well) can be either absolute or relative,
95 # depending on how configure is run.  This is pretty annoying, since
96 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
97 # source directory, any form will work fine, but in subdirectories a
98 # relative path needs to be adjusted first.
99 #
100 # $ac_aux_dir/missing
101 #    fails when called from a subdirectory if $ac_aux_dir is relative
102 # $top_srcdir/$ac_aux_dir/missing
103 #    fails if $ac_aux_dir is absolute,
104 #    fails when called from a subdirectory in a VPATH build with
105 #          a relative $ac_aux_dir
106 #
107 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
108 # are both prefixed by $srcdir.  In an in-source build this is usually
109 # harmless because $srcdir is `.', but things will broke when you
110 # start a VPATH build or use an absolute $srcdir.
111 #
112 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
113 # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
114 #   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
115 # and then we would define $MISSING as
116 #   MISSING="\${SHELL} $am_aux_dir/missing"
117 # This will work as long as MISSING is not called from configure, because
118 # unfortunately $(top_srcdir) has no meaning in configure.
119 # However there are other variables, like CC, which are often used in
120 # configure, and could therefore not use this "fixed" $ac_aux_dir.
121 #
122 # Another solution, used here, is to always expand $ac_aux_dir to an
123 # absolute PATH.  The drawback is that using absolute paths prevent a
124 # configured tree to be moved without reconfiguration.
125
126 AC_DEFUN([AM_AUX_DIR_EXPAND],
127 [dnl Rely on autoconf to set up CDPATH properly.
128 AC_PREREQ([2.50])dnl
129 # expand $ac_aux_dir to an absolute path
130 am_aux_dir=`cd $ac_aux_dir && pwd`
131 ])
132
133 # AM_CONDITIONAL                                            -*- Autoconf -*-
134
135 # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006
136 # Free Software Foundation, Inc.
137 #
138 # This file is free software; the Free Software Foundation
139 # gives unlimited permission to copy and/or distribute it,
140 # with or without modifications, as long as this notice is preserved.
141
142 # serial 8
143
144 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
145 # -------------------------------------
146 # Define a conditional.
147 AC_DEFUN([AM_CONDITIONAL],
148 [AC_PREREQ(2.52)dnl
149  ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
150         [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
151 AC_SUBST([$1_TRUE])dnl
152 AC_SUBST([$1_FALSE])dnl
153 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
154 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
155 if $2; then
156   $1_TRUE=
157   $1_FALSE='#'
158 else
159   $1_TRUE='#'
160   $1_FALSE=
161 fi
162 AC_CONFIG_COMMANDS_PRE(
163 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
164   AC_MSG_ERROR([[conditional "$1" was never defined.
165 Usually this means the macro was only invoked conditionally.]])
166 fi])])
167
168 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
169 # Free Software Foundation, Inc.
170 #
171 # This file is free software; the Free Software Foundation
172 # gives unlimited permission to copy and/or distribute it,
173 # with or without modifications, as long as this notice is preserved.
174
175 # serial 9
176
177 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
178 # written in clear, in which case automake, when reading aclocal.m4,
179 # will think it sees a *use*, and therefore will trigger all it's
180 # C support machinery.  Also note that it means that autoscan, seeing
181 # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
182
183
184 # _AM_DEPENDENCIES(NAME)
185 # ----------------------
186 # See how the compiler implements dependency checking.
187 # NAME is "CC", "CXX", "GCJ", or "OBJC".
188 # We try a few techniques and use that to set a single cache variable.
189 #
190 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
191 # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
192 # dependency, and given that the user is not expected to run this macro,
193 # just rely on AC_PROG_CC.
194 AC_DEFUN([_AM_DEPENDENCIES],
195 [AC_REQUIRE([AM_SET_DEPDIR])dnl
196 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
197 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
198 AC_REQUIRE([AM_DEP_TRACK])dnl
199
200 ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
201        [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
202        [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
203        [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
204        [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
205                    [depcc="$$1"   am_compiler_list=])
206
207 AC_CACHE_CHECK([dependency style of $depcc],
208                [am_cv_$1_dependencies_compiler_type],
209 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
210   # We make a subdir and do the tests there.  Otherwise we can end up
211   # making bogus files that we don't know about and never remove.  For
212   # instance it was reported that on HP-UX the gcc test will end up
213   # making a dummy file named `D' -- because `-MD' means `put the output
214   # in D'.
215   mkdir conftest.dir
216   # Copy depcomp to subdir because otherwise we won't find it if we're
217   # using a relative directory.
218   cp "$am_depcomp" conftest.dir
219   cd conftest.dir
220   # We will build objects and dependencies in a subdirectory because
221   # it helps to detect inapplicable dependency modes.  For instance
222   # both Tru64's cc and ICC support -MD to output dependencies as a
223   # side effect of compilation, but ICC will put the dependencies in
224   # the current directory while Tru64 will put them in the object
225   # directory.
226   mkdir sub
227
228   am_cv_$1_dependencies_compiler_type=none
229   if test "$am_compiler_list" = ""; then
230      am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
231   fi
232   for depmode in $am_compiler_list; do
233     # Setup a source with many dependencies, because some compilers
234     # like to wrap large dependency lists on column 80 (with \), and
235     # we should not choose a depcomp mode which is confused by this.
236     #
237     # We need to recreate these files for each test, as the compiler may
238     # overwrite some of them when testing with obscure command lines.
239     # This happens at least with the AIX C compiler.
240     : > sub/conftest.c
241     for i in 1 2 3 4 5 6; do
242       echo '#include "conftst'$i'.h"' >> sub/conftest.c
243       # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
244       # Solaris 8's {/usr,}/bin/sh.
245       touch sub/conftst$i.h
246     done
247     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
248
249     case $depmode in
250     nosideeffect)
251       # after this tag, mechanisms are not by side-effect, so they'll
252       # only be used when explicitly requested
253       if test "x$enable_dependency_tracking" = xyes; then
254         continue
255       else
256         break
257       fi
258       ;;
259     none) break ;;
260     esac
261     # We check with `-c' and `-o' for the sake of the "dashmstdout"
262     # mode.  It turns out that the SunPro C++ compiler does not properly
263     # handle `-M -o', and we need to detect this.
264     if depmode=$depmode \
265        source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
266        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
267        $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
268          >/dev/null 2>conftest.err &&
269        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
270        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
271        grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
272        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
273       # icc doesn't choke on unknown options, it will just issue warnings
274       # or remarks (even with -Werror).  So we grep stderr for any message
275       # that says an option was ignored or not supported.
276       # When given -MP, icc 7.0 and 7.1 complain thusly:
277       #   icc: Command line warning: ignoring option '-M'; no argument required
278       # The diagnosis changed in icc 8.0:
279       #   icc: Command line remark: option '-MP' not supported
280       if (grep 'ignoring option' conftest.err ||
281           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
282         am_cv_$1_dependencies_compiler_type=$depmode
283         break
284       fi
285     fi
286   done
287
288   cd ..
289   rm -rf conftest.dir
290 else
291   am_cv_$1_dependencies_compiler_type=none
292 fi
293 ])
294 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
295 AM_CONDITIONAL([am__fastdep$1], [
296   test "x$enable_dependency_tracking" != xno \
297   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
298 ])
299
300
301 # AM_SET_DEPDIR
302 # -------------
303 # Choose a directory name for dependency files.
304 # This macro is AC_REQUIREd in _AM_DEPENDENCIES
305 AC_DEFUN([AM_SET_DEPDIR],
306 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
307 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
308 ])
309
310
311 # AM_DEP_TRACK
312 # ------------
313 AC_DEFUN([AM_DEP_TRACK],
314 [AC_ARG_ENABLE(dependency-tracking,
315 [  --disable-dependency-tracking  speeds up one-time build
316   --enable-dependency-tracking   do not reject slow dependency extractors])
317 if test "x$enable_dependency_tracking" != xno; then
318   am_depcomp="$ac_aux_dir/depcomp"
319   AMDEPBACKSLASH='\'
320 fi
321 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
322 AC_SUBST([AMDEPBACKSLASH])dnl
323 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
324 ])
325
326 # Generate code to set up dependency tracking.              -*- Autoconf -*-
327
328 # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008
329 # Free Software Foundation, Inc.
330 #
331 # This file is free software; the Free Software Foundation
332 # gives unlimited permission to copy and/or distribute it,
333 # with or without modifications, as long as this notice is preserved.
334
335 #serial 5
336
337 # _AM_OUTPUT_DEPENDENCY_COMMANDS
338 # ------------------------------
339 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
340 [{
341   # Autoconf 2.62 quotes --file arguments for eval, but not when files
342   # are listed without --file.  Let's play safe and only enable the eval
343   # if we detect the quoting.
344   case $CONFIG_FILES in
345   *\'*) eval set x "$CONFIG_FILES" ;;
346   *)   set x $CONFIG_FILES ;;
347   esac
348   shift
349   for mf
350   do
351     # Strip MF so we end up with the name of the file.
352     mf=`echo "$mf" | sed -e 's/:.*$//'`
353     # Check whether this is an Automake generated Makefile or not.
354     # We used to match only the files named `Makefile.in', but
355     # some people rename them; so instead we look at the file content.
356     # Grep'ing the first line is not enough: some people post-process
357     # each Makefile.in and add a new line on top of each file to say so.
358     # Grep'ing the whole file is not good either: AIX grep has a line
359     # limit of 2048, but all sed's we know have understand at least 4000.
360     if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
361       dirpart=`AS_DIRNAME("$mf")`
362     else
363       continue
364     fi
365     # Extract the definition of DEPDIR, am__include, and am__quote
366     # from the Makefile without running `make'.
367     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
368     test -z "$DEPDIR" && continue
369     am__include=`sed -n 's/^am__include = //p' < "$mf"`
370     test -z "am__include" && continue
371     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
372     # When using ansi2knr, U may be empty or an underscore; expand it
373     U=`sed -n 's/^U = //p' < "$mf"`
374     # Find all dependency output files, they are included files with
375     # $(DEPDIR) in their names.  We invoke sed twice because it is the
376     # simplest approach to changing $(DEPDIR) to its actual value in the
377     # expansion.
378     for file in `sed -n "
379       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
380          sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
381       # Make sure the directory exists.
382       test -f "$dirpart/$file" && continue
383       fdir=`AS_DIRNAME(["$file"])`
384       AS_MKDIR_P([$dirpart/$fdir])
385       # echo "creating $dirpart/$file"
386       echo '# dummy' > "$dirpart/$file"
387     done
388   done
389 }
390 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
391
392
393 # AM_OUTPUT_DEPENDENCY_COMMANDS
394 # -----------------------------
395 # This macro should only be invoked once -- use via AC_REQUIRE.
396 #
397 # This code is only required when automatic dependency tracking
398 # is enabled.  FIXME.  This creates each `.P' file that we will
399 # need in order to bootstrap the dependency handling code.
400 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
401 [AC_CONFIG_COMMANDS([depfiles],
402      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
403      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
404 ])
405
406 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
407 # Free Software Foundation, Inc.
408 #
409 # This file is free software; the Free Software Foundation
410 # gives unlimited permission to copy and/or distribute it,
411 # with or without modifications, as long as this notice is preserved.
412
413 # serial 8
414
415 # AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
416 AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
417
418 # Do all the work for Automake.                             -*- Autoconf -*-
419
420 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
421 # 2005, 2006, 2008 Free Software Foundation, Inc.
422 #
423 # This file is free software; the Free Software Foundation
424 # gives unlimited permission to copy and/or distribute it,
425 # with or without modifications, as long as this notice is preserved.
426
427 # serial 13
428
429 # This macro actually does too much.  Some checks are only needed if
430 # your package does certain things.  But this isn't really a big deal.
431
432 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
433 # AM_INIT_AUTOMAKE([OPTIONS])
434 # -----------------------------------------------
435 # The call with PACKAGE and VERSION arguments is the old style
436 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
437 # and VERSION should now be passed to AC_INIT and removed from
438 # the call to AM_INIT_AUTOMAKE.
439 # We support both call styles for the transition.  After
440 # the next Automake release, Autoconf can make the AC_INIT
441 # arguments mandatory, and then we can depend on a new Autoconf
442 # release and drop the old call support.
443 AC_DEFUN([AM_INIT_AUTOMAKE],
444 [AC_PREREQ([2.60])dnl
445 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
446 dnl the ones we care about.
447 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
448 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
449 AC_REQUIRE([AC_PROG_INSTALL])dnl
450 if test "`cd $srcdir && pwd`" != "`pwd`"; then
451   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
452   # is not polluted with repeated "-I."
453   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
454   # test to see if srcdir already configured
455   if test -f $srcdir/config.status; then
456     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
457   fi
458 fi
459
460 # test whether we have cygpath
461 if test -z "$CYGPATH_W"; then
462   if (cygpath --version) >/dev/null 2>/dev/null; then
463     CYGPATH_W='cygpath -w'
464   else
465     CYGPATH_W=echo
466   fi
467 fi
468 AC_SUBST([CYGPATH_W])
469
470 # Define the identity of the package.
471 dnl Distinguish between old-style and new-style calls.
472 m4_ifval([$2],
473 [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
474  AC_SUBST([PACKAGE], [$1])dnl
475  AC_SUBST([VERSION], [$2])],
476 [_AM_SET_OPTIONS([$1])dnl
477 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
478 m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
479   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
480  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
481  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
482
483 _AM_IF_OPTION([no-define],,
484 [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
485  AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
486
487 # Some tools Automake needs.
488 AC_REQUIRE([AM_SANITY_CHECK])dnl
489 AC_REQUIRE([AC_ARG_PROGRAM])dnl
490 AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
491 AM_MISSING_PROG(AUTOCONF, autoconf)
492 AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
493 AM_MISSING_PROG(AUTOHEADER, autoheader)
494 AM_MISSING_PROG(MAKEINFO, makeinfo)
495 AM_PROG_INSTALL_SH
496 AM_PROG_INSTALL_STRIP
497 AC_REQUIRE([AM_PROG_MKDIR_P])dnl
498 # We need awk for the "check" target.  The system "awk" is bad on
499 # some platforms.
500 AC_REQUIRE([AC_PROG_AWK])dnl
501 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
502 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
503 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
504               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
505                              [_AM_PROG_TAR([v7])])])
506 _AM_IF_OPTION([no-dependencies],,
507 [AC_PROVIDE_IFELSE([AC_PROG_CC],
508                   [_AM_DEPENDENCIES(CC)],
509                   [define([AC_PROG_CC],
510                           defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
511 AC_PROVIDE_IFELSE([AC_PROG_CXX],
512                   [_AM_DEPENDENCIES(CXX)],
513                   [define([AC_PROG_CXX],
514                           defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
515 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
516                   [_AM_DEPENDENCIES(OBJC)],
517                   [define([AC_PROG_OBJC],
518                           defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
519 ])
520 ])
521
522
523 # When config.status generates a header, we must update the stamp-h file.
524 # This file resides in the same directory as the config header
525 # that is generated.  The stamp files are numbered to have different names.
526
527 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
528 # loop where config.status creates the headers, so we can generate
529 # our stamp files there.
530 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
531 [# Compute $1's index in $config_headers.
532 _am_arg=$1
533 _am_stamp_count=1
534 for _am_header in $config_headers :; do
535   case $_am_header in
536     $_am_arg | $_am_arg:* )
537       break ;;
538     * )
539       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
540   esac
541 done
542 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
543
544 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
545 #
546 # This file is free software; the Free Software Foundation
547 # gives unlimited permission to copy and/or distribute it,
548 # with or without modifications, as long as this notice is preserved.
549
550 # AM_PROG_INSTALL_SH
551 # ------------------
552 # Define $install_sh.
553 AC_DEFUN([AM_PROG_INSTALL_SH],
554 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
555 install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
556 AC_SUBST(install_sh)])
557
558 # Copyright (C) 2003, 2005  Free Software Foundation, Inc.
559 #
560 # This file is free software; the Free Software Foundation
561 # gives unlimited permission to copy and/or distribute it,
562 # with or without modifications, as long as this notice is preserved.
563
564 # serial 2
565
566 # Check whether the underlying file-system supports filenames
567 # with a leading dot.  For instance MS-DOS doesn't.
568 AC_DEFUN([AM_SET_LEADING_DOT],
569 [rm -rf .tst 2>/dev/null
570 mkdir .tst 2>/dev/null
571 if test -d .tst; then
572   am__leading_dot=.
573 else
574   am__leading_dot=_
575 fi
576 rmdir .tst 2>/dev/null
577 AC_SUBST([am__leading_dot])])
578
579 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
580
581 # Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
582 #
583 # This file is free software; the Free Software Foundation
584 # gives unlimited permission to copy and/or distribute it,
585 # with or without modifications, as long as this notice is preserved.
586
587 # serial 3
588
589 # AM_MAKE_INCLUDE()
590 # -----------------
591 # Check to see how make treats includes.
592 AC_DEFUN([AM_MAKE_INCLUDE],
593 [am_make=${MAKE-make}
594 cat > confinc << 'END'
595 am__doit:
596         @echo done
597 .PHONY: am__doit
598 END
599 # If we don't find an include directive, just comment out the code.
600 AC_MSG_CHECKING([for style of include used by $am_make])
601 am__include="#"
602 am__quote=
603 _am_result=none
604 # First try GNU make style include.
605 echo "include confinc" > confmf
606 # We grep out `Entering directory' and `Leaving directory'
607 # messages which can occur if `w' ends up in MAKEFLAGS.
608 # In particular we don't look at `^make:' because GNU make might
609 # be invoked under some other name (usually "gmake"), in which
610 # case it prints its new name instead of `make'.
611 if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
612    am__include=include
613    am__quote=
614    _am_result=GNU
615 fi
616 # Now try BSD make style include.
617 if test "$am__include" = "#"; then
618    echo '.include "confinc"' > confmf
619    if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
620       am__include=.include
621       am__quote="\""
622       _am_result=BSD
623    fi
624 fi
625 AC_SUBST([am__include])
626 AC_SUBST([am__quote])
627 AC_MSG_RESULT([$_am_result])
628 rm -f confinc confmf
629 ])
630
631 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
632
633 # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005
634 # Free Software Foundation, Inc.
635 #
636 # This file is free software; the Free Software Foundation
637 # gives unlimited permission to copy and/or distribute it,
638 # with or without modifications, as long as this notice is preserved.
639
640 # serial 5
641
642 # AM_MISSING_PROG(NAME, PROGRAM)
643 # ------------------------------
644 AC_DEFUN([AM_MISSING_PROG],
645 [AC_REQUIRE([AM_MISSING_HAS_RUN])
646 $1=${$1-"${am_missing_run}$2"}
647 AC_SUBST($1)])
648
649
650 # AM_MISSING_HAS_RUN
651 # ------------------
652 # Define MISSING if not defined so far and test if it supports --run.
653 # If it does, set am_missing_run to use it, otherwise, to nothing.
654 AC_DEFUN([AM_MISSING_HAS_RUN],
655 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
656 AC_REQUIRE_AUX_FILE([missing])dnl
657 test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
658 # Use eval to expand $SHELL
659 if eval "$MISSING --run true"; then
660   am_missing_run="$MISSING --run "
661 else
662   am_missing_run=
663   AC_MSG_WARN([`missing' script is too old or missing])
664 fi
665 ])
666
667 # Copyright (C) 2003, 2004, 2005, 2006  Free Software Foundation, Inc.
668 #
669 # This file is free software; the Free Software Foundation
670 # gives unlimited permission to copy and/or distribute it,
671 # with or without modifications, as long as this notice is preserved.
672
673 # AM_PROG_MKDIR_P
674 # ---------------
675 # Check for `mkdir -p'.
676 AC_DEFUN([AM_PROG_MKDIR_P],
677 [AC_PREREQ([2.60])dnl
678 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
679 dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
680 dnl while keeping a definition of mkdir_p for backward compatibility.
681 dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
682 dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
683 dnl Makefile.ins that do not define MKDIR_P, so we do our own
684 dnl adjustment using top_builddir (which is defined more often than
685 dnl MKDIR_P).
686 AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
687 case $mkdir_p in
688   [[\\/$]]* | ?:[[\\/]]*) ;;
689   */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
690 esac
691 ])
692
693 # Helper functions for option handling.                     -*- Autoconf -*-
694
695 # Copyright (C) 2001, 2002, 2003, 2005, 2008  Free Software Foundation, Inc.
696 #
697 # This file is free software; the Free Software Foundation
698 # gives unlimited permission to copy and/or distribute it,
699 # with or without modifications, as long as this notice is preserved.
700
701 # serial 4
702
703 # _AM_MANGLE_OPTION(NAME)
704 # -----------------------
705 AC_DEFUN([_AM_MANGLE_OPTION],
706 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
707
708 # _AM_SET_OPTION(NAME)
709 # ------------------------------
710 # Set option NAME.  Presently that only means defining a flag for this option.
711 AC_DEFUN([_AM_SET_OPTION],
712 [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
713
714 # _AM_SET_OPTIONS(OPTIONS)
715 # ----------------------------------
716 # OPTIONS is a space-separated list of Automake options.
717 AC_DEFUN([_AM_SET_OPTIONS],
718 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
719
720 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
721 # -------------------------------------------
722 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
723 AC_DEFUN([_AM_IF_OPTION],
724 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
725
726 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
727
728 # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
729 # Free Software Foundation, Inc.
730 #
731 # This file is free software; the Free Software Foundation
732 # gives unlimited permission to copy and/or distribute it,
733 # with or without modifications, as long as this notice is preserved.
734
735 # serial 4
736
737 # AM_SANITY_CHECK
738 # ---------------
739 AC_DEFUN([AM_SANITY_CHECK],
740 [AC_MSG_CHECKING([whether build environment is sane])
741 # Just in case
742 sleep 1
743 echo timestamp > conftest.file
744 # Do `set' in a subshell so we don't clobber the current shell's
745 # arguments.  Must try -L first in case configure is actually a
746 # symlink; some systems play weird games with the mod time of symlinks
747 # (eg FreeBSD returns the mod time of the symlink's containing
748 # directory).
749 if (
750    set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
751    if test "$[*]" = "X"; then
752       # -L didn't work.
753       set X `ls -t $srcdir/configure conftest.file`
754    fi
755    rm -f conftest.file
756    if test "$[*]" != "X $srcdir/configure conftest.file" \
757       && test "$[*]" != "X conftest.file $srcdir/configure"; then
758
759       # If neither matched, then we have a broken ls.  This can happen
760       # if, for instance, CONFIG_SHELL is bash and it inherits a
761       # broken ls alias from the environment.  This has actually
762       # happened.  Such a system could not be considered "sane".
763       AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
764 alias in your environment])
765    fi
766
767    test "$[2]" = conftest.file
768    )
769 then
770    # Ok.
771    :
772 else
773    AC_MSG_ERROR([newly created file is older than distributed files!
774 Check your system clock])
775 fi
776 AC_MSG_RESULT(yes)])
777
778 # Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
779 #
780 # This file is free software; the Free Software Foundation
781 # gives unlimited permission to copy and/or distribute it,
782 # with or without modifications, as long as this notice is preserved.
783
784 # AM_PROG_INSTALL_STRIP
785 # ---------------------
786 # One issue with vendor `install' (even GNU) is that you can't
787 # specify the program used to strip binaries.  This is especially
788 # annoying in cross-compiling environments, where the build's strip
789 # is unlikely to handle the host's binaries.
790 # Fortunately install-sh will honor a STRIPPROG variable, so we
791 # always use install-sh in `make install-strip', and initialize
792 # STRIPPROG with the value of the STRIP variable (set by the user).
793 AC_DEFUN([AM_PROG_INSTALL_STRIP],
794 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
795 # Installed binaries are usually stripped using `strip' when the user
796 # run `make install-strip'.  However `strip' might not be the right
797 # tool to use in cross-compilation environments, therefore Automake
798 # will honor the `STRIP' environment variable to overrule this program.
799 dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
800 if test "$cross_compiling" != no; then
801   AC_CHECK_TOOL([STRIP], [strip], :)
802 fi
803 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
804 AC_SUBST([INSTALL_STRIP_PROGRAM])])
805
806 # Copyright (C) 2006  Free Software Foundation, Inc.
807 #
808 # This file is free software; the Free Software Foundation
809 # gives unlimited permission to copy and/or distribute it,
810 # with or without modifications, as long as this notice is preserved.
811
812 # _AM_SUBST_NOTMAKE(VARIABLE)
813 # ---------------------------
814 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
815 # This macro is traced by Automake.
816 AC_DEFUN([_AM_SUBST_NOTMAKE])
817
818 # Check how to create a tarball.                            -*- Autoconf -*-
819
820 # Copyright (C) 2004, 2005  Free Software Foundation, Inc.
821 #
822 # This file is free software; the Free Software Foundation
823 # gives unlimited permission to copy and/or distribute it,
824 # with or without modifications, as long as this notice is preserved.
825
826 # serial 2
827
828 # _AM_PROG_TAR(FORMAT)
829 # --------------------
830 # Check how to create a tarball in format FORMAT.
831 # FORMAT should be one of `v7', `ustar', or `pax'.
832 #
833 # Substitute a variable $(am__tar) that is a command
834 # writing to stdout a FORMAT-tarball containing the directory
835 # $tardir.
836 #     tardir=directory && $(am__tar) > result.tar
837 #
838 # Substitute a variable $(am__untar) that extract such
839 # a tarball read from stdin.
840 #     $(am__untar) < result.tar
841 AC_DEFUN([_AM_PROG_TAR],
842 [# Always define AMTAR for backward compatibility.
843 AM_MISSING_PROG([AMTAR], [tar])
844 m4_if([$1], [v7],
845      [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
846      [m4_case([$1], [ustar],, [pax],,
847               [m4_fatal([Unknown tar format])])
848 AC_MSG_CHECKING([how to create a $1 tar archive])
849 # Loop over all known methods to create a tar archive until one works.
850 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
851 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
852 # Do not fold the above two line into one, because Tru64 sh and
853 # Solaris sh will not grok spaces in the rhs of `-'.
854 for _am_tool in $_am_tools
855 do
856   case $_am_tool in
857   gnutar)
858     for _am_tar in tar gnutar gtar;
859     do
860       AM_RUN_LOG([$_am_tar --version]) && break
861     done
862     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
863     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
864     am__untar="$_am_tar -xf -"
865     ;;
866   plaintar)
867     # Must skip GNU tar: if it does not support --format= it doesn't create
868     # ustar tarball either.
869     (tar --version) >/dev/null 2>&1 && continue
870     am__tar='tar chf - "$$tardir"'
871     am__tar_='tar chf - "$tardir"'
872     am__untar='tar xf -'
873     ;;
874   pax)
875     am__tar='pax -L -x $1 -w "$$tardir"'
876     am__tar_='pax -L -x $1 -w "$tardir"'
877     am__untar='pax -r'
878     ;;
879   cpio)
880     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
881     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
882     am__untar='cpio -i -H $1 -d'
883     ;;
884   none)
885     am__tar=false
886     am__tar_=false
887     am__untar=false
888     ;;
889   esac
890
891   # If the value was cached, stop now.  We just wanted to have am__tar
892   # and am__untar set.
893   test -n "${am_cv_prog_tar_$1}" && break
894
895   # tar/untar a dummy directory, and stop if the command works
896   rm -rf conftest.dir
897   mkdir conftest.dir
898   echo GrepMe > conftest.dir/file
899   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
900   rm -rf conftest.dir
901   if test -s conftest.tar; then
902     AM_RUN_LOG([$am__untar <conftest.tar])
903     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
904   fi
905 done
906 rm -rf conftest.dir
907
908 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
909 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
910 AC_SUBST([am__tar])
911 AC_SUBST([am__untar])
912 ]) # _AM_PROG_TAR
913
914 m4_include([config/grc_build.m4])
915 m4_include([config/grc_usrp2_firmware.m4])
916 m4_include([config/grc_usrp2_stub.m4])