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