aclocal.m4
上传用户:shw771010
上传日期:2022-01-05
资源大小:991k
文件大小:41k
源码类别:

Audio

开发平台:

Unix_Linux

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