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