aclocal.m4
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:48k
源码类别:

midi

开发平台:

Unix_Linux

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