]> granicus.if.org Git - imagemagick/blob - aclocal.m4
(no commit message)
[imagemagick] / aclocal.m4
1 # generated automatically by aclocal 1.12.2 -*- Autoconf -*-
2
3 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
4
5 # This file is free software; the Free Software Foundation
6 # gives unlimited permission to copy and/or distribute it,
7 # with or without modifications, as long as this notice is preserved.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11 # even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12 # PARTICULAR PURPOSE.
13
14 m4_ifndef([AC_AUTOCONF_VERSION],
15   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
16 m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
17 [m4_warning([this file was generated for autoconf 2.69.
18 You have another version of autoconf.  It may work, but is not guaranteed to.
19 If you have problems, you may need to regenerate the build system entirely.
20 To do so, use the procedure documented by the package, typically 'autoreconf'.])])
21
22 # ===========================================================================
23 #    http://www.gnu.org/software/autoconf-archive/ax_compiler_vendor.html
24 # ===========================================================================
25 #
26 # SYNOPSIS
27 #
28 #   AX_COMPILER_VENDOR
29 #
30 # DESCRIPTION
31 #
32 #   Determine the vendor of the C/C++ compiler, e.g., gnu, intel, ibm, sun,
33 #   hp, borland, comeau, dec, cray, kai, lcc, metrowerks, sgi, microsoft,
34 #   watcom, etc. The vendor is returned in the cache variable
35 #   $ax_cv_c_compiler_vendor for C and $ax_cv_cxx_compiler_vendor for C++.
36 #
37 # LICENSE
38 #
39 #   Copyright (c) 2008 Steven G. Johnson <stevenj@alum.mit.edu>
40 #   Copyright (c) 2008 Matteo Frigo
41 #
42 #   This program is free software: you can redistribute it and/or modify it
43 #   under the terms of the GNU General Public License as published by the
44 #   Free Software Foundation, either version 3 of the License, or (at your
45 #   option) any later version.
46 #
47 #   This program is distributed in the hope that it will be useful, but
48 #   WITHOUT ANY WARRANTY; without even the implied warranty of
49 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
50 #   Public License for more details.
51 #
52 #   You should have received a copy of the GNU General Public License along
53 #   with this program. If not, see <http://www.gnu.org/licenses/>.
54 #
55 #   As a special exception, the respective Autoconf Macro's copyright owner
56 #   gives unlimited permission to copy, distribute and modify the configure
57 #   scripts that are the output of Autoconf when processing the Macro. You
58 #   need not follow the terms of the GNU General Public License when using
59 #   or distributing such scripts, even though portions of the text of the
60 #   Macro appear in them. The GNU General Public License (GPL) does govern
61 #   all other use of the material that constitutes the Autoconf Macro.
62 #
63 #   This special exception to the GPL applies to versions of the Autoconf
64 #   Macro released by the Autoconf Archive. When you make and distribute a
65 #   modified version of the Autoconf Macro, you may extend this special
66 #   exception to the GPL to apply to your modified version as well.
67
68 #serial 11
69
70 AC_DEFUN([AX_COMPILER_VENDOR],
71 [AC_CACHE_CHECK([for _AC_LANG compiler vendor], ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor,
72   [# note: don't check for gcc first since some other compilers define __GNUC__
73   vendors="intel:     __ICC,__ECC,__INTEL_COMPILER
74            ibm:       __xlc__,__xlC__,__IBMC__,__IBMCPP__
75            pathscale: __PATHCC__,__PATHSCALE__
76            clang:     __clang__
77            gnu:       __GNUC__
78            sun:       __SUNPRO_C,__SUNPRO_CC
79            hp:        __HP_cc,__HP_aCC
80            dec:       __DECC,__DECCXX,__DECC_VER,__DECCXX_VER
81            borland:   __BORLANDC__,__TURBOC__
82            comeau:    __COMO__
83            cray:      _CRAYC
84            kai:       __KCC
85            lcc:       __LCC__
86            sgi:       __sgi,sgi
87            microsoft: _MSC_VER
88            metrowerks: __MWERKS__
89            watcom:    __WATCOMC__
90            portland:  __PGI
91            unknown:   UNKNOWN"
92   for ventest in $vendors; do
93     case $ventest in
94       *:) vendor=$ventest; continue ;;
95       *)  vencpp="defined("`echo $ventest | sed 's/,/) || defined(/g'`")" ;;
96     esac
97     AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,[
98       #if !($vencpp)
99         thisisanerror;
100       #endif
101     ])], [break])
102   done
103   ax_cv_[]_AC_LANG_ABBREV[]_compiler_vendor=`echo $vendor | cut -d: -f1`
104  ])
105 ])
106
107 # longlong.m4 serial 14
108 dnl Copyright (C) 1999-2007, 2009-2010 Free Software Foundation, Inc.
109 dnl This file is free software; the Free Software Foundation
110 dnl gives unlimited permission to copy and/or distribute it,
111 dnl with or without modifications, as long as this notice is preserved.
112
113 dnl From Paul Eggert.
114
115 # Define HAVE_LONG_LONG_INT if 'long long int' works.
116 # This fixes a bug in Autoconf 2.61, but can be removed once we
117 # assume 2.62 everywhere.
118
119 # Note: If the type 'long long int' exists but is only 32 bits large
120 # (as on some very old compilers), HAVE_LONG_LONG_INT will not be
121 # defined. In this case you can treat 'long long int' like 'long int'.
122
123 AC_DEFUN([AC_TYPE_LONG_LONG_INT],
124 [
125   AC_CACHE_CHECK([for long long int], [ac_cv_type_long_long_int],
126     [AC_LINK_IFELSE(
127        [_AC_TYPE_LONG_LONG_SNIPPET],
128        [dnl This catches a bug in Tandem NonStop Kernel (OSS) cc -O circa 2004.
129         dnl If cross compiling, assume the bug isn't important, since
130         dnl nobody cross compiles for this platform as far as we know.
131         AC_RUN_IFELSE(
132           [AC_LANG_PROGRAM(
133              [[@%:@include <limits.h>
134                @%:@ifndef LLONG_MAX
135                @%:@ define HALF \
136                         (1LL << (sizeof (long long int) * CHAR_BIT - 2))
137                @%:@ define LLONG_MAX (HALF - 1 + HALF)
138                @%:@endif]],
139              [[long long int n = 1;
140                int i;
141                for (i = 0; ; i++)
142                  {
143                    long long int m = n << i;
144                    if (m >> i != n)
145                      return 1;
146                    if (LLONG_MAX / 2 < m)
147                      break;
148                  }
149                return 0;]])],
150           [ac_cv_type_long_long_int=yes],
151           [ac_cv_type_long_long_int=no],
152           [ac_cv_type_long_long_int=yes])],
153        [ac_cv_type_long_long_int=no])])
154   if test $ac_cv_type_long_long_int = yes; then
155     AC_DEFINE([HAVE_LONG_LONG_INT], [1],
156       [Define to 1 if the system has the type `long long int'.])
157   fi
158 ])
159
160 # Define HAVE_UNSIGNED_LONG_LONG_INT if 'unsigned long long int' works.
161 # This fixes a bug in Autoconf 2.61, but can be removed once we
162 # assume 2.62 everywhere.
163
164 # Note: If the type 'unsigned long long int' exists but is only 32 bits
165 # large (as on some very old compilers), AC_TYPE_UNSIGNED_LONG_LONG_INT
166 # will not be defined. In this case you can treat 'unsigned long long int'
167 # like 'unsigned long int'.
168
169 AC_DEFUN([AC_TYPE_UNSIGNED_LONG_LONG_INT],
170 [
171   AC_CACHE_CHECK([for unsigned long long int],
172     [ac_cv_type_unsigned_long_long_int],
173     [AC_LINK_IFELSE(
174        [_AC_TYPE_LONG_LONG_SNIPPET],
175        [ac_cv_type_unsigned_long_long_int=yes],
176        [ac_cv_type_unsigned_long_long_int=no])])
177   if test $ac_cv_type_unsigned_long_long_int = yes; then
178     AC_DEFINE([HAVE_UNSIGNED_LONG_LONG_INT], [1],
179       [Define to 1 if the system has the type `unsigned long long int'.])
180   fi
181 ])
182
183 # Expands to a C program that can be used to test for simultaneous support
184 # of 'long long' and 'unsigned long long'. We don't want to say that
185 # 'long long' is available if 'unsigned long long' is not, or vice versa,
186 # because too many programs rely on the symmetry between signed and unsigned
187 # integer types (excluding 'bool').
188 AC_DEFUN([_AC_TYPE_LONG_LONG_SNIPPET],
189 [
190   AC_LANG_PROGRAM(
191     [[/* For now, do not test the preprocessor; as of 2007 there are too many
192          implementations with broken preprocessors.  Perhaps this can
193          be revisited in 2012.  In the meantime, code should not expect
194          #if to work with literals wider than 32 bits.  */
195       /* Test literals.  */
196       long long int ll = 9223372036854775807ll;
197       long long int nll = -9223372036854775807LL;
198       unsigned long long int ull = 18446744073709551615ULL;
199       /* Test constant expressions.   */
200       typedef int a[((-9223372036854775807LL < 0 && 0 < 9223372036854775807ll)
201                      ? 1 : -1)];
202       typedef int b[(18446744073709551615ULL <= (unsigned long long int) -1
203                      ? 1 : -1)];
204       int i = 63;]],
205     [[/* Test availability of runtime routines for shift and division.  */
206       long long int llmax = 9223372036854775807ll;
207       unsigned long long int ullmax = 18446744073709551615ull;
208       return ((ll << 63) | (ll >> 63) | (ll < i) | (ll > i)
209               | (llmax / ll) | (llmax % ll)
210               | (ull << 63) | (ull >> 63) | (ull << i) | (ull >> i)
211               | (ullmax / ull) | (ullmax % ull));]])
212 ])
213
214 # Copyright (C) 2002-2012 Free Software Foundation, Inc.
215 #
216 # This file is free software; the Free Software Foundation
217 # gives unlimited permission to copy and/or distribute it,
218 # with or without modifications, as long as this notice is preserved.
219
220 # serial 8
221
222 # AM_AUTOMAKE_VERSION(VERSION)
223 # ----------------------------
224 # Automake X.Y traces this macro to ensure aclocal.m4 has been
225 # generated from the m4 files accompanying Automake X.Y.
226 # (This private macro should not be called outside this file.)
227 AC_DEFUN([AM_AUTOMAKE_VERSION],
228 [am__api_version='1.12'
229 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
230 dnl require some minimum version.  Point them to the right macro.
231 m4_if([$1], [1.12.2], [],
232       [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
233 ])
234
235 # _AM_AUTOCONF_VERSION(VERSION)
236 # -----------------------------
237 # aclocal traces this macro to find the Autoconf version.
238 # This is a private macro too.  Using m4_define simplifies
239 # the logic in aclocal, which can simply ignore this definition.
240 m4_define([_AM_AUTOCONF_VERSION], [])
241
242 # AM_SET_CURRENT_AUTOMAKE_VERSION
243 # -------------------------------
244 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
245 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
246 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
247 [AM_AUTOMAKE_VERSION([1.12.2])dnl
248 m4_ifndef([AC_AUTOCONF_VERSION],
249   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
250 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
251
252 # AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
253
254 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
255 #
256 # This file is free software; the Free Software Foundation
257 # gives unlimited permission to copy and/or distribute it,
258 # with or without modifications, as long as this notice is preserved.
259
260 # serial 2
261
262 # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
263 # $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
264 # '$srcdir', '$srcdir/..', or '$srcdir/../..'.
265 #
266 # Of course, Automake must honor this variable whenever it calls a
267 # tool from the auxiliary directory.  The problem is that $srcdir (and
268 # therefore $ac_aux_dir as well) can be either absolute or relative,
269 # depending on how configure is run.  This is pretty annoying, since
270 # it makes $ac_aux_dir quite unusable in subdirectories: in the top
271 # source directory, any form will work fine, but in subdirectories a
272 # relative path needs to be adjusted first.
273 #
274 # $ac_aux_dir/missing
275 #    fails when called from a subdirectory if $ac_aux_dir is relative
276 # $top_srcdir/$ac_aux_dir/missing
277 #    fails if $ac_aux_dir is absolute,
278 #    fails when called from a subdirectory in a VPATH build with
279 #          a relative $ac_aux_dir
280 #
281 # The reason of the latter failure is that $top_srcdir and $ac_aux_dir
282 # are both prefixed by $srcdir.  In an in-source build this is usually
283 # harmless because $srcdir is '.', but things will broke when you
284 # start a VPATH build or use an absolute $srcdir.
285 #
286 # So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
287 # iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
288 #   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
289 # and then we would define $MISSING as
290 #   MISSING="\${SHELL} $am_aux_dir/missing"
291 # This will work as long as MISSING is not called from configure, because
292 # unfortunately $(top_srcdir) has no meaning in configure.
293 # However there are other variables, like CC, which are often used in
294 # configure, and could therefore not use this "fixed" $ac_aux_dir.
295 #
296 # Another solution, used here, is to always expand $ac_aux_dir to an
297 # absolute PATH.  The drawback is that using absolute paths prevent a
298 # configured tree to be moved without reconfiguration.
299
300 AC_DEFUN([AM_AUX_DIR_EXPAND],
301 [dnl Rely on autoconf to set up CDPATH properly.
302 AC_PREREQ([2.50])dnl
303 # expand $ac_aux_dir to an absolute path
304 am_aux_dir=`cd $ac_aux_dir && pwd`
305 ])
306
307 # AM_CONDITIONAL                                            -*- Autoconf -*-
308
309 # Copyright (C) 1997-2012 Free Software Foundation, Inc.
310 #
311 # This file is free software; the Free Software Foundation
312 # gives unlimited permission to copy and/or distribute it,
313 # with or without modifications, as long as this notice is preserved.
314
315 # serial 10
316
317 # AM_CONDITIONAL(NAME, SHELL-CONDITION)
318 # -------------------------------------
319 # Define a conditional.
320 AC_DEFUN([AM_CONDITIONAL],
321 [AC_PREREQ([2.52])dnl
322  m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
323        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
324 AC_SUBST([$1_TRUE])dnl
325 AC_SUBST([$1_FALSE])dnl
326 _AM_SUBST_NOTMAKE([$1_TRUE])dnl
327 _AM_SUBST_NOTMAKE([$1_FALSE])dnl
328 m4_define([_AM_COND_VALUE_$1], [$2])dnl
329 if $2; then
330   $1_TRUE=
331   $1_FALSE='#'
332 else
333   $1_TRUE='#'
334   $1_FALSE=
335 fi
336 AC_CONFIG_COMMANDS_PRE(
337 [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
338   AC_MSG_ERROR([[conditional "$1" was never defined.
339 Usually this means the macro was only invoked conditionally.]])
340 fi])])
341
342 # Copyright (C) 1999-2012 Free Software Foundation, Inc.
343 #
344 # This file is free software; the Free Software Foundation
345 # gives unlimited permission to copy and/or distribute it,
346 # with or without modifications, as long as this notice is preserved.
347
348 # serial 17
349
350 # There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
351 # written in clear, in which case automake, when reading aclocal.m4,
352 # will think it sees a *use*, and therefore will trigger all it's
353 # C support machinery.  Also note that it means that autoscan, seeing
354 # CC etc. in the Makefile, will ask for an AC_PROG_CC use...
355
356
357 # _AM_DEPENDENCIES(NAME)
358 # ----------------------
359 # See how the compiler implements dependency checking.
360 # NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
361 # We try a few techniques and use that to set a single cache variable.
362 #
363 # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
364 # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
365 # dependency, and given that the user is not expected to run this macro,
366 # just rely on AC_PROG_CC.
367 AC_DEFUN([_AM_DEPENDENCIES],
368 [AC_REQUIRE([AM_SET_DEPDIR])dnl
369 AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
370 AC_REQUIRE([AM_MAKE_INCLUDE])dnl
371 AC_REQUIRE([AM_DEP_TRACK])dnl
372
373 m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
374       [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
375       [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
376       [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
377       [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
378       [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
379                     [depcc="$$1"   am_compiler_list=])
380
381 AC_CACHE_CHECK([dependency style of $depcc],
382                [am_cv_$1_dependencies_compiler_type],
383 [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
384   # We make a subdir and do the tests there.  Otherwise we can end up
385   # making bogus files that we don't know about and never remove.  For
386   # instance it was reported that on HP-UX the gcc test will end up
387   # making a dummy file named 'D' -- because '-MD' means "put the output
388   # in D".
389   rm -rf conftest.dir
390   mkdir conftest.dir
391   # Copy depcomp to subdir because otherwise we won't find it if we're
392   # using a relative directory.
393   cp "$am_depcomp" conftest.dir
394   cd conftest.dir
395   # We will build objects and dependencies in a subdirectory because
396   # it helps to detect inapplicable dependency modes.  For instance
397   # both Tru64's cc and ICC support -MD to output dependencies as a
398   # side effect of compilation, but ICC will put the dependencies in
399   # the current directory while Tru64 will put them in the object
400   # directory.
401   mkdir sub
402
403   am_cv_$1_dependencies_compiler_type=none
404   if test "$am_compiler_list" = ""; then
405      am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
406   fi
407   am__universal=false
408   m4_case([$1], [CC],
409     [case " $depcc " in #(
410      *\ -arch\ *\ -arch\ *) am__universal=true ;;
411      esac],
412     [CXX],
413     [case " $depcc " in #(
414      *\ -arch\ *\ -arch\ *) am__universal=true ;;
415      esac])
416
417   for depmode in $am_compiler_list; do
418     # Setup a source with many dependencies, because some compilers
419     # like to wrap large dependency lists on column 80 (with \), and
420     # we should not choose a depcomp mode which is confused by this.
421     #
422     # We need to recreate these files for each test, as the compiler may
423     # overwrite some of them when testing with obscure command lines.
424     # This happens at least with the AIX C compiler.
425     : > sub/conftest.c
426     for i in 1 2 3 4 5 6; do
427       echo '#include "conftst'$i'.h"' >> sub/conftest.c
428       # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
429       # Solaris 10 /bin/sh.
430       echo '/* dummy */' > sub/conftst$i.h
431     done
432     echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
433
434     # We check with '-c' and '-o' for the sake of the "dashmstdout"
435     # mode.  It turns out that the SunPro C++ compiler does not properly
436     # handle '-M -o', and we need to detect this.  Also, some Intel
437     # versions had trouble with output in subdirs.
438     am__obj=sub/conftest.${OBJEXT-o}
439     am__minus_obj="-o $am__obj"
440     case $depmode in
441     gcc)
442       # This depmode causes a compiler race in universal mode.
443       test "$am__universal" = false || continue
444       ;;
445     nosideeffect)
446       # After this tag, mechanisms are not by side-effect, so they'll
447       # only be used when explicitly requested.
448       if test "x$enable_dependency_tracking" = xyes; then
449         continue
450       else
451         break
452       fi
453       ;;
454     msvc7 | msvc7msys | msvisualcpp | msvcmsys)
455       # This compiler won't grok '-c -o', but also, the minuso test has
456       # not run yet.  These depmodes are late enough in the game, and
457       # so weak that their functioning should not be impacted.
458       am__obj=conftest.${OBJEXT-o}
459       am__minus_obj=
460       ;;
461     none) break ;;
462     esac
463     if depmode=$depmode \
464        source=sub/conftest.c object=$am__obj \
465        depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
466        $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
467          >/dev/null 2>conftest.err &&
468        grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
469        grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
470        grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
471        ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
472       # icc doesn't choke on unknown options, it will just issue warnings
473       # or remarks (even with -Werror).  So we grep stderr for any message
474       # that says an option was ignored or not supported.
475       # When given -MP, icc 7.0 and 7.1 complain thusly:
476       #   icc: Command line warning: ignoring option '-M'; no argument required
477       # The diagnosis changed in icc 8.0:
478       #   icc: Command line remark: option '-MP' not supported
479       if (grep 'ignoring option' conftest.err ||
480           grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
481         am_cv_$1_dependencies_compiler_type=$depmode
482         break
483       fi
484     fi
485   done
486
487   cd ..
488   rm -rf conftest.dir
489 else
490   am_cv_$1_dependencies_compiler_type=none
491 fi
492 ])
493 AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
494 AM_CONDITIONAL([am__fastdep$1], [
495   test "x$enable_dependency_tracking" != xno \
496   && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
497 ])
498
499
500 # AM_SET_DEPDIR
501 # -------------
502 # Choose a directory name for dependency files.
503 # This macro is AC_REQUIREd in _AM_DEPENDENCIES.
504 AC_DEFUN([AM_SET_DEPDIR],
505 [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
506 AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
507 ])
508
509
510 # AM_DEP_TRACK
511 # ------------
512 AC_DEFUN([AM_DEP_TRACK],
513 [AC_ARG_ENABLE([dependency-tracking], [dnl
514 AS_HELP_STRING(
515   [--enable-dependency-tracking],
516   [do not reject slow dependency extractors])
517 AS_HELP_STRING(
518   [--disable-dependency-tracking],
519   [speeds up one-time build])])
520 if test "x$enable_dependency_tracking" != xno; then
521   am_depcomp="$ac_aux_dir/depcomp"
522   AMDEPBACKSLASH='\'
523   am__nodep='_no'
524 fi
525 AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
526 AC_SUBST([AMDEPBACKSLASH])dnl
527 _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
528 AC_SUBST([am__nodep])dnl
529 _AM_SUBST_NOTMAKE([am__nodep])dnl
530 ])
531
532 # Generate code to set up dependency tracking.              -*- Autoconf -*-
533
534 # Copyright (C) 1999-2012 Free Software Foundation, Inc.
535 #
536 # This file is free software; the Free Software Foundation
537 # gives unlimited permission to copy and/or distribute it,
538 # with or without modifications, as long as this notice is preserved.
539
540 # serial 6
541
542 # _AM_OUTPUT_DEPENDENCY_COMMANDS
543 # ------------------------------
544 AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
545 [{
546   # Autoconf 2.62 quotes --file arguments for eval, but not when files
547   # are listed without --file.  Let's play safe and only enable the eval
548   # if we detect the quoting.
549   case $CONFIG_FILES in
550   *\'*) eval set x "$CONFIG_FILES" ;;
551   *)   set x $CONFIG_FILES ;;
552   esac
553   shift
554   for mf
555   do
556     # Strip MF so we end up with the name of the file.
557     mf=`echo "$mf" | sed -e 's/:.*$//'`
558     # Check whether this is an Automake generated Makefile or not.
559     # We used to match only the files named 'Makefile.in', but
560     # some people rename them; so instead we look at the file content.
561     # Grep'ing the first line is not enough: some people post-process
562     # each Makefile.in and add a new line on top of each file to say so.
563     # Grep'ing the whole file is not good either: AIX grep has a line
564     # limit of 2048, but all sed's we know have understand at least 4000.
565     if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
566       dirpart=`AS_DIRNAME("$mf")`
567     else
568       continue
569     fi
570     # Extract the definition of DEPDIR, am__include, and am__quote
571     # from the Makefile without running 'make'.
572     DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
573     test -z "$DEPDIR" && continue
574     am__include=`sed -n 's/^am__include = //p' < "$mf"`
575     test -z "am__include" && continue
576     am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
577     # Find all dependency output files, they are included files with
578     # $(DEPDIR) in their names.  We invoke sed twice because it is the
579     # simplest approach to changing $(DEPDIR) to its actual value in the
580     # expansion.
581     for file in `sed -n "
582       s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
583          sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
584       # Make sure the directory exists.
585       test -f "$dirpart/$file" && continue
586       fdir=`AS_DIRNAME(["$file"])`
587       AS_MKDIR_P([$dirpart/$fdir])
588       # echo "creating $dirpart/$file"
589       echo '# dummy' > "$dirpart/$file"
590     done
591   done
592 }
593 ])# _AM_OUTPUT_DEPENDENCY_COMMANDS
594
595
596 # AM_OUTPUT_DEPENDENCY_COMMANDS
597 # -----------------------------
598 # This macro should only be invoked once -- use via AC_REQUIRE.
599 #
600 # This code is only required when automatic dependency tracking
601 # is enabled.  FIXME.  This creates each '.P' file that we will
602 # need in order to bootstrap the dependency handling code.
603 AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
604 [AC_CONFIG_COMMANDS([depfiles],
605      [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
606      [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
607 ])
608
609
610 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
611 #
612 # This file is free software; the Free Software Foundation
613 # gives unlimited permission to copy and/or distribute it,
614 # with or without modifications, as long as this notice is preserved.
615
616 # serial 6
617
618 AC_DEFUN([AM_WITH_DMALLOC],
619 [AC_MSG_CHECKING([if malloc debugging is wanted])
620 AC_ARG_WITH([dmalloc],
621 [AS_HELP_STRING([--with-dmalloc],
622                 [use dmalloc, as in http://www.dmalloc.com])],
623 [if test "$withval" = yes; then
624   AC_MSG_RESULT([yes])
625   AC_DEFINE([WITH_DMALLOC], [1],
626             [Define if using the dmalloc debugging malloc package])
627   LIBS="$LIBS -ldmalloc"
628   LDFLAGS="$LDFLAGS -g"
629 else
630   AC_MSG_RESULT([no])
631 fi], [AC_MSG_RESULT([no])])
632 ])
633
634 AU_DEFUN([fp_WITH_DMALLOC], [AM_WITH_DMALLOC])
635
636 # Do all the work for Automake.                             -*- Autoconf -*-
637
638 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
639 #
640 # This file is free software; the Free Software Foundation
641 # gives unlimited permission to copy and/or distribute it,
642 # with or without modifications, as long as this notice is preserved.
643
644 # serial 19
645
646 # This macro actually does too much.  Some checks are only needed if
647 # your package does certain things.  But this isn't really a big deal.
648
649 # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
650 # AM_INIT_AUTOMAKE([OPTIONS])
651 # -----------------------------------------------
652 # The call with PACKAGE and VERSION arguments is the old style
653 # call (pre autoconf-2.50), which is being phased out.  PACKAGE
654 # and VERSION should now be passed to AC_INIT and removed from
655 # the call to AM_INIT_AUTOMAKE.
656 # We support both call styles for the transition.  After
657 # the next Automake release, Autoconf can make the AC_INIT
658 # arguments mandatory, and then we can depend on a new Autoconf
659 # release and drop the old call support.
660 AC_DEFUN([AM_INIT_AUTOMAKE],
661 [AC_PREREQ([2.62])dnl
662 dnl Autoconf wants to disallow AM_ names.  We explicitly allow
663 dnl the ones we care about.
664 m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
665 AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
666 AC_REQUIRE([AC_PROG_INSTALL])dnl
667 if test "`cd $srcdir && pwd`" != "`pwd`"; then
668   # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
669   # is not polluted with repeated "-I."
670   AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
671   # test to see if srcdir already configured
672   if test -f $srcdir/config.status; then
673     AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
674   fi
675 fi
676
677 # test whether we have cygpath
678 if test -z "$CYGPATH_W"; then
679   if (cygpath --version) >/dev/null 2>/dev/null; then
680     CYGPATH_W='cygpath -w'
681   else
682     CYGPATH_W=echo
683   fi
684 fi
685 AC_SUBST([CYGPATH_W])
686
687 # Define the identity of the package.
688 dnl Distinguish between old-style and new-style calls.
689 m4_ifval([$2],
690 [AC_DIAGNOSE([obsolete],
691 [$0: two- and three-arguments forms are deprecated.  For more info, see:
692 http://www.gnu.org/software/automake/manual/automake.html#Modernize-AM_INIT_AUTOMAKE-invocation])
693 m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
694  AC_SUBST([PACKAGE], [$1])dnl
695  AC_SUBST([VERSION], [$2])],
696 [_AM_SET_OPTIONS([$1])dnl
697 dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
698 m4_if(
699   m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
700   [ok:ok],,
701   [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
702  AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
703  AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
704
705 _AM_IF_OPTION([no-define],,
706 [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
707  AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
708
709 # Some tools Automake needs.
710 AC_REQUIRE([AM_SANITY_CHECK])dnl
711 AC_REQUIRE([AC_ARG_PROGRAM])dnl
712 AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
713 AM_MISSING_PROG([AUTOCONF], [autoconf])
714 AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
715 AM_MISSING_PROG([AUTOHEADER], [autoheader])
716 AM_MISSING_PROG([MAKEINFO], [makeinfo])
717 AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
718 AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
719 AC_REQUIRE([AC_PROG_MKDIR_P])dnl
720 # For better backward compatibility.  To be removed once Automake 1.9.x
721 # dies out for good.  For more background, see:
722 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
723 # <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
724 AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
725 # We need awk for the "check" target.  The system "awk" is bad on
726 # some platforms.
727 AC_REQUIRE([AC_PROG_AWK])dnl
728 AC_REQUIRE([AC_PROG_MAKE_SET])dnl
729 AC_REQUIRE([AM_SET_LEADING_DOT])dnl
730 _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
731               [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
732                              [_AM_PROG_TAR([v7])])])
733 _AM_IF_OPTION([no-dependencies],,
734 [AC_PROVIDE_IFELSE([AC_PROG_CC],
735                   [_AM_DEPENDENCIES([CC])],
736                   [m4_define([AC_PROG_CC],
737                              m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
738 AC_PROVIDE_IFELSE([AC_PROG_CXX],
739                   [_AM_DEPENDENCIES([CXX])],
740                   [m4_define([AC_PROG_CXX],
741                              m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
742 AC_PROVIDE_IFELSE([AC_PROG_OBJC],
743                   [_AM_DEPENDENCIES([OBJC])],
744                   [m4_define([AC_PROG_OBJC],
745                              m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
746 dnl Support for Objective C++ was only introduced in Autoconf 2.65,
747 dnl but we still cater to Autoconf 2.62.
748 m4_ifdef([AC_PROG_OBJCXX],
749 [AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
750                   [_AM_DEPENDENCIES([OBJCXX])],
751                   [m4_define([AC_PROG_OBJCXX],
752                              m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])])dnl
753 ])
754 _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
755 dnl The 'parallel-tests' driver may need to know about EXEEXT, so add the
756 dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
757 dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
758 AC_CONFIG_COMMANDS_PRE(dnl
759 [m4_provide_if([_AM_COMPILER_EXEEXT],
760   [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
761 ])
762
763 dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
764 dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
765 dnl mangled by Autoconf and run in a shell conditional statement.
766 m4_define([_AC_COMPILER_EXEEXT],
767 m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
768
769
770 # When config.status generates a header, we must update the stamp-h file.
771 # This file resides in the same directory as the config header
772 # that is generated.  The stamp files are numbered to have different names.
773
774 # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
775 # loop where config.status creates the headers, so we can generate
776 # our stamp files there.
777 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
778 [# Compute $1's index in $config_headers.
779 _am_arg=$1
780 _am_stamp_count=1
781 for _am_header in $config_headers :; do
782   case $_am_header in
783     $_am_arg | $_am_arg:* )
784       break ;;
785     * )
786       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
787   esac
788 done
789 echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
790
791 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
792 #
793 # This file is free software; the Free Software Foundation
794 # gives unlimited permission to copy and/or distribute it,
795 # with or without modifications, as long as this notice is preserved.
796
797 # serial 8
798
799 # AM_PROG_INSTALL_SH
800 # ------------------
801 # Define $install_sh.
802 AC_DEFUN([AM_PROG_INSTALL_SH],
803 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
804 if test x"${install_sh}" != xset; then
805   case $am_aux_dir in
806   *\ * | *\     *)
807     install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
808   *)
809     install_sh="\${SHELL} $am_aux_dir/install-sh"
810   esac
811 fi
812 AC_SUBST([install_sh])])
813
814 # Copyright (C) 2003-2012 Free Software Foundation, Inc.
815 #
816 # This file is free software; the Free Software Foundation
817 # gives unlimited permission to copy and/or distribute it,
818 # with or without modifications, as long as this notice is preserved.
819
820 # serial 2
821
822 # Check whether the underlying file-system supports filenames
823 # with a leading dot.  For instance MS-DOS doesn't.
824 AC_DEFUN([AM_SET_LEADING_DOT],
825 [rm -rf .tst 2>/dev/null
826 mkdir .tst 2>/dev/null
827 if test -d .tst; then
828   am__leading_dot=.
829 else
830   am__leading_dot=_
831 fi
832 rmdir .tst 2>/dev/null
833 AC_SUBST([am__leading_dot])])
834
835 # Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
836 # From Jim Meyering
837
838 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
839 #
840 # This file is free software; the Free Software Foundation
841 # gives unlimited permission to copy and/or distribute it,
842 # with or without modifications, as long as this notice is preserved.
843
844 # serial 7
845
846 # AM_MAINTAINER_MODE([DEFAULT-MODE])
847 # ----------------------------------
848 # Control maintainer-specific portions of Makefiles.
849 # Default is to disable them, unless 'enable' is passed literally.
850 # For symmetry, 'disable' may be passed as well.  Anyway, the user
851 # can override the default with the --enable/--disable switch.
852 AC_DEFUN([AM_MAINTAINER_MODE],
853 [m4_case(m4_default([$1], [disable]),
854        [enable], [m4_define([am_maintainer_other], [disable])],
855        [disable], [m4_define([am_maintainer_other], [enable])],
856        [m4_define([am_maintainer_other], [enable])
857         m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
858 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
859   dnl maintainer-mode's default is 'disable' unless 'enable' is passed
860   AC_ARG_ENABLE([maintainer-mode],
861     [AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
862       am_maintainer_other[ make rules and dependencies not useful
863       (and sometimes confusing) to the casual installer])],
864     [USE_MAINTAINER_MODE=$enableval],
865     [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
866   AC_MSG_RESULT([$USE_MAINTAINER_MODE])
867   AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
868   MAINT=$MAINTAINER_MODE_TRUE
869   AC_SUBST([MAINT])dnl
870 ]
871 )
872
873 AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
874
875 # Check to see how 'make' treats includes.                  -*- Autoconf -*-
876
877 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
878 #
879 # This file is free software; the Free Software Foundation
880 # gives unlimited permission to copy and/or distribute it,
881 # with or without modifications, as long as this notice is preserved.
882
883 # serial 5
884
885 # AM_MAKE_INCLUDE()
886 # -----------------
887 # Check to see how make treats includes.
888 AC_DEFUN([AM_MAKE_INCLUDE],
889 [am_make=${MAKE-make}
890 cat > confinc << 'END'
891 am__doit:
892         @echo this is the am__doit target
893 .PHONY: am__doit
894 END
895 # If we don't find an include directive, just comment out the code.
896 AC_MSG_CHECKING([for style of include used by $am_make])
897 am__include="#"
898 am__quote=
899 _am_result=none
900 # First try GNU make style include.
901 echo "include confinc" > confmf
902 # Ignore all kinds of additional output from 'make'.
903 case `$am_make -s -f confmf 2> /dev/null` in #(
904 *the\ am__doit\ target*)
905   am__include=include
906   am__quote=
907   _am_result=GNU
908   ;;
909 esac
910 # Now try BSD make style include.
911 if test "$am__include" = "#"; then
912    echo '.include "confinc"' > confmf
913    case `$am_make -s -f confmf 2> /dev/null` in #(
914    *the\ am__doit\ target*)
915      am__include=.include
916      am__quote="\""
917      _am_result=BSD
918      ;;
919    esac
920 fi
921 AC_SUBST([am__include])
922 AC_SUBST([am__quote])
923 AC_MSG_RESULT([$_am_result])
924 rm -f confinc confmf
925 ])
926
927 # Copyright (C) 1999-2012 Free Software Foundation, Inc.
928 #
929 # This file is free software; the Free Software Foundation
930 # gives unlimited permission to copy and/or distribute it,
931 # with or without modifications, as long as this notice is preserved.
932
933 # serial 6
934
935 # AM_PROG_CC_C_O
936 # --------------
937 # Like AC_PROG_CC_C_O, but changed for automake.
938 AC_DEFUN([AM_PROG_CC_C_O],
939 [AC_REQUIRE([AC_PROG_CC_C_O])dnl
940 AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
941 AC_REQUIRE_AUX_FILE([compile])dnl
942 # FIXME: we rely on the cache variable name because
943 # there is no other way.
944 set dummy $CC
945 am_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
946 eval am_t=\$ac_cv_prog_cc_${am_cc}_c_o
947 if test "$am_t" != yes; then
948    # Losing compiler, so override with the script.
949    # FIXME: It is wrong to rewrite CC.
950    # But if we don't then we get into trouble of one sort or another.
951    # A longer-term fix would be to have automake use am__CC in this case,
952    # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
953    CC="$am_aux_dir/compile $CC"
954 fi
955 dnl Make sure AC_PROG_CC is never called again, or it will override our
956 dnl setting of CC.
957 m4_define([AC_PROG_CC],
958           [m4_fatal([AC_PROG_CC cannot be called after AM_PROG_CC_C_O])])
959 ])
960
961 # Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
962
963 # Copyright (C) 1997-2012 Free Software Foundation, Inc.
964 #
965 # This file is free software; the Free Software Foundation
966 # gives unlimited permission to copy and/or distribute it,
967 # with or without modifications, as long as this notice is preserved.
968
969 # serial 7
970
971 # AM_MISSING_PROG(NAME, PROGRAM)
972 # ------------------------------
973 AC_DEFUN([AM_MISSING_PROG],
974 [AC_REQUIRE([AM_MISSING_HAS_RUN])
975 $1=${$1-"${am_missing_run}$2"}
976 AC_SUBST($1)])
977
978
979 # AM_MISSING_HAS_RUN
980 # ------------------
981 # Define MISSING if not defined so far and test if it supports --run.
982 # If it does, set am_missing_run to use it, otherwise, to nothing.
983 AC_DEFUN([AM_MISSING_HAS_RUN],
984 [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
985 AC_REQUIRE_AUX_FILE([missing])dnl
986 if test x"${MISSING+set}" != xset; then
987   case $am_aux_dir in
988   *\ * | *\     *)
989     MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
990   *)
991     MISSING="\${SHELL} $am_aux_dir/missing" ;;
992   esac
993 fi
994 # Use eval to expand $SHELL
995 if eval "$MISSING --run true"; then
996   am_missing_run="$MISSING --run "
997 else
998   am_missing_run=
999   AC_MSG_WARN(['missing' script is too old or missing])
1000 fi
1001 ])
1002
1003 # Helper functions for option handling.                     -*- Autoconf -*-
1004
1005 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
1006 #
1007 # This file is free software; the Free Software Foundation
1008 # gives unlimited permission to copy and/or distribute it,
1009 # with or without modifications, as long as this notice is preserved.
1010
1011 # serial 6
1012
1013 # _AM_MANGLE_OPTION(NAME)
1014 # -----------------------
1015 AC_DEFUN([_AM_MANGLE_OPTION],
1016 [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
1017
1018 # _AM_SET_OPTION(NAME)
1019 # --------------------
1020 # Set option NAME.  Presently that only means defining a flag for this option.
1021 AC_DEFUN([_AM_SET_OPTION],
1022 [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
1023
1024 # _AM_SET_OPTIONS(OPTIONS)
1025 # ------------------------
1026 # OPTIONS is a space-separated list of Automake options.
1027 AC_DEFUN([_AM_SET_OPTIONS],
1028 [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
1029
1030 # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
1031 # -------------------------------------------
1032 # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
1033 AC_DEFUN([_AM_IF_OPTION],
1034 [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
1035
1036 # Check to make sure that the build environment is sane.    -*- Autoconf -*-
1037
1038 # Copyright (C) 1996-2012 Free Software Foundation, Inc.
1039 #
1040 # This file is free software; the Free Software Foundation
1041 # gives unlimited permission to copy and/or distribute it,
1042 # with or without modifications, as long as this notice is preserved.
1043
1044 # serial 9
1045
1046 # AM_SANITY_CHECK
1047 # ---------------
1048 AC_DEFUN([AM_SANITY_CHECK],
1049 [AC_MSG_CHECKING([whether build environment is sane])
1050 # Reject unsafe characters in $srcdir or the absolute working directory
1051 # name.  Accept space and tab only in the latter.
1052 am_lf='
1053 '
1054 case `pwd` in
1055   *[[\\\"\#\$\&\'\`$am_lf]]*)
1056     AC_MSG_ERROR([unsafe absolute working directory name]);;
1057 esac
1058 case $srcdir in
1059   *[[\\\"\#\$\&\'\`$am_lf\ \    ]]*)
1060     AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
1061 esac
1062
1063 # Do 'set' in a subshell so we don't clobber the current shell's
1064 # arguments.  Must try -L first in case configure is actually a
1065 # symlink; some systems play weird games with the mod time of symlinks
1066 # (eg FreeBSD returns the mod time of the symlink's containing
1067 # directory).
1068 if (
1069    am_has_slept=no
1070    for am_try in 1 2; do
1071      echo "timestamp, slept: $am_has_slept" > conftest.file
1072      set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
1073      if test "$[*]" = "X"; then
1074         # -L didn't work.
1075         set X `ls -t "$srcdir/configure" conftest.file`
1076      fi
1077      if test "$[*]" != "X $srcdir/configure conftest.file" \
1078         && test "$[*]" != "X conftest.file $srcdir/configure"; then
1079
1080         # If neither matched, then we have a broken ls.  This can happen
1081         # if, for instance, CONFIG_SHELL is bash and it inherits a
1082         # broken ls alias from the environment.  This has actually
1083         # happened.  Such a system could not be considered "sane".
1084         AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
1085   alias in your environment])
1086      fi
1087      if test "$[2]" = conftest.file || test $am_try -eq 2; then
1088        break
1089      fi
1090      # Just in case.
1091      sleep 1
1092      am_has_slept=yes
1093    done
1094    test "$[2]" = conftest.file
1095    )
1096 then
1097    # Ok.
1098    :
1099 else
1100    AC_MSG_ERROR([newly created file is older than distributed files!
1101 Check your system clock])
1102 fi
1103 AC_MSG_RESULT([yes])
1104 # If we didn't sleep, we still need to ensure time stamps of config.status and
1105 # generated files are strictly newer.
1106 am_sleep_pid=
1107 if grep 'slept: no' conftest.file >/dev/null 2>&1; then
1108   ( sleep 1 ) &
1109   am_sleep_pid=$!
1110 fi
1111 AC_CONFIG_COMMANDS_PRE(
1112   [AC_MSG_CHECKING([that generated files are newer than configure])
1113    if test -n "$am_sleep_pid"; then
1114      # Hide warnings about reused PIDs.
1115      wait $am_sleep_pid 2>/dev/null
1116    fi
1117    AC_MSG_RESULT([done])])
1118 rm -f conftest.file
1119 ])
1120
1121 # Copyright (C) 2009-2012 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
1127 # serial 3
1128
1129 # AM_SILENT_RULES([DEFAULT])
1130 # --------------------------
1131 # Enable less verbose build rules; with the default set to DEFAULT
1132 # ("yes" being less verbose, "no" or empty being verbose).
1133 AC_DEFUN([AM_SILENT_RULES],
1134 [AC_ARG_ENABLE([silent-rules], [dnl
1135 AS_HELP_STRING(
1136   [--enable-silent-rules],
1137   [less verbose build output (undo: "make V=1")])
1138 AS_HELP_STRING(
1139   [--disable-silent-rules],
1140   [verbose build output (undo: "make V=0")])dnl
1141 ])
1142 case $enable_silent_rules in @%:@ (((
1143   yes) AM_DEFAULT_VERBOSITY=0;;
1144    no) AM_DEFAULT_VERBOSITY=1;;
1145     *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
1146 esac
1147 dnl
1148 dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
1149 dnl do not support nested variable expansions.
1150 dnl See automake bug#9928 and bug#10237.
1151 am_make=${MAKE-make}
1152 AC_CACHE_CHECK([whether $am_make supports nested variables],
1153    [am_cv_make_support_nested_variables],
1154    [if AS_ECHO([['TRUE=$(BAR$(V))
1155 BAR0=false
1156 BAR1=true
1157 V=1
1158 am__doit:
1159         @$(TRUE)
1160 .PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
1161   am_cv_make_support_nested_variables=yes
1162 else
1163   am_cv_make_support_nested_variables=no
1164 fi])
1165 if test $am_cv_make_support_nested_variables = yes; then
1166   dnl Using '$V' instead of '$(V)' breaks IRIX make.
1167   AM_V='$(V)'
1168   AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
1169 else
1170   AM_V=$AM_DEFAULT_VERBOSITY
1171   AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
1172 fi
1173 AC_SUBST([AM_V])dnl
1174 AM_SUBST_NOTMAKE([AM_V])dnl
1175 AC_SUBST([AM_DEFAULT_V])dnl
1176 AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
1177 AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
1178 AM_BACKSLASH='\'
1179 AC_SUBST([AM_BACKSLASH])dnl
1180 _AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
1181 ])
1182
1183 # Copyright (C) 2001-2012 Free Software Foundation, Inc.
1184 #
1185 # This file is free software; the Free Software Foundation
1186 # gives unlimited permission to copy and/or distribute it,
1187 # with or without modifications, as long as this notice is preserved.
1188
1189 # serial 2
1190
1191 # AM_PROG_INSTALL_STRIP
1192 # ---------------------
1193 # One issue with vendor 'install' (even GNU) is that you can't
1194 # specify the program used to strip binaries.  This is especially
1195 # annoying in cross-compiling environments, where the build's strip
1196 # is unlikely to handle the host's binaries.
1197 # Fortunately install-sh will honor a STRIPPROG variable, so we
1198 # always use install-sh in "make install-strip", and initialize
1199 # STRIPPROG with the value of the STRIP variable (set by the user).
1200 AC_DEFUN([AM_PROG_INSTALL_STRIP],
1201 [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
1202 # Installed binaries are usually stripped using 'strip' when the user
1203 # run "make install-strip".  However 'strip' might not be the right
1204 # tool to use in cross-compilation environments, therefore Automake
1205 # will honor the 'STRIP' environment variable to overrule this program.
1206 dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
1207 if test "$cross_compiling" != no; then
1208   AC_CHECK_TOOL([STRIP], [strip], :)
1209 fi
1210 INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
1211 AC_SUBST([INSTALL_STRIP_PROGRAM])])
1212
1213 # Copyright (C) 2006-2012 Free Software Foundation, Inc.
1214 #
1215 # This file is free software; the Free Software Foundation
1216 # gives unlimited permission to copy and/or distribute it,
1217 # with or without modifications, as long as this notice is preserved.
1218
1219 # serial 3
1220
1221 # _AM_SUBST_NOTMAKE(VARIABLE)
1222 # ---------------------------
1223 # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
1224 # This macro is traced by Automake.
1225 AC_DEFUN([_AM_SUBST_NOTMAKE])
1226
1227 # AM_SUBST_NOTMAKE(VARIABLE)
1228 # --------------------------
1229 # Public sister of _AM_SUBST_NOTMAKE.
1230 AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
1231
1232 # Check how to create a tarball.                            -*- Autoconf -*-
1233
1234 # Copyright (C) 2004-2012 Free Software Foundation, Inc.
1235 #
1236 # This file is free software; the Free Software Foundation
1237 # gives unlimited permission to copy and/or distribute it,
1238 # with or without modifications, as long as this notice is preserved.
1239
1240 # serial 3
1241
1242 # _AM_PROG_TAR(FORMAT)
1243 # --------------------
1244 # Check how to create a tarball in format FORMAT.
1245 # FORMAT should be one of 'v7', 'ustar', or 'pax'.
1246 #
1247 # Substitute a variable $(am__tar) that is a command
1248 # writing to stdout a FORMAT-tarball containing the directory
1249 # $tardir.
1250 #     tardir=directory && $(am__tar) > result.tar
1251 #
1252 # Substitute a variable $(am__untar) that extract such
1253 # a tarball read from stdin.
1254 #     $(am__untar) < result.tar
1255 AC_DEFUN([_AM_PROG_TAR],
1256 [# Always define AMTAR for backward compatibility.  Yes, it's still used
1257 # in the wild :-(  We should find a proper way to deprecate it ...
1258 AC_SUBST([AMTAR], ['$${TAR-tar}'])
1259 m4_if([$1], [v7],
1260      [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
1261      [m4_case([$1], [ustar],, [pax],,
1262               [m4_fatal([Unknown tar format])])
1263 AC_MSG_CHECKING([how to create a $1 tar archive])
1264 # Loop over all known methods to create a tar archive until one works.
1265 _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
1266 _am_tools=${am_cv_prog_tar_$1-$_am_tools}
1267 # Do not fold the above two line into one, because Tru64 sh and
1268 # Solaris sh will not grok spaces in the rhs of '-'.
1269 for _am_tool in $_am_tools
1270 do
1271   case $_am_tool in
1272   gnutar)
1273     for _am_tar in tar gnutar gtar;
1274     do
1275       AM_RUN_LOG([$_am_tar --version]) && break
1276     done
1277     am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
1278     am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
1279     am__untar="$_am_tar -xf -"
1280     ;;
1281   plaintar)
1282     # Must skip GNU tar: if it does not support --format= it doesn't create
1283     # ustar tarball either.
1284     (tar --version) >/dev/null 2>&1 && continue
1285     am__tar='tar chf - "$$tardir"'
1286     am__tar_='tar chf - "$tardir"'
1287     am__untar='tar xf -'
1288     ;;
1289   pax)
1290     am__tar='pax -L -x $1 -w "$$tardir"'
1291     am__tar_='pax -L -x $1 -w "$tardir"'
1292     am__untar='pax -r'
1293     ;;
1294   cpio)
1295     am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
1296     am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
1297     am__untar='cpio -i -H $1 -d'
1298     ;;
1299   none)
1300     am__tar=false
1301     am__tar_=false
1302     am__untar=false
1303     ;;
1304   esac
1305
1306   # If the value was cached, stop now.  We just wanted to have am__tar
1307   # and am__untar set.
1308   test -n "${am_cv_prog_tar_$1}" && break
1309
1310   # tar/untar a dummy directory, and stop if the command works
1311   rm -rf conftest.dir
1312   mkdir conftest.dir
1313   echo GrepMe > conftest.dir/file
1314   AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
1315   rm -rf conftest.dir
1316   if test -s conftest.tar; then
1317     AM_RUN_LOG([$am__untar <conftest.tar])
1318     grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
1319   fi
1320 done
1321 rm -rf conftest.dir
1322
1323 AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
1324 AC_MSG_RESULT([$am_cv_prog_tar_$1])])
1325 AC_SUBST([am__tar])
1326 AC_SUBST([am__untar])
1327 ]) # _AM_PROG_TAR
1328
1329 m4_include([m4/ac_func_fseeko.m4])
1330 m4_include([m4/ax_c___attribute__.m4])
1331 m4_include([m4/ax_cflags_warn_all.m4])
1332 m4_include([m4/ax_check_compile_flag.m4])
1333 m4_include([m4/ax_compare_version.m4])
1334 m4_include([m4/ax_cxx_bool.m4])
1335 m4_include([m4/ax_cxx_namespace_std.m4])
1336 m4_include([m4/ax_cxx_namespaces.m4])
1337 m4_include([m4/ax_gcc_archflag.m4])
1338 m4_include([m4/ax_gcc_x86_cpuid.m4])
1339 m4_include([m4/ax_lang_compiler_ms.m4])
1340 m4_include([m4/ax_opencl.m4])
1341 m4_include([m4/ax_prefix_config_h.m4])
1342 m4_include([m4/ax_prog_perl_version.m4])
1343 m4_include([m4/ax_pthread.m4])
1344 m4_include([m4/cxx_have_std_libs.m4])
1345 m4_include([m4/framework.m4])
1346 m4_include([m4/libtool.m4])
1347 m4_include([m4/ltoptions.m4])
1348 m4_include([m4/ltsugar.m4])
1349 m4_include([m4/ltversion.m4])
1350 m4_include([m4/lt~obsolete.m4])
1351 m4_include([m4/magick_check_pthread_lib.m4])
1352 m4_include([m4/magick_func_mmap_fileio.m4])
1353 m4_include([m4/pkg.m4])