aclocal.m4 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702
  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.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. # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  19. #
  20. # This file is free software; the Free Software Foundation
  21. # gives unlimited permission to copy and/or distribute it,
  22. # with or without modifications, as long as this notice is preserved.
  23. # AM_AUTOMAKE_VERSION(VERSION)
  24. # ----------------------------
  25. # Automake X.Y traces this macro to ensure aclocal.m4 has been
  26. # generated from the m4 files accompanying Automake X.Y.
  27. # (This private macro should not be called outside this file.)
  28. AC_DEFUN([AM_AUTOMAKE_VERSION],
  29. [am__api_version='1.11'
  30. dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
  31. dnl require some minimum version. Point them to the right macro.
  32. m4_if([$1], [1.11.1], [],
  33. [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
  34. ])
  35. # _AM_AUTOCONF_VERSION(VERSION)
  36. # -----------------------------
  37. # aclocal traces this macro to find the Autoconf version.
  38. # This is a private macro too. Using m4_define simplifies
  39. # the logic in aclocal, which can simply ignore this definition.
  40. m4_define([_AM_AUTOCONF_VERSION], [])
  41. # AM_SET_CURRENT_AUTOMAKE_VERSION
  42. # -------------------------------
  43. # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
  44. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
  45. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
  46. [AM_AUTOMAKE_VERSION([1.11.1])dnl
  47. m4_ifndef([AC_AUTOCONF_VERSION],
  48. [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
  49. _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
  50. # AM_AUX_DIR_EXPAND -*- Autoconf -*-
  51. # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
  52. #
  53. # This file is free software; the Free Software Foundation
  54. # gives unlimited permission to copy and/or distribute it,
  55. # with or without modifications, as long as this notice is preserved.
  56. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
  57. # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
  58. # `$srcdir', `$srcdir/..', or `$srcdir/../..'.
  59. #
  60. # Of course, Automake must honor this variable whenever it calls a
  61. # tool from the auxiliary directory. The problem is that $srcdir (and
  62. # therefore $ac_aux_dir as well) can be either absolute or relative,
  63. # depending on how configure is run. This is pretty annoying, since
  64. # it makes $ac_aux_dir quite unusable in subdirectories: in the top
  65. # source directory, any form will work fine, but in subdirectories a
  66. # relative path needs to be adjusted first.
  67. #
  68. # $ac_aux_dir/missing
  69. # fails when called from a subdirectory if $ac_aux_dir is relative
  70. # $top_srcdir/$ac_aux_dir/missing
  71. # fails if $ac_aux_dir is absolute,
  72. # fails when called from a subdirectory in a VPATH build with
  73. # a relative $ac_aux_dir
  74. #
  75. # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
  76. # are both prefixed by $srcdir. In an in-source build this is usually
  77. # harmless because $srcdir is `.', but things will broke when you
  78. # start a VPATH build or use an absolute $srcdir.
  79. #
  80. # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
  81. # iff we strip the leading $srcdir from $ac_aux_dir. That would be:
  82. # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
  83. # and then we would define $MISSING as
  84. # MISSING="\${SHELL} $am_aux_dir/missing"
  85. # This will work as long as MISSING is not called from configure, because
  86. # unfortunately $(top_srcdir) has no meaning in configure.
  87. # However there are other variables, like CC, which are often used in
  88. # configure, and could therefore not use this "fixed" $ac_aux_dir.
  89. #
  90. # Another solution, used here, is to always expand $ac_aux_dir to an
  91. # absolute PATH. The drawback is that using absolute paths prevent a
  92. # configured tree to be moved without reconfiguration.
  93. AC_DEFUN([AM_AUX_DIR_EXPAND],
  94. [dnl Rely on autoconf to set up CDPATH properly.
  95. AC_PREREQ([2.50])dnl
  96. # expand $ac_aux_dir to an absolute path
  97. am_aux_dir=`cd $ac_aux_dir && pwd`
  98. ])
  99. # AM_CONDITIONAL -*- Autoconf -*-
  100. # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008
  101. # Free Software Foundation, Inc.
  102. #
  103. # This file is free software; the Free Software Foundation
  104. # gives unlimited permission to copy and/or distribute it,
  105. # with or without modifications, as long as this notice is preserved.
  106. # serial 9
  107. # AM_CONDITIONAL(NAME, SHELL-CONDITION)
  108. # -------------------------------------
  109. # Define a conditional.
  110. AC_DEFUN([AM_CONDITIONAL],
  111. [AC_PREREQ(2.52)dnl
  112. ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
  113. [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
  114. AC_SUBST([$1_TRUE])dnl
  115. AC_SUBST([$1_FALSE])dnl
  116. _AM_SUBST_NOTMAKE([$1_TRUE])dnl
  117. _AM_SUBST_NOTMAKE([$1_FALSE])dnl
  118. m4_define([_AM_COND_VALUE_$1], [$2])dnl
  119. if $2; then
  120. $1_TRUE=
  121. $1_FALSE='#'
  122. else
  123. $1_TRUE='#'
  124. $1_FALSE=
  125. fi
  126. AC_CONFIG_COMMANDS_PRE(
  127. [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
  128. AC_MSG_ERROR([[conditional "$1" was never defined.
  129. Usually this means the macro was only invoked conditionally.]])
  130. fi])])
  131. # Do all the work for Automake. -*- Autoconf -*-
  132. # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
  133. # 2005, 2006, 2008, 2009 Free Software Foundation, Inc.
  134. #
  135. # This file is free software; the Free Software Foundation
  136. # gives unlimited permission to copy and/or distribute it,
  137. # with or without modifications, as long as this notice is preserved.
  138. # serial 16
  139. # This macro actually does too much. Some checks are only needed if
  140. # your package does certain things. But this isn't really a big deal.
  141. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
  142. # AM_INIT_AUTOMAKE([OPTIONS])
  143. # -----------------------------------------------
  144. # The call with PACKAGE and VERSION arguments is the old style
  145. # call (pre autoconf-2.50), which is being phased out. PACKAGE
  146. # and VERSION should now be passed to AC_INIT and removed from
  147. # the call to AM_INIT_AUTOMAKE.
  148. # We support both call styles for the transition. After
  149. # the next Automake release, Autoconf can make the AC_INIT
  150. # arguments mandatory, and then we can depend on a new Autoconf
  151. # release and drop the old call support.
  152. AC_DEFUN([AM_INIT_AUTOMAKE],
  153. [AC_PREREQ([2.62])dnl
  154. dnl Autoconf wants to disallow AM_ names. We explicitly allow
  155. dnl the ones we care about.
  156. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
  157. AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
  158. AC_REQUIRE([AC_PROG_INSTALL])dnl
  159. if test "`cd $srcdir && pwd`" != "`pwd`"; then
  160. # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
  161. # is not polluted with repeated "-I."
  162. AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
  163. # test to see if srcdir already configured
  164. if test -f $srcdir/config.status; then
  165. AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
  166. fi
  167. fi
  168. # test whether we have cygpath
  169. if test -z "$CYGPATH_W"; then
  170. if (cygpath --version) >/dev/null 2>/dev/null; then
  171. CYGPATH_W='cygpath -w'
  172. else
  173. CYGPATH_W=echo
  174. fi
  175. fi
  176. AC_SUBST([CYGPATH_W])
  177. # Define the identity of the package.
  178. dnl Distinguish between old-style and new-style calls.
  179. m4_ifval([$2],
  180. [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
  181. AC_SUBST([PACKAGE], [$1])dnl
  182. AC_SUBST([VERSION], [$2])],
  183. [_AM_SET_OPTIONS([$1])dnl
  184. dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
  185. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
  186. [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
  187. AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
  188. AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
  189. _AM_IF_OPTION([no-define],,
  190. [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
  191. AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
  192. # Some tools Automake needs.
  193. AC_REQUIRE([AM_SANITY_CHECK])dnl
  194. AC_REQUIRE([AC_ARG_PROGRAM])dnl
  195. AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
  196. AM_MISSING_PROG(AUTOCONF, autoconf)
  197. AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
  198. AM_MISSING_PROG(AUTOHEADER, autoheader)
  199. AM_MISSING_PROG(MAKEINFO, makeinfo)
  200. AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  201. AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
  202. AC_REQUIRE([AM_PROG_MKDIR_P])dnl
  203. # We need awk for the "check" target. The system "awk" is bad on
  204. # some platforms.
  205. AC_REQUIRE([AC_PROG_AWK])dnl
  206. AC_REQUIRE([AC_PROG_MAKE_SET])dnl
  207. AC_REQUIRE([AM_SET_LEADING_DOT])dnl
  208. _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
  209. [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
  210. [_AM_PROG_TAR([v7])])])
  211. _AM_IF_OPTION([no-dependencies],,
  212. [AC_PROVIDE_IFELSE([AC_PROG_CC],
  213. [_AM_DEPENDENCIES(CC)],
  214. [define([AC_PROG_CC],
  215. defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
  216. AC_PROVIDE_IFELSE([AC_PROG_CXX],
  217. [_AM_DEPENDENCIES(CXX)],
  218. [define([AC_PROG_CXX],
  219. defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
  220. AC_PROVIDE_IFELSE([AC_PROG_OBJC],
  221. [_AM_DEPENDENCIES(OBJC)],
  222. [define([AC_PROG_OBJC],
  223. defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
  224. ])
  225. _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
  226. dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
  227. dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
  228. dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
  229. AC_CONFIG_COMMANDS_PRE(dnl
  230. [m4_provide_if([_AM_COMPILER_EXEEXT],
  231. [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
  232. ])
  233. dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not
  234. dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
  235. dnl mangled by Autoconf and run in a shell conditional statement.
  236. m4_define([_AC_COMPILER_EXEEXT],
  237. m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
  238. # When config.status generates a header, we must update the stamp-h file.
  239. # This file resides in the same directory as the config header
  240. # that is generated. The stamp files are numbered to have different names.
  241. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
  242. # loop where config.status creates the headers, so we can generate
  243. # our stamp files there.
  244. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
  245. [# Compute $1's index in $config_headers.
  246. _am_arg=$1
  247. _am_stamp_count=1
  248. for _am_header in $config_headers :; do
  249. case $_am_header in
  250. $_am_arg | $_am_arg:* )
  251. break ;;
  252. * )
  253. _am_stamp_count=`expr $_am_stamp_count + 1` ;;
  254. esac
  255. done
  256. echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
  257. # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc.
  258. #
  259. # This file is free software; the Free Software Foundation
  260. # gives unlimited permission to copy and/or distribute it,
  261. # with or without modifications, as long as this notice is preserved.
  262. # AM_PROG_INSTALL_SH
  263. # ------------------
  264. # Define $install_sh.
  265. AC_DEFUN([AM_PROG_INSTALL_SH],
  266. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  267. if test x"${install_sh}" != xset; then
  268. case $am_aux_dir in
  269. *\ * | *\ *)
  270. install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
  271. *)
  272. install_sh="\${SHELL} $am_aux_dir/install-sh"
  273. esac
  274. fi
  275. AC_SUBST(install_sh)])
  276. # Add --enable-maintainer-mode option to configure. -*- Autoconf -*-
  277. # From Jim Meyering
  278. # Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2008
  279. # Free Software Foundation, Inc.
  280. #
  281. # This file is free software; the Free Software Foundation
  282. # gives unlimited permission to copy and/or distribute it,
  283. # with or without modifications, as long as this notice is preserved.
  284. # serial 5
  285. # AM_MAINTAINER_MODE([DEFAULT-MODE])
  286. # ----------------------------------
  287. # Control maintainer-specific portions of Makefiles.
  288. # Default is to disable them, unless `enable' is passed literally.
  289. # For symmetry, `disable' may be passed as well. Anyway, the user
  290. # can override the default with the --enable/--disable switch.
  291. AC_DEFUN([AM_MAINTAINER_MODE],
  292. [m4_case(m4_default([$1], [disable]),
  293. [enable], [m4_define([am_maintainer_other], [disable])],
  294. [disable], [m4_define([am_maintainer_other], [enable])],
  295. [m4_define([am_maintainer_other], [enable])
  296. m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
  297. AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
  298. dnl maintainer-mode's default is 'disable' unless 'enable' is passed
  299. AC_ARG_ENABLE([maintainer-mode],
  300. [ --][am_maintainer_other][-maintainer-mode am_maintainer_other make rules and dependencies not useful
  301. (and sometimes confusing) to the casual installer],
  302. [USE_MAINTAINER_MODE=$enableval],
  303. [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
  304. AC_MSG_RESULT([$USE_MAINTAINER_MODE])
  305. AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
  306. MAINT=$MAINTAINER_MODE_TRUE
  307. AC_SUBST([MAINT])dnl
  308. ]
  309. )
  310. AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
  311. # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2008
  312. # Free Software Foundation, Inc.
  313. #
  314. # This file is free software; the Free Software Foundation
  315. # gives unlimited permission to copy and/or distribute it,
  316. # with or without modifications, as long as this notice is preserved.
  317. # serial 6
  318. # AM_PROG_CC_C_O
  319. # --------------
  320. # Like AC_PROG_CC_C_O, but changed for automake.
  321. AC_DEFUN([AM_PROG_CC_C_O],
  322. [AC_REQUIRE([AC_PROG_CC_C_O])dnl
  323. AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  324. AC_REQUIRE_AUX_FILE([compile])dnl
  325. # FIXME: we rely on the cache variable name because
  326. # there is no other way.
  327. set dummy $CC
  328. am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
  329. eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
  330. if test "$am_t" != yes; then
  331. # Losing compiler, so override with the script.
  332. # FIXME: It is wrong to rewrite CC.
  333. # But if we don't then we get into trouble of one sort or another.
  334. # A longer-term fix would be to have automake use am__CC in this case,
  335. # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
  336. CC="$am_aux_dir/compile $CC"
  337. fi
  338. dnl Make sure AC_PROG_CC is never called again, or it will override our
  339. dnl setting of CC.
  340. m4_define([AC_PROG_CC],
  341. [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
  342. ])
  343. # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
  344. # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008
  345. # Free Software Foundation, Inc.
  346. #
  347. # This file is free software; the Free Software Foundation
  348. # gives unlimited permission to copy and/or distribute it,
  349. # with or without modifications, as long as this notice is preserved.
  350. # serial 6
  351. # AM_MISSING_PROG(NAME, PROGRAM)
  352. # ------------------------------
  353. AC_DEFUN([AM_MISSING_PROG],
  354. [AC_REQUIRE([AM_MISSING_HAS_RUN])
  355. $1=${$1-"${am_missing_run}$2"}
  356. AC_SUBST($1)])
  357. # AM_MISSING_HAS_RUN
  358. # ------------------
  359. # Define MISSING if not defined so far and test if it supports --run.
  360. # If it does, set am_missing_run to use it, otherwise, to nothing.
  361. AC_DEFUN([AM_MISSING_HAS_RUN],
  362. [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
  363. AC_REQUIRE_AUX_FILE([missing])dnl
  364. if test x"${MISSING+set}" != xset; then
  365. case $am_aux_dir in
  366. *\ * | *\ *)
  367. MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
  368. *)
  369. MISSING="\${SHELL} $am_aux_dir/missing" ;;
  370. esac
  371. fi
  372. # Use eval to expand $SHELL
  373. if eval "$MISSING --run true"; then
  374. am_missing_run="$MISSING --run "
  375. else
  376. am_missing_run=
  377. AC_MSG_WARN([`missing' script is too old or missing])
  378. fi
  379. ])
  380. # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
  381. #
  382. # This file is free software; the Free Software Foundation
  383. # gives unlimited permission to copy and/or distribute it,
  384. # with or without modifications, as long as this notice is preserved.
  385. # AM_PROG_MKDIR_P
  386. # ---------------
  387. # Check for `mkdir -p'.
  388. AC_DEFUN([AM_PROG_MKDIR_P],
  389. [AC_PREREQ([2.60])dnl
  390. AC_REQUIRE([AC_PROG_MKDIR_P])dnl
  391. dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
  392. dnl while keeping a definition of mkdir_p for backward compatibility.
  393. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
  394. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
  395. dnl Makefile.ins that do not define MKDIR_P, so we do our own
  396. dnl adjustment using top_builddir (which is defined more often than
  397. dnl MKDIR_P).
  398. AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
  399. case $mkdir_p in
  400. [[\\/$]]* | ?:[[\\/]]*) ;;
  401. */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
  402. esac
  403. ])
  404. # Helper functions for option handling. -*- Autoconf -*-
  405. # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc.
  406. #
  407. # This file is free software; the Free Software Foundation
  408. # gives unlimited permission to copy and/or distribute it,
  409. # with or without modifications, as long as this notice is preserved.
  410. # serial 4
  411. # _AM_MANGLE_OPTION(NAME)
  412. # -----------------------
  413. AC_DEFUN([_AM_MANGLE_OPTION],
  414. [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
  415. # _AM_SET_OPTION(NAME)
  416. # ------------------------------
  417. # Set option NAME. Presently that only means defining a flag for this option.
  418. AC_DEFUN([_AM_SET_OPTION],
  419. [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
  420. # _AM_SET_OPTIONS(OPTIONS)
  421. # ----------------------------------
  422. # OPTIONS is a space-separated list of Automake options.
  423. AC_DEFUN([_AM_SET_OPTIONS],
  424. [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
  425. # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
  426. # -------------------------------------------
  427. # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
  428. AC_DEFUN([_AM_IF_OPTION],
  429. [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
  430. # Check to make sure that the build environment is sane. -*- Autoconf -*-
  431. # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008
  432. # Free Software Foundation, Inc.
  433. #
  434. # This file is free software; the Free Software Foundation
  435. # gives unlimited permission to copy and/or distribute it,
  436. # with or without modifications, as long as this notice is preserved.
  437. # serial 5
  438. # AM_SANITY_CHECK
  439. # ---------------
  440. AC_DEFUN([AM_SANITY_CHECK],
  441. [AC_MSG_CHECKING([whether build environment is sane])
  442. # Just in case
  443. sleep 1
  444. echo timestamp > conftest.file
  445. # Reject unsafe characters in $srcdir or the absolute working directory
  446. # name. Accept space and tab only in the latter.
  447. am_lf='
  448. '
  449. case `pwd` in
  450. *[[\\\"\#\$\&\'\`$am_lf]]*)
  451. AC_MSG_ERROR([unsafe absolute working directory name]);;
  452. esac
  453. case $srcdir in
  454. *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
  455. AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
  456. esac
  457. # Do `set' in a subshell so we don't clobber the current shell's
  458. # arguments. Must try -L first in case configure is actually a
  459. # symlink; some systems play weird games with the mod time of symlinks
  460. # (eg FreeBSD returns the mod time of the symlink's containing
  461. # directory).
  462. if (
  463. set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
  464. if test "$[*]" = "X"; then
  465. # -L didn't work.
  466. set X `ls -t "$srcdir/configure" conftest.file`
  467. fi
  468. rm -f conftest.file
  469. if test "$[*]" != "X $srcdir/configure conftest.file" \
  470. && test "$[*]" != "X conftest.file $srcdir/configure"; then
  471. # If neither matched, then we have a broken ls. This can happen
  472. # if, for instance, CONFIG_SHELL is bash and it inherits a
  473. # broken ls alias from the environment. This has actually
  474. # happened. Such a system could not be considered "sane".
  475. AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
  476. alias in your environment])
  477. fi
  478. test "$[2]" = conftest.file
  479. )
  480. then
  481. # Ok.
  482. :
  483. else
  484. AC_MSG_ERROR([newly created file is older than distributed files!
  485. Check your system clock])
  486. fi
  487. AC_MSG_RESULT(yes)])
  488. # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc.
  489. #
  490. # This file is free software; the Free Software Foundation
  491. # gives unlimited permission to copy and/or distribute it,
  492. # with or without modifications, as long as this notice is preserved.
  493. # AM_PROG_INSTALL_STRIP
  494. # ---------------------
  495. # One issue with vendor `install' (even GNU) is that you can't
  496. # specify the program used to strip binaries. This is especially
  497. # annoying in cross-compiling environments, where the build's strip
  498. # is unlikely to handle the host's binaries.
  499. # Fortunately install-sh will honor a STRIPPROG variable, so we
  500. # always use install-sh in `make install-strip', and initialize
  501. # STRIPPROG with the value of the STRIP variable (set by the user).
  502. AC_DEFUN([AM_PROG_INSTALL_STRIP],
  503. [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
  504. # Installed binaries are usually stripped using `strip' when the user
  505. # run `make install-strip'. However `strip' might not be the right
  506. # tool to use in cross-compilation environments, therefore Automake
  507. # will honor the `STRIP' environment variable to overrule this program.
  508. dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
  509. if test "$cross_compiling" != no; then
  510. AC_CHECK_TOOL([STRIP], [strip], :)
  511. fi
  512. INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
  513. AC_SUBST([INSTALL_STRIP_PROGRAM])])
  514. # Copyright (C) 2006, 2008 Free Software Foundation, Inc.
  515. #
  516. # This file is free software; the Free Software Foundation
  517. # gives unlimited permission to copy and/or distribute it,
  518. # with or without modifications, as long as this notice is preserved.
  519. # serial 2
  520. # _AM_SUBST_NOTMAKE(VARIABLE)
  521. # ---------------------------
  522. # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
  523. # This macro is traced by Automake.
  524. AC_DEFUN([_AM_SUBST_NOTMAKE])
  525. # AM_SUBST_NOTMAKE(VARIABLE)
  526. # ---------------------------
  527. # Public sister of _AM_SUBST_NOTMAKE.
  528. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
  529. # Check how to create a tarball. -*- Autoconf -*-
  530. # Copyright (C) 2004, 2005 Free Software Foundation, Inc.
  531. #
  532. # This file is free software; the Free Software Foundation
  533. # gives unlimited permission to copy and/or distribute it,
  534. # with or without modifications, as long as this notice is preserved.
  535. # serial 2
  536. # _AM_PROG_TAR(FORMAT)
  537. # --------------------
  538. # Check how to create a tarball in format FORMAT.
  539. # FORMAT should be one of `v7', `ustar', or `pax'.
  540. #
  541. # Substitute a variable $(am__tar) that is a command
  542. # writing to stdout a FORMAT-tarball containing the directory
  543. # $tardir.
  544. # tardir=directory && $(am__tar) > result.tar
  545. #
  546. # Substitute a variable $(am__untar) that extract such
  547. # a tarball read from stdin.
  548. # $(am__untar) < result.tar
  549. AC_DEFUN([_AM_PROG_TAR],
  550. [# Always define AMTAR for backward compatibility.
  551. AM_MISSING_PROG([AMTAR], [tar])
  552. m4_if([$1], [v7],
  553. [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
  554. [m4_case([$1], [ustar],, [pax],,
  555. [m4_fatal([Unknown tar format])])
  556. AC_MSG_CHECKING([how to create a $1 tar archive])
  557. # Loop over all known methods to create a tar archive until one works.
  558. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
  559. _am_tools=${am_cv_prog_tar_$1-$_am_tools}
  560. # Do not fold the above two line into one, because Tru64 sh and
  561. # Solaris sh will not grok spaces in the rhs of `-'.
  562. for _am_tool in $_am_tools
  563. do
  564. case $_am_tool in
  565. gnutar)
  566. for _am_tar in tar gnutar gtar;
  567. do
  568. AM_RUN_LOG([$_am_tar --version]) && break
  569. done
  570. am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
  571. am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
  572. am__untar="$_am_tar -xf -"
  573. ;;
  574. plaintar)
  575. # Must skip GNU tar: if it does not support --format= it doesn't create
  576. # ustar tarball either.
  577. (tar --version) >/dev/null 2>&1 && continue
  578. am__tar='tar chf - "$$tardir"'
  579. am__tar_='tar chf - "$tardir"'
  580. am__untar='tar xf -'
  581. ;;
  582. pax)
  583. am__tar='pax -L -x $1 -w "$$tardir"'
  584. am__tar_='pax -L -x $1 -w "$tardir"'
  585. am__untar='pax -r'
  586. ;;
  587. cpio)
  588. am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
  589. am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
  590. am__untar='cpio -i -H $1 -d'
  591. ;;
  592. none)
  593. am__tar=false
  594. am__tar_=false
  595. am__untar=false
  596. ;;
  597. esac
  598. # If the value was cached, stop now. We just wanted to have am__tar
  599. # and am__untar set.
  600. test -n "${am_cv_prog_tar_$1}" && break
  601. # tar/untar a dummy directory, and stop if the command works
  602. rm -rf conftest.dir
  603. mkdir conftest.dir
  604. echo GrepMe > conftest.dir/file
  605. AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
  606. rm -rf conftest.dir
  607. if test -s conftest.tar; then
  608. AM_RUN_LOG([$am__untar <conftest.tar])
  609. grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
  610. fi
  611. done
  612. rm -rf conftest.dir
  613. AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
  614. AC_MSG_RESULT([$am_cv_prog_tar_$1])])
  615. AC_SUBST([am__tar])
  616. AC_SUBST([am__untar])
  617. ]) # _AM_PROG_TAR
  618. m4_include([../config/acx.m4])
  619. m4_include([../config/lead-dot.m4])
  620. m4_include([../config/libstdc++-raw-cxx.m4])
  621. m4_include([../config/multi.m4])
  622. m4_include([../config/override.m4])
  623. m4_include([../libtool.m4])
  624. m4_include([../ltoptions.m4])
  625. m4_include([../ltsugar.m4])
  626. m4_include([../ltversion.m4])
  627. m4_include([../lt~obsolete.m4])