~ubuntu-branches/ubuntu/maverick/tsclient/maverick

« back to all changes in this revision

Viewing changes to aclocal.m4

  • Committer: Bazaar Package Importer
  • Author(s): Kilian Krause, Clément Hermann, debian/patches/15_missing-include.patch, debian/patches/14_spanish-translation-encoding.patch, debian/patches/99_autogen.patch, debian/patches/10_remote_disk_mapping.patch, debian/patches/14_manpage_whatis.patch, debian/patches/15_fix-outdated-desktop-entry.patch, Loic Minier, Josselin Mouette, Kilian Krause
  • Date: 2007-11-07 23:24:42 UTC
  • mfrom: (2.1.2 lenny)
  • Revision ID: james.westby@ubuntu.com-20071107232442-z1xgsdg9whmkxp4j
Tags: 0.150-1
[ Clément Hermann ]
* New upstream release (Closes: #411465, #393976, #415583, #312506).
* Remove obsoletes patches. Included upstream.
  [debian/patches/15_missing-include.patch]
  [debian/patches/14_spanish-translation-encoding.patch]
  [debian/patches/99_autogen.patch]
* Add remote disk mapping support.
  [debian/patches/10_remote_disk_mapping.patch] (Closes: #449144)
* Fix lintian warning : manpage-has-bad-whatis-entry.
  [debian/patches/14_manpage_whatis.patch]
* Fix lintian warning : desktop-entry-contains-unknown-key.
  desktop entry specification 1.0.0 doesn't support [Actions]
  [debian/patches/15_fix-outdated-desktop-entry.patch]

[ Loic Minier ]
* Add a get-orig-source target to retrieve the upstream tarball.
* Set maintainer to Debian GNOME Maintainers.
* Wrap build-deps and deps.

[ Josselin Mouette ]
* Remove generated files in the clean target. Closes: #442751.

[ Kilian Krause ]
* Add Clément Hermann to Uploaders.
* Fix debian/watch (Closes: #449629)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# generated automatically by aclocal 1.7.8 -*- Autoconf -*-
 
1
# generated automatically by aclocal 1.9.6 -*- Autoconf -*-
2
2
 
3
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002
4
 
# Free Software Foundation, Inc.
 
3
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
 
4
# 2005  Free Software Foundation, Inc.
5
5
# This file is free software; the Free Software Foundation
6
6
# gives unlimited permission to copy and/or distribute it,
7
7
# with or without modifications, as long as this notice is preserved.
11
11
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12
12
# PARTICULAR PURPOSE.
13
13
 
14
 
# Do all the work for Automake.                            -*- Autoconf -*-
15
 
 
16
 
# This macro actually does too much some checks are only needed if
17
 
# your package does certain things.  But this isn't really a big deal.
18
 
 
19
 
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
20
 
# Free Software Foundation, Inc.
21
 
 
22
 
# This program is free software; you can redistribute it and/or modify
23
 
# it under the terms of the GNU General Public License as published by
24
 
# the Free Software Foundation; either version 2, or (at your option)
25
 
# any later version.
26
 
 
27
 
# This program is distributed in the hope that it will be useful,
28
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
29
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
30
 
# GNU General Public License for more details.
31
 
 
32
 
# You should have received a copy of the GNU General Public License
33
 
# along with this program; if not, write to the Free Software
34
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
35
 
# 02111-1307, USA.
36
 
 
37
 
# serial 10
38
 
 
39
 
AC_PREREQ([2.54])
40
 
 
41
 
# Autoconf 2.50 wants to disallow AM_ names.  We explicitly allow
42
 
# the ones we care about.
43
 
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
44
 
 
45
 
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
46
 
# AM_INIT_AUTOMAKE([OPTIONS])
47
 
# -----------------------------------------------
48
 
# The call with PACKAGE and VERSION arguments is the old style
49
 
# call (pre autoconf-2.50), which is being phased out.  PACKAGE
50
 
# and VERSION should now be passed to AC_INIT and removed from
51
 
# the call to AM_INIT_AUTOMAKE.
52
 
# We support both call styles for the transition.  After
53
 
# the next Automake release, Autoconf can make the AC_INIT
54
 
# arguments mandatory, and then we can depend on a new Autoconf
55
 
# release and drop the old call support.
56
 
AC_DEFUN([AM_INIT_AUTOMAKE],
57
 
[AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
58
 
 AC_REQUIRE([AC_PROG_INSTALL])dnl
59
 
# test to see if srcdir already configured
60
 
if test "`cd $srcdir && pwd`" != "`pwd`" &&
61
 
   test -f $srcdir/config.status; then
62
 
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
63
 
fi
64
 
 
65
 
# test whether we have cygpath
66
 
if test -z "$CYGPATH_W"; then
67
 
  if (cygpath --version) >/dev/null 2>/dev/null; then
68
 
    CYGPATH_W='cygpath -w'
69
 
  else
70
 
    CYGPATH_W=echo
71
 
  fi
72
 
fi
73
 
AC_SUBST([CYGPATH_W])
74
 
 
75
 
# Define the identity of the package.
76
 
dnl Distinguish between old-style and new-style calls.
77
 
m4_ifval([$2],
78
 
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
79
 
 AC_SUBST([PACKAGE], [$1])dnl
80
 
 AC_SUBST([VERSION], [$2])],
81
 
[_AM_SET_OPTIONS([$1])dnl
82
 
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
83
 
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
84
 
 
85
 
_AM_IF_OPTION([no-define],,
86
 
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
87
 
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
88
 
 
89
 
# Some tools Automake needs.
90
 
AC_REQUIRE([AM_SANITY_CHECK])dnl
91
 
AC_REQUIRE([AC_ARG_PROGRAM])dnl
92
 
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
93
 
AM_MISSING_PROG(AUTOCONF, autoconf)
94
 
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
95
 
AM_MISSING_PROG(AUTOHEADER, autoheader)
96
 
AM_MISSING_PROG(MAKEINFO, makeinfo)
97
 
AM_MISSING_PROG(AMTAR, tar)
98
 
AM_PROG_INSTALL_SH
99
 
AM_PROG_INSTALL_STRIP
100
 
# We need awk for the "check" target.  The system "awk" is bad on
101
 
# some platforms.
102
 
AC_REQUIRE([AC_PROG_AWK])dnl
103
 
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
104
 
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
105
 
 
106
 
_AM_IF_OPTION([no-dependencies],,
107
 
[AC_PROVIDE_IFELSE([AC_PROG_CC],
108
 
                  [_AM_DEPENDENCIES(CC)],
109
 
                  [define([AC_PROG_CC],
110
 
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
111
 
AC_PROVIDE_IFELSE([AC_PROG_CXX],
112
 
                  [_AM_DEPENDENCIES(CXX)],
113
 
                  [define([AC_PROG_CXX],
114
 
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
115
 
])
116
 
])
117
 
 
118
 
 
119
 
# When config.status generates a header, we must update the stamp-h file.
120
 
# This file resides in the same directory as the config header
121
 
# that is generated.  The stamp files are numbered to have different names.
122
 
 
123
 
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
124
 
# loop where config.status creates the headers, so we can generate
125
 
# our stamp files there.
126
 
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
127
 
[# Compute $1's index in $config_headers.
128
 
_am_stamp_count=1
129
 
for _am_header in $config_headers :; do
130
 
  case $_am_header in
131
 
    $1 | $1:* )
132
 
      break ;;
133
 
    * )
134
 
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
135
 
  esac
136
 
done
137
 
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
138
 
 
139
 
# Copyright 2002  Free Software Foundation, Inc.
140
 
 
141
 
# This program is free software; you can redistribute it and/or modify
142
 
# it under the terms of the GNU General Public License as published by
143
 
# the Free Software Foundation; either version 2, or (at your option)
144
 
# any later version.
145
 
 
146
 
# This program is distributed in the hope that it will be useful,
147
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
148
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
149
 
# GNU General Public License for more details.
150
 
 
151
 
# You should have received a copy of the GNU General Public License
152
 
# along with this program; if not, write to the Free Software
153
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
154
 
 
155
 
# AM_AUTOMAKE_VERSION(VERSION)
156
 
# ----------------------------
157
 
# Automake X.Y traces this macro to ensure aclocal.m4 has been
158
 
# generated from the m4 files accompanying Automake X.Y.
159
 
AC_DEFUN([AM_AUTOMAKE_VERSION],[am__api_version="1.7"])
160
 
 
161
 
# AM_SET_CURRENT_AUTOMAKE_VERSION
162
 
# -------------------------------
163
 
# Call AM_AUTOMAKE_VERSION so it can be traced.
164
 
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
165
 
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
166
 
         [AM_AUTOMAKE_VERSION([1.7.8])])
167
 
 
168
 
# Helper functions for option handling.                    -*- Autoconf -*-
169
 
 
170
 
# Copyright 2001, 2002  Free Software Foundation, Inc.
171
 
 
172
 
# This program is free software; you can redistribute it and/or modify
173
 
# it under the terms of the GNU General Public License as published by
174
 
# the Free Software Foundation; either version 2, or (at your option)
175
 
# any later version.
176
 
 
177
 
# This program is distributed in the hope that it will be useful,
178
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
179
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
180
 
# GNU General Public License for more details.
181
 
 
182
 
# You should have received a copy of the GNU General Public License
183
 
# along with this program; if not, write to the Free Software
184
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
185
 
# 02111-1307, USA.
186
 
 
187
 
# serial 2
188
 
 
189
 
# _AM_MANGLE_OPTION(NAME)
190
 
# -----------------------
191
 
AC_DEFUN([_AM_MANGLE_OPTION],
192
 
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
193
 
 
194
 
# _AM_SET_OPTION(NAME)
195
 
# ------------------------------
196
 
# Set option NAME.  Presently that only means defining a flag for this option.
197
 
AC_DEFUN([_AM_SET_OPTION],
198
 
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
199
 
 
200
 
# _AM_SET_OPTIONS(OPTIONS)
201
 
# ----------------------------------
202
 
# OPTIONS is a space-separated list of Automake options.
203
 
AC_DEFUN([_AM_SET_OPTIONS],
204
 
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
205
 
 
206
 
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
207
 
# -------------------------------------------
208
 
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
209
 
AC_DEFUN([_AM_IF_OPTION],
210
 
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
211
 
 
212
 
#
213
 
# Check to make sure that the build environment is sane.
214
 
#
215
 
 
216
 
# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
217
 
 
218
 
# This program is free software; you can redistribute it and/or modify
219
 
# it under the terms of the GNU General Public License as published by
220
 
# the Free Software Foundation; either version 2, or (at your option)
221
 
# any later version.
222
 
 
223
 
# This program is distributed in the hope that it will be useful,
224
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
225
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
226
 
# GNU General Public License for more details.
227
 
 
228
 
# You should have received a copy of the GNU General Public License
229
 
# along with this program; if not, write to the Free Software
230
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
231
 
# 02111-1307, USA.
232
 
 
233
 
# serial 3
234
 
 
235
 
# AM_SANITY_CHECK
236
 
# ---------------
237
 
AC_DEFUN([AM_SANITY_CHECK],
238
 
[AC_MSG_CHECKING([whether build environment is sane])
239
 
# Just in case
240
 
sleep 1
241
 
echo timestamp > conftest.file
242
 
# Do `set' in a subshell so we don't clobber the current shell's
243
 
# arguments.  Must try -L first in case configure is actually a
244
 
# symlink; some systems play weird games with the mod time of symlinks
245
 
# (eg FreeBSD returns the mod time of the symlink's containing
246
 
# directory).
247
 
if (
248
 
   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
249
 
   if test "$[*]" = "X"; then
250
 
      # -L didn't work.
251
 
      set X `ls -t $srcdir/configure conftest.file`
252
 
   fi
253
 
   rm -f conftest.file
254
 
   if test "$[*]" != "X $srcdir/configure conftest.file" \
255
 
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
256
 
 
257
 
      # If neither matched, then we have a broken ls.  This can happen
258
 
      # if, for instance, CONFIG_SHELL is bash and it inherits a
259
 
      # broken ls alias from the environment.  This has actually
260
 
      # happened.  Such a system could not be considered "sane".
261
 
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
262
 
alias in your environment])
263
 
   fi
264
 
 
265
 
   test "$[2]" = conftest.file
266
 
   )
267
 
then
268
 
   # Ok.
269
 
   :
270
 
else
271
 
   AC_MSG_ERROR([newly created file is older than distributed files!
272
 
Check your system clock])
273
 
fi
274
 
AC_MSG_RESULT(yes)])
275
 
 
276
 
#  -*- Autoconf -*-
277
 
 
278
 
 
279
 
# Copyright 1997, 1999, 2000, 2001 Free Software Foundation, Inc.
280
 
 
281
 
# This program is free software; you can redistribute it and/or modify
282
 
# it under the terms of the GNU General Public License as published by
283
 
# the Free Software Foundation; either version 2, or (at your option)
284
 
# any later version.
285
 
 
286
 
# This program is distributed in the hope that it will be useful,
287
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
288
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
289
 
# GNU General Public License for more details.
290
 
 
291
 
# You should have received a copy of the GNU General Public License
292
 
# along with this program; if not, write to the Free Software
293
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
294
 
# 02111-1307, USA.
295
 
 
296
 
# serial 3
297
 
 
298
 
# AM_MISSING_PROG(NAME, PROGRAM)
299
 
# ------------------------------
300
 
AC_DEFUN([AM_MISSING_PROG],
301
 
[AC_REQUIRE([AM_MISSING_HAS_RUN])
302
 
$1=${$1-"${am_missing_run}$2"}
303
 
AC_SUBST($1)])
304
 
 
305
 
 
306
 
# AM_MISSING_HAS_RUN
307
 
# ------------------
308
 
# Define MISSING if not defined so far and test if it supports --run.
309
 
# If it does, set am_missing_run to use it, otherwise, to nothing.
310
 
AC_DEFUN([AM_MISSING_HAS_RUN],
311
 
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
312
 
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
313
 
# Use eval to expand $SHELL
314
 
if eval "$MISSING --run true"; then
315
 
  am_missing_run="$MISSING --run "
316
 
else
317
 
  am_missing_run=
318
 
  AC_MSG_WARN([`missing' script is too old or missing])
319
 
fi
320
 
])
321
 
 
322
 
# AM_AUX_DIR_EXPAND
323
 
 
324
 
# Copyright 2001 Free Software Foundation, Inc.
325
 
 
326
 
# This program is free software; you can redistribute it and/or modify
327
 
# it under the terms of the GNU General Public License as published by
328
 
# the Free Software Foundation; either version 2, or (at your option)
329
 
# any later version.
330
 
 
331
 
# This program is distributed in the hope that it will be useful,
332
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
333
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
334
 
# GNU General Public License for more details.
335
 
 
336
 
# You should have received a copy of the GNU General Public License
337
 
# along with this program; if not, write to the Free Software
338
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
339
 
# 02111-1307, USA.
340
 
 
341
 
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
342
 
# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
343
 
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
344
 
#
345
 
# Of course, Automake must honor this variable whenever it calls a
346
 
# tool from the auxiliary directory.  The problem is that $srcdir (and
347
 
# therefore $ac_aux_dir as well) can be either absolute or relative,
348
 
# depending on how configure is run.  This is pretty annoying, since
349
 
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
350
 
# source directory, any form will work fine, but in subdirectories a
351
 
# relative path needs to be adjusted first.
352
 
#
353
 
# $ac_aux_dir/missing
354
 
#    fails when called from a subdirectory if $ac_aux_dir is relative
355
 
# $top_srcdir/$ac_aux_dir/missing
356
 
#    fails if $ac_aux_dir is absolute,
357
 
#    fails when called from a subdirectory in a VPATH build with
358
 
#          a relative $ac_aux_dir
359
 
#
360
 
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
361
 
# are both prefixed by $srcdir.  In an in-source build this is usually
362
 
# harmless because $srcdir is `.', but things will broke when you
363
 
# start a VPATH build or use an absolute $srcdir.
364
 
#
365
 
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
366
 
# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
367
 
#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
368
 
# and then we would define $MISSING as
369
 
#   MISSING="\${SHELL} $am_aux_dir/missing"
370
 
# This will work as long as MISSING is not called from configure, because
371
 
# unfortunately $(top_srcdir) has no meaning in configure.
372
 
# However there are other variables, like CC, which are often used in
373
 
# configure, and could therefore not use this "fixed" $ac_aux_dir.
374
 
#
375
 
# Another solution, used here, is to always expand $ac_aux_dir to an
376
 
# absolute PATH.  The drawback is that using absolute paths prevent a
377
 
# configured tree to be moved without reconfiguration.
378
 
 
379
 
# Rely on autoconf to set up CDPATH properly.
380
 
AC_PREREQ([2.50])
381
 
 
382
 
AC_DEFUN([AM_AUX_DIR_EXPAND], [
383
 
# expand $ac_aux_dir to an absolute path
384
 
am_aux_dir=`cd $ac_aux_dir && pwd`
385
 
])
386
 
 
387
 
# AM_PROG_INSTALL_SH
388
 
# ------------------
389
 
# Define $install_sh.
390
 
 
391
 
# Copyright 2001 Free Software Foundation, Inc.
392
 
 
393
 
# This program is free software; you can redistribute it and/or modify
394
 
# it under the terms of the GNU General Public License as published by
395
 
# the Free Software Foundation; either version 2, or (at your option)
396
 
# any later version.
397
 
 
398
 
# This program is distributed in the hope that it will be useful,
399
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
400
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
401
 
# GNU General Public License for more details.
402
 
 
403
 
# You should have received a copy of the GNU General Public License
404
 
# along with this program; if not, write to the Free Software
405
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
406
 
# 02111-1307, USA.
407
 
 
408
 
AC_DEFUN([AM_PROG_INSTALL_SH],
409
 
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
410
 
install_sh=${install_sh-"$am_aux_dir/install-sh"}
411
 
AC_SUBST(install_sh)])
412
 
 
413
 
# AM_PROG_INSTALL_STRIP
414
 
 
415
 
# Copyright 2001 Free Software Foundation, Inc.
416
 
 
417
 
# This program is free software; you can redistribute it and/or modify
418
 
# it under the terms of the GNU General Public License as published by
419
 
# the Free Software Foundation; either version 2, or (at your option)
420
 
# any later version.
421
 
 
422
 
# This program is distributed in the hope that it will be useful,
423
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
424
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
425
 
# GNU General Public License for more details.
426
 
 
427
 
# You should have received a copy of the GNU General Public License
428
 
# along with this program; if not, write to the Free Software
429
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
430
 
# 02111-1307, USA.
431
 
 
432
 
# One issue with vendor `install' (even GNU) is that you can't
433
 
# specify the program used to strip binaries.  This is especially
434
 
# annoying in cross-compiling environments, where the build's strip
435
 
# is unlikely to handle the host's binaries.
436
 
# Fortunately install-sh will honor a STRIPPROG variable, so we
437
 
# always use install-sh in `make install-strip', and initialize
438
 
# STRIPPROG with the value of the STRIP variable (set by the user).
439
 
AC_DEFUN([AM_PROG_INSTALL_STRIP],
440
 
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
441
 
# Installed binaries are usually stripped using `strip' when the user
442
 
# run `make install-strip'.  However `strip' might not be the right
443
 
# tool to use in cross-compilation environments, therefore Automake
444
 
# will honor the `STRIP' environment variable to overrule this program.
445
 
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
446
 
if test "$cross_compiling" != no; then
447
 
  AC_CHECK_TOOL([STRIP], [strip], :)
448
 
fi
449
 
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
450
 
AC_SUBST([INSTALL_STRIP_PROGRAM])])
451
 
 
452
 
#                                                          -*- Autoconf -*-
453
 
# Copyright (C) 2003  Free Software Foundation, Inc.
454
 
 
455
 
# This program is free software; you can redistribute it and/or modify
456
 
# it under the terms of the GNU General Public License as published by
457
 
# the Free Software Foundation; either version 2, or (at your option)
458
 
# any later version.
459
 
 
460
 
# This program is distributed in the hope that it will be useful,
461
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
462
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
463
 
# GNU General Public License for more details.
464
 
 
465
 
# You should have received a copy of the GNU General Public License
466
 
# along with this program; if not, write to the Free Software
467
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
468
 
# 02111-1307, USA.
469
 
 
470
 
# serial 1
471
 
 
472
 
# Check whether the underlying file-system supports filenames
473
 
# with a leading dot.  For instance MS-DOS doesn't.
474
 
AC_DEFUN([AM_SET_LEADING_DOT],
475
 
[rm -rf .tst 2>/dev/null
476
 
mkdir .tst 2>/dev/null
477
 
if test -d .tst; then
478
 
  am__leading_dot=.
479
 
else
480
 
  am__leading_dot=_
481
 
fi
482
 
rmdir .tst 2>/dev/null
483
 
AC_SUBST([am__leading_dot])])
484
 
 
485
 
# serial 5                                              -*- Autoconf -*-
486
 
 
487
 
# Copyright (C) 1999, 2000, 2001, 2002, 2003  Free Software Foundation, Inc.
488
 
 
489
 
# This program is free software; you can redistribute it and/or modify
490
 
# it under the terms of the GNU General Public License as published by
491
 
# the Free Software Foundation; either version 2, or (at your option)
492
 
# any later version.
493
 
 
494
 
# This program is distributed in the hope that it will be useful,
495
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
496
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
497
 
# GNU General Public License for more details.
498
 
 
499
 
# You should have received a copy of the GNU General Public License
500
 
# along with this program; if not, write to the Free Software
501
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
502
 
# 02111-1307, USA.
503
 
 
504
 
 
505
 
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
506
 
# written in clear, in which case automake, when reading aclocal.m4,
507
 
# will think it sees a *use*, and therefore will trigger all it's
508
 
# C support machinery.  Also note that it means that autoscan, seeing
509
 
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
510
 
 
511
 
 
512
 
 
513
 
# _AM_DEPENDENCIES(NAME)
514
 
# ----------------------
515
 
# See how the compiler implements dependency checking.
516
 
# NAME is "CC", "CXX", "GCJ", or "OBJC".
517
 
# We try a few techniques and use that to set a single cache variable.
518
 
#
519
 
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
520
 
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
521
 
# dependency, and given that the user is not expected to run this macro,
522
 
# just rely on AC_PROG_CC.
523
 
AC_DEFUN([_AM_DEPENDENCIES],
524
 
[AC_REQUIRE([AM_SET_DEPDIR])dnl
525
 
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
526
 
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
527
 
AC_REQUIRE([AM_DEP_TRACK])dnl
528
 
 
529
 
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
530
 
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
531
 
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
532
 
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
533
 
                   [depcc="$$1"   am_compiler_list=])
534
 
 
535
 
AC_CACHE_CHECK([dependency style of $depcc],
536
 
               [am_cv_$1_dependencies_compiler_type],
537
 
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
538
 
  # We make a subdir and do the tests there.  Otherwise we can end up
539
 
  # making bogus files that we don't know about and never remove.  For
540
 
  # instance it was reported that on HP-UX the gcc test will end up
541
 
  # making a dummy file named `D' -- because `-MD' means `put the output
542
 
  # in D'.
543
 
  mkdir conftest.dir
544
 
  # Copy depcomp to subdir because otherwise we won't find it if we're
545
 
  # using a relative directory.
546
 
  cp "$am_depcomp" conftest.dir
547
 
  cd conftest.dir
548
 
  # We will build objects and dependencies in a subdirectory because
549
 
  # it helps to detect inapplicable dependency modes.  For instance
550
 
  # both Tru64's cc and ICC support -MD to output dependencies as a
551
 
  # side effect of compilation, but ICC will put the dependencies in
552
 
  # the current directory while Tru64 will put them in the object
553
 
  # directory.
554
 
  mkdir sub
555
 
 
556
 
  am_cv_$1_dependencies_compiler_type=none
557
 
  if test "$am_compiler_list" = ""; then
558
 
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
559
 
  fi
560
 
  for depmode in $am_compiler_list; do
561
 
    # Setup a source with many dependencies, because some compilers
562
 
    # like to wrap large dependency lists on column 80 (with \), and
563
 
    # we should not choose a depcomp mode which is confused by this.
564
 
    #
565
 
    # We need to recreate these files for each test, as the compiler may
566
 
    # overwrite some of them when testing with obscure command lines.
567
 
    # This happens at least with the AIX C compiler.
568
 
    : > sub/conftest.c
569
 
    for i in 1 2 3 4 5 6; do
570
 
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
571
 
      : > sub/conftst$i.h
572
 
    done
573
 
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
574
 
 
575
 
    case $depmode in
576
 
    nosideeffect)
577
 
      # after this tag, mechanisms are not by side-effect, so they'll
578
 
      # only be used when explicitly requested
579
 
      if test "x$enable_dependency_tracking" = xyes; then
580
 
        continue
581
 
      else
582
 
        break
583
 
      fi
584
 
      ;;
585
 
    none) break ;;
586
 
    esac
587
 
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
588
 
    # mode.  It turns out that the SunPro C++ compiler does not properly
589
 
    # handle `-M -o', and we need to detect this.
590
 
    if depmode=$depmode \
591
 
       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
592
 
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
593
 
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
594
 
         >/dev/null 2>conftest.err &&
595
 
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
596
 
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
597
 
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
598
 
      # icc doesn't choke on unknown options, it will just issue warnings
599
 
      # (even with -Werror).  So we grep stderr for any message
600
 
      # that says an option was ignored.
601
 
      if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else
602
 
        am_cv_$1_dependencies_compiler_type=$depmode
603
 
        break
604
 
      fi
605
 
    fi
606
 
  done
607
 
 
608
 
  cd ..
609
 
  rm -rf conftest.dir
610
 
else
611
 
  am_cv_$1_dependencies_compiler_type=none
612
 
fi
613
 
])
614
 
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
615
 
AM_CONDITIONAL([am__fastdep$1], [
616
 
  test "x$enable_dependency_tracking" != xno \
617
 
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
618
 
])
619
 
 
620
 
 
621
 
# AM_SET_DEPDIR
622
 
# -------------
623
 
# Choose a directory name for dependency files.
624
 
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
625
 
AC_DEFUN([AM_SET_DEPDIR],
626
 
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
627
 
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
628
 
])
629
 
 
630
 
 
631
 
# AM_DEP_TRACK
632
 
# ------------
633
 
AC_DEFUN([AM_DEP_TRACK],
634
 
[AC_ARG_ENABLE(dependency-tracking,
635
 
[  --disable-dependency-tracking Speeds up one-time builds
636
 
  --enable-dependency-tracking  Do not reject slow dependency extractors])
637
 
if test "x$enable_dependency_tracking" != xno; then
638
 
  am_depcomp="$ac_aux_dir/depcomp"
639
 
  AMDEPBACKSLASH='\'
640
 
fi
641
 
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
642
 
AC_SUBST([AMDEPBACKSLASH])
643
 
])
644
 
 
645
 
# Generate code to set up dependency tracking.   -*- Autoconf -*-
646
 
 
647
 
# Copyright 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
648
 
 
649
 
# This program is free software; you can redistribute it and/or modify
650
 
# it under the terms of the GNU General Public License as published by
651
 
# the Free Software Foundation; either version 2, or (at your option)
652
 
# any later version.
653
 
 
654
 
# This program is distributed in the hope that it will be useful,
655
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
656
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
657
 
# GNU General Public License for more details.
658
 
 
659
 
# You should have received a copy of the GNU General Public License
660
 
# along with this program; if not, write to the Free Software
661
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
662
 
# 02111-1307, USA.
663
 
 
664
 
#serial 2
665
 
 
666
 
# _AM_OUTPUT_DEPENDENCY_COMMANDS
667
 
# ------------------------------
668
 
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
669
 
[for mf in $CONFIG_FILES; do
670
 
  # Strip MF so we end up with the name of the file.
671
 
  mf=`echo "$mf" | sed -e 's/:.*$//'`
672
 
  # Check whether this is an Automake generated Makefile or not.
673
 
  # We used to match only the files named `Makefile.in', but
674
 
  # some people rename them; so instead we look at the file content.
675
 
  # Grep'ing the first line is not enough: some people post-process
676
 
  # each Makefile.in and add a new line on top of each file to say so.
677
 
  # So let's grep whole file.
678
 
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
679
 
    dirpart=`AS_DIRNAME("$mf")`
680
 
  else
681
 
    continue
682
 
  fi
683
 
  grep '^DEP_FILES *= *[[^ @%:@]]' < "$mf" > /dev/null || continue
684
 
  # Extract the definition of DEP_FILES from the Makefile without
685
 
  # running `make'.
686
 
  DEPDIR=`sed -n -e '/^DEPDIR = / s///p' < "$mf"`
687
 
  test -z "$DEPDIR" && continue
688
 
  # When using ansi2knr, U may be empty or an underscore; expand it
689
 
  U=`sed -n -e '/^U = / s///p' < "$mf"`
690
 
  test -d "$dirpart/$DEPDIR" || mkdir "$dirpart/$DEPDIR"
691
 
  # We invoke sed twice because it is the simplest approach to
692
 
  # changing $(DEPDIR) to its actual value in the expansion.
693
 
  for file in `sed -n -e '
694
 
    /^DEP_FILES = .*\\\\$/ {
695
 
      s/^DEP_FILES = //
696
 
      :loop
697
 
        s/\\\\$//
698
 
        p
699
 
        n
700
 
        /\\\\$/ b loop
701
 
      p
702
 
    }
703
 
    /^DEP_FILES = / s/^DEP_FILES = //p' < "$mf" | \
704
 
       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
705
 
    # Make sure the directory exists.
706
 
    test -f "$dirpart/$file" && continue
707
 
    fdir=`AS_DIRNAME(["$file"])`
708
 
    AS_MKDIR_P([$dirpart/$fdir])
709
 
    # echo "creating $dirpart/$file"
710
 
    echo '# dummy' > "$dirpart/$file"
711
 
  done
712
 
done
713
 
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
714
 
 
715
 
 
716
 
# AM_OUTPUT_DEPENDENCY_COMMANDS
717
 
# -----------------------------
718
 
# This macro should only be invoked once -- use via AC_REQUIRE.
719
 
#
720
 
# This code is only required when automatic dependency tracking
721
 
# is enabled.  FIXME.  This creates each `.P' file that we will
722
 
# need in order to bootstrap the dependency handling code.
723
 
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
724
 
[AC_CONFIG_COMMANDS([depfiles],
725
 
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
726
 
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
727
 
])
728
 
 
729
 
# Check to see how 'make' treats includes.      -*- Autoconf -*-
730
 
 
731
 
# Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
732
 
 
733
 
# This program is free software; you can redistribute it and/or modify
734
 
# it under the terms of the GNU General Public License as published by
735
 
# the Free Software Foundation; either version 2, or (at your option)
736
 
# any later version.
737
 
 
738
 
# This program is distributed in the hope that it will be useful,
739
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
740
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
741
 
# GNU General Public License for more details.
742
 
 
743
 
# You should have received a copy of the GNU General Public License
744
 
# along with this program; if not, write to the Free Software
745
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
746
 
# 02111-1307, USA.
747
 
 
748
 
# serial 2
749
 
 
750
 
# AM_MAKE_INCLUDE()
751
 
# -----------------
752
 
# Check to see how make treats includes.
753
 
AC_DEFUN([AM_MAKE_INCLUDE],
754
 
[am_make=${MAKE-make}
755
 
cat > confinc << 'END'
756
 
am__doit:
757
 
        @echo done
758
 
.PHONY: am__doit
759
 
END
760
 
# If we don't find an include directive, just comment out the code.
761
 
AC_MSG_CHECKING([for style of include used by $am_make])
762
 
am__include="#"
763
 
am__quote=
764
 
_am_result=none
765
 
# First try GNU make style include.
766
 
echo "include confinc" > confmf
767
 
# We grep out `Entering directory' and `Leaving directory'
768
 
# messages which can occur if `w' ends up in MAKEFLAGS.
769
 
# In particular we don't look at `^make:' because GNU make might
770
 
# be invoked under some other name (usually "gmake"), in which
771
 
# case it prints its new name instead of `make'.
772
 
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
773
 
   am__include=include
774
 
   am__quote=
775
 
   _am_result=GNU
776
 
fi
777
 
# Now try BSD make style include.
778
 
if test "$am__include" = "#"; then
779
 
   echo '.include "confinc"' > confmf
780
 
   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
781
 
      am__include=.include
782
 
      am__quote="\""
783
 
      _am_result=BSD
784
 
   fi
785
 
fi
786
 
AC_SUBST([am__include])
787
 
AC_SUBST([am__quote])
788
 
AC_MSG_RESULT([$_am_result])
789
 
rm -f confinc confmf
790
 
])
791
 
 
792
 
# AM_CONDITIONAL                                              -*- Autoconf -*-
793
 
 
794
 
# Copyright 1997, 2000, 2001 Free Software Foundation, Inc.
795
 
 
796
 
# This program is free software; you can redistribute it and/or modify
797
 
# it under the terms of the GNU General Public License as published by
798
 
# the Free Software Foundation; either version 2, or (at your option)
799
 
# any later version.
800
 
 
801
 
# This program is distributed in the hope that it will be useful,
802
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
803
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
804
 
# GNU General Public License for more details.
805
 
 
806
 
# You should have received a copy of the GNU General Public License
807
 
# along with this program; if not, write to the Free Software
808
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
809
 
# 02111-1307, USA.
810
 
 
811
 
# serial 5
812
 
 
813
 
AC_PREREQ(2.52)
814
 
 
815
 
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
816
 
# -------------------------------------
817
 
# Define a conditional.
818
 
AC_DEFUN([AM_CONDITIONAL],
819
 
[ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
820
 
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
821
 
AC_SUBST([$1_TRUE])
822
 
AC_SUBST([$1_FALSE])
823
 
if $2; then
824
 
  $1_TRUE=
825
 
  $1_FALSE='#'
826
 
else
827
 
  $1_TRUE='#'
828
 
  $1_FALSE=
829
 
fi
830
 
AC_CONFIG_COMMANDS_PRE(
831
 
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
832
 
  AC_MSG_ERROR([conditional "$1" was never defined.
833
 
Usually this means the macro was only invoked conditionally.])
834
 
fi])])
835
 
 
836
 
# Add --enable-maintainer-mode option to configure.
837
 
# From Jim Meyering
838
 
 
839
 
# Copyright 1996, 1998, 2000, 2001, 2002  Free Software Foundation, Inc.
840
 
 
841
 
# This program is free software; you can redistribute it and/or modify
842
 
# it under the terms of the GNU General Public License as published by
843
 
# the Free Software Foundation; either version 2, or (at your option)
844
 
# any later version.
845
 
 
846
 
# This program is distributed in the hope that it will be useful,
847
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
848
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
849
 
# GNU General Public License for more details.
850
 
 
851
 
# You should have received a copy of the GNU General Public License
852
 
# along with this program; if not, write to the Free Software
853
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
854
 
# 02111-1307, USA.
855
 
 
856
 
# serial 2
857
 
 
858
 
AC_DEFUN([AM_MAINTAINER_MODE],
859
 
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
860
 
  dnl maintainer-mode is disabled by default
861
 
  AC_ARG_ENABLE(maintainer-mode,
862
 
[  --enable-maintainer-mode enable make rules and dependencies not useful
863
 
                          (and sometimes confusing) to the casual installer],
864
 
      USE_MAINTAINER_MODE=$enableval,
865
 
      USE_MAINTAINER_MODE=no)
866
 
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
867
 
  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
868
 
  MAINT=$MAINTAINER_MODE_TRUE
869
 
  AC_SUBST(MAINT)dnl
870
 
]
871
 
)
872
 
 
873
 
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
874
 
 
875
 
# Like AC_CONFIG_HEADER, but automatically create stamp file. -*- Autoconf -*-
876
 
 
877
 
# Copyright 1996, 1997, 2000, 2001 Free Software Foundation, Inc.
878
 
 
879
 
# This program is free software; you can redistribute it and/or modify
880
 
# it under the terms of the GNU General Public License as published by
881
 
# the Free Software Foundation; either version 2, or (at your option)
882
 
# any later version.
883
 
 
884
 
# This program is distributed in the hope that it will be useful,
885
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
886
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
887
 
# GNU General Public License for more details.
888
 
 
889
 
# You should have received a copy of the GNU General Public License
890
 
# along with this program; if not, write to the Free Software
891
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
892
 
# 02111-1307, USA.
893
 
 
894
 
AC_PREREQ([2.52])
895
 
 
896
 
# serial 6
897
 
 
898
 
# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
899
 
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
900
 
 
901
 
 
902
 
dnl AC_PROG_INTLTOOL([MINIMUM-VERSION])
903
 
# serial 1 AC_PROG_INTLTOOL
904
 
AC_DEFUN(AC_PROG_INTLTOOL,
905
 
[
906
 
 
907
 
if test -n "$1"; then
908
 
    AC_MSG_CHECKING(for intltool >= $1)
909
 
 
910
 
    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ printf "%d", $[1] * 100 + $[2]; }'`
911
 
    INTLTOOL_APPLIED_VERSION=`awk -F\" '/\\$VERSION / { printf $[2]; }'  < ${srcdir}/intltool-update.in`
912
 
    changequote({{,}})
913
 
    INTLTOOL_APPLIED_VERSION_AS_INT=`awk -F\" '/\\$VERSION / { split(${{2}}, VERSION, "."); printf "%d\n", VERSION[1] * 100 + VERSION[2];}' < ${srcdir}/intltool-update.in`
914
 
    changequote([,])
915
 
 
916
 
    if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT"; then
917
 
        AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
918
 
    else
919
 
        AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found. Your intltool is too old.  You need intltool $1 or later.])
920
 
        exit 1
921
 
    fi
922
 
fi
923
 
 
924
 
  INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -d -u -c $(top_builddir)/po/.intltool-merge-cache'
925
 
INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -d -u -c $(top_builddir)/po/.intltool-merge-cache'
926
 
     INTLTOOL_KEYS_RULE='%.keys:      %.keys.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -k -u -c $(top_builddir)/po/.intltool-merge-cache'
927
 
     INTLTOOL_PROP_RULE='%.prop:      %.prop.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -d -u -c $(top_builddir)/po/.intltool-merge-cache'
928
 
      INTLTOOL_OAF_RULE='%.oaf:       %.oaf.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -o -p'
929
 
     INTLTOOL_PONG_RULE='%.pong:      %.pong.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -x -u -c $(top_builddir)/po/.intltool-merge-cache'
930
 
   INTLTOOL_SERVER_RULE='%.server:    %.server.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -o -u -c $(top_builddir)/po/.intltool-merge-cache'
931
 
    INTLTOOL_SHEET_RULE='%.sheet:     %.sheet.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -x -u -c $(top_builddir)/po/.intltool-merge-cache'
932
 
INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -d -u -c $(top_builddir)/po/.intltool-merge-cache'
933
 
       INTLTOOL_UI_RULE='%.ui:        %.ui.in        $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -x -u -c $(top_builddir)/po/.intltool-merge-cache'
934
 
      INTLTOOL_XML_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -x -u -c $(top_builddir)/po/.intltool-merge-cache'
935
 
      INTLTOOL_XAM_RULE='%.xam:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -x -u -c $(top_builddir)/po/.intltool-merge-cache'
936
 
    INTLTOOL_CAVES_RULE='%.caves:     %.caves.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -d -u -c $(top_builddir)/po/.intltool-merge-cache'
937
 
  INTLTOOL_SCHEMAS_RULE='%.schemas:   %.schemas.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -s -u -c $(top_builddir)/po/.intltool-merge-cache'
938
 
    INTLTOOL_THEME_RULE='%.theme:     %.theme.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) $(top_srcdir)/po $< [$]@ -d -u -c $(top_builddir)/po/.intltool-merge-cache'
939
 
 
940
 
AC_SUBST(INTLTOOL_DESKTOP_RULE)
941
 
AC_SUBST(INTLTOOL_DIRECTORY_RULE)
942
 
AC_SUBST(INTLTOOL_KEYS_RULE)
943
 
AC_SUBST(INTLTOOL_PROP_RULE)
944
 
AC_SUBST(INTLTOOL_OAF_RULE)
945
 
AC_SUBST(INTLTOOL_PONG_RULE)
946
 
AC_SUBST(INTLTOOL_SERVER_RULE)
947
 
AC_SUBST(INTLTOOL_SHEET_RULE)
948
 
AC_SUBST(INTLTOOL_SOUNDLIST_RULE)
949
 
AC_SUBST(INTLTOOL_UI_RULE)
950
 
AC_SUBST(INTLTOOL_XAM_RULE)
951
 
AC_SUBST(INTLTOOL_XML_RULE)
952
 
AC_SUBST(INTLTOOL_CAVES_RULE)
953
 
AC_SUBST(INTLTOOL_SCHEMAS_RULE)
954
 
AC_SUBST(INTLTOOL_THEME_RULE)
955
 
 
956
 
# Use the tools built into the package, not the ones that are installed.
957
 
 
958
 
INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract'
959
 
INTLTOOL_MERGE='$(top_builddir)/intltool-merge'
960
 
INTLTOOL_UPDATE='$(top_builddir)/intltool-update'
961
 
 
962
 
AC_SUBST(INTLTOOL_EXTRACT)
963
 
AC_SUBST(INTLTOOL_MERGE)
964
 
AC_SUBST(INTLTOOL_UPDATE)
965
 
 
966
 
AC_PATH_PROG(INTLTOOL_PERL, perl)
967
 
if test -z "$INTLTOOL_PERL"; then
968
 
   AC_MSG_ERROR([perl not found; required for intltool])
969
 
fi
970
 
if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then
971
 
   AC_MSG_ERROR([perl 5.x required for intltool])
972
 
fi
973
 
 
974
 
# Remove file type tags (using []) from po/POTFILES.
975
 
 
976
 
ifdef([AC_DIVERSION_ICMDS],[
977
 
  AC_DIVERT_PUSH(AC_DIVERSION_ICMDS)
978
 
      changequote(,)
979
 
      mv -f po/POTFILES po/POTFILES.tmp
980
 
      sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES
981
 
      rm -f po/POTFILES.tmp
982
 
      changequote([,])
983
 
  AC_DIVERT_POP()
984
 
],[
985
 
  ifdef([AC_CONFIG_COMMANDS_PRE],[
986
 
    AC_CONFIG_COMMANDS_PRE([
987
 
        changequote(,)
988
 
        mv -f po/POTFILES po/POTFILES.tmp
989
 
        sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES
990
 
        rm -f po/POTFILES.tmp
991
 
        changequote([,])
992
 
    ])
993
 
  ])
994
 
])
995
 
 
996
 
# Manually sed perl in so people don't have to put the intltool scripts in AC_OUTPUT.
997
 
 
998
 
AC_OUTPUT_COMMANDS([
999
 
 
1000
 
sed -e "s:@INTLTOOL_PERL@:${INTLTOOL_PERL}:;" < ${srcdir}/intltool-extract.in > intltool-extract.out
1001
 
if cmp -s intltool-extract intltool-extract.out 2>/dev/null; then
1002
 
  rm -f intltool-extract.out
1003
 
else
1004
 
  mv -f intltool-extract.out intltool-extract
1005
 
fi
1006
 
chmod ugo+x intltool-extract
1007
 
chmod u+w intltool-extract
1008
 
 
1009
 
sed -e "s:@INTLTOOL_PERL@:${INTLTOOL_PERL}:;" < ${srcdir}/intltool-merge.in > intltool-merge.out
1010
 
if cmp -s intltool-merge intltool-merge.out 2>/dev/null; then
1011
 
  rm -f intltool-merge.out
1012
 
else
1013
 
  mv -f intltool-merge.out intltool-merge
1014
 
fi
1015
 
chmod ugo+x intltool-merge
1016
 
chmod u+w intltool-merge
1017
 
 
1018
 
sed -e "s:@INTLTOOL_PERL@:${INTLTOOL_PERL}:;" < ${srcdir}/intltool-update.in > intltool-update.out
1019
 
if cmp -s intltool-update intltool-update.out 2>/dev/null; then
1020
 
  rm -f intltool-update.out
1021
 
else
1022
 
  mv -f intltool-update.out intltool-update
1023
 
fi
1024
 
chmod ugo+x intltool-update
1025
 
chmod u+w intltool-update
1026
 
 
1027
 
], INTLTOOL_PERL=${INTLTOOL_PERL})
1028
 
 
1029
 
])
1030
 
 
1031
 
# isc-posix.m4 serial 2 (gettext-0.11.2)
1032
 
dnl Copyright (C) 1995-2002 Free Software Foundation, Inc.
1033
 
dnl This file is free software, distributed under the terms of the GNU
1034
 
dnl General Public License.  As a special exception to the GNU General
1035
 
dnl Public License, this file may be distributed as part of a program
1036
 
dnl that contains a configuration script generated by Autoconf, under
1037
 
dnl the same distribution terms as the rest of that program.
1038
 
 
1039
 
# This file is not needed with autoconf-2.53 and newer.  Remove it in 2005.
1040
 
 
1041
 
# This test replaces the one in autoconf.
1042
 
# Currently this macro should have the same name as the autoconf macro
1043
 
# because gettext's gettext.m4 (distributed in the automake package)
1044
 
# still uses it.  Otherwise, the use in gettext.m4 makes autoheader
1045
 
# give these diagnostics:
1046
 
#   configure.in:556: AC_TRY_COMPILE was called before AC_ISC_POSIX
1047
 
#   configure.in:556: AC_TRY_RUN was called before AC_ISC_POSIX
1048
 
 
1049
 
undefine([AC_ISC_POSIX])
1050
 
 
1051
 
AC_DEFUN([AC_ISC_POSIX],
1052
 
  [
1053
 
    dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
1054
 
    AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
1055
 
  ]
1056
 
)
1057
 
 
1058
 
 
1059
 
# Copyright 1996, 1997, 1999, 2000, 2001, 2002  Free Software Foundation, Inc.
1060
 
 
1061
 
# This program is free software; you can redistribute it and/or modify
1062
 
# it under the terms of the GNU General Public License as published by
1063
 
# the Free Software Foundation; either version 2, or (at your option)
1064
 
# any later version.
1065
 
 
1066
 
# This program is distributed in the hope that it will be useful,
1067
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
1068
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1069
 
# GNU General Public License for more details.
1070
 
 
1071
 
# You should have received a copy of the GNU General Public License
1072
 
# along with this program; if not, write to the Free Software
1073
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
1074
 
# 02111-1307, USA.
1075
 
 
1076
 
# serial 2
1077
 
 
1078
 
# @defmac AC_PROG_CC_STDC
1079
 
# @maindex PROG_CC_STDC
1080
 
# @ovindex CC
1081
 
# If the C compiler in not in ANSI C mode by default, try to add an option
1082
 
# to output variable @code{CC} to make it so.  This macro tries various
1083
 
# options that select ANSI C on some system or another.  It considers the
1084
 
# compiler to be in ANSI C mode if it handles function prototypes correctly.
1085
 
#
1086
 
# If you use this macro, you should check after calling it whether the C
1087
 
# compiler has been set to accept ANSI C; if not, the shell variable
1088
 
# @code{am_cv_prog_cc_stdc} is set to @samp{no}.  If you wrote your source
1089
 
# code in ANSI C, you can make an un-ANSIfied copy of it by using the
1090
 
# program @code{ansi2knr}, which comes with Ghostscript.
1091
 
# @end defmac
1092
 
 
1093
 
AC_DEFUN([AM_PROG_CC_STDC],
1094
 
[AC_REQUIRE([AC_PROG_CC])
1095
 
AC_BEFORE([$0], [AC_C_INLINE])
1096
 
AC_BEFORE([$0], [AC_C_CONST])
1097
 
dnl Force this before AC_PROG_CPP.  Some cpp's, eg on HPUX, require
1098
 
dnl a magic option to avoid problems with ANSI preprocessor commands
1099
 
dnl like #elif.
1100
 
dnl FIXME: can't do this because then AC_AIX won't work due to a
1101
 
dnl circular dependency.
1102
 
dnl AC_BEFORE([$0], [AC_PROG_CPP])
1103
 
AC_MSG_CHECKING([for ${CC-cc} option to accept ANSI C])
1104
 
AC_CACHE_VAL(am_cv_prog_cc_stdc,
1105
 
[am_cv_prog_cc_stdc=no
1106
 
ac_save_CC="$CC"
1107
 
# Don't try gcc -ansi; that turns off useful extensions and
1108
 
# breaks some systems' header files.
1109
 
# AIX                   -qlanglvl=ansi
1110
 
# Ultrix and OSF/1      -std1
1111
 
# HP-UX 10.20 and later -Ae
1112
 
# HP-UX older versions  -Aa -D_HPUX_SOURCE
1113
 
# SVR4                  -Xc -D__EXTENSIONS__
1114
 
for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
1115
 
do
1116
 
  CC="$ac_save_CC $ac_arg"
1117
 
  AC_TRY_COMPILE(
1118
 
[#include <stdarg.h>
1119
 
#include <stdio.h>
1120
 
#include <sys/types.h>
1121
 
#include <sys/stat.h>
1122
 
/* Most of the following tests are stolen from RCS 5.7's src/conf.sh.  */
1123
 
struct buf { int x; };
1124
 
FILE * (*rcsopen) (struct buf *, struct stat *, int);
1125
 
static char *e (p, i)
1126
 
     char **p;
1127
 
     int i;
1128
 
{
1129
 
  return p[i];
1130
 
}
1131
 
static char *f (char * (*g) (char **, int), char **p, ...)
1132
 
{
1133
 
  char *s;
1134
 
  va_list v;
1135
 
  va_start (v,p);
1136
 
  s = g (p, va_arg (v,int));
1137
 
  va_end (v);
1138
 
  return s;
1139
 
}
1140
 
int test (int i, double x);
1141
 
struct s1 {int (*f) (int a);};
1142
 
struct s2 {int (*f) (double a);};
1143
 
int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
1144
 
int argc;
1145
 
char **argv;
1146
 
], [
1147
 
return f (e, argv, 0) != argv[0]  ||  f (e, argv, 1) != argv[1];
1148
 
],
1149
 
[am_cv_prog_cc_stdc="$ac_arg"; break])
1150
 
done
1151
 
CC="$ac_save_CC"
1152
 
])
1153
 
if test -z "$am_cv_prog_cc_stdc"; then
1154
 
  AC_MSG_RESULT([none needed])
1155
 
else
1156
 
  AC_MSG_RESULT([$am_cv_prog_cc_stdc])
1157
 
fi
1158
 
case "x$am_cv_prog_cc_stdc" in
1159
 
  x|xno) ;;
1160
 
  *) CC="$CC $am_cv_prog_cc_stdc" ;;
1161
 
esac
1162
 
])
1163
 
 
1164
 
AU_DEFUN([fp_PROG_CC_STDC], [AM_PROG_CC_STDC])
1165
 
 
1166
 
 
1167
 
dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
1168
 
dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
1169
 
dnl also defines GSTUFF_PKG_ERRORS on error
1170
 
AC_DEFUN(PKG_CHECK_MODULES, [
1171
 
  succeeded=no
1172
 
 
1173
 
  if test -z "$PKG_CONFIG"; then
1174
 
    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
1175
 
  fi
1176
 
 
1177
 
  if test "$PKG_CONFIG" = "no" ; then
1178
 
     echo "*** The pkg-config script could not be found. Make sure it is"
1179
 
     echo "*** in your path, or set the PKG_CONFIG environment variable"
1180
 
     echo "*** to the full path to pkg-config."
1181
 
     echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
1182
 
  else
1183
 
     PKG_CONFIG_MIN_VERSION=0.9.0
1184
 
     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
1185
 
        AC_MSG_CHECKING(for $2)
1186
 
 
1187
 
        if $PKG_CONFIG --exists "$2" ; then
1188
 
            AC_MSG_RESULT(yes)
1189
 
            succeeded=yes
1190
 
 
1191
 
            AC_MSG_CHECKING($1_CFLAGS)
1192
 
            $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
1193
 
            AC_MSG_RESULT($$1_CFLAGS)
1194
 
 
1195
 
            AC_MSG_CHECKING($1_LIBS)
1196
 
            $1_LIBS=`$PKG_CONFIG --libs "$2"`
1197
 
            AC_MSG_RESULT($$1_LIBS)
1198
 
        else
1199
 
            $1_CFLAGS=""
1200
 
            $1_LIBS=""
1201
 
            ## If we have a custom action on failure, don't print errors, but 
1202
 
            ## do set a variable so people can do so.
1203
 
            $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
1204
 
            ifelse([$4], ,echo $$1_PKG_ERRORS,)
1205
 
        fi
1206
 
 
1207
 
        AC_SUBST($1_CFLAGS)
1208
 
        AC_SUBST($1_LIBS)
1209
 
     else
1210
 
        echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
1211
 
        echo "*** See http://www.freedesktop.org/software/pkgconfig"
1212
 
     fi
1213
 
  fi
1214
 
 
1215
 
  if test $succeeded = yes; then
1216
 
     ifelse([$3], , :, [$3])
1217
 
  else
1218
 
     ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])
1219
 
  fi
1220
 
])
1221
 
 
1222
 
 
1223
 
 
1224
14
# Copyright (C) 1995-2002 Free Software Foundation, Inc.
1225
 
# Copyright (C) 2001-2003 Red Hat, Inc.
 
15
# Copyright (C) 2001-2003,2004 Red Hat, Inc.
1226
16
#
1227
17
# This file is free software, distributed under the terms of the GNU
1228
18
# General Public License.  As a special exception to the GNU General
1245
35
#
1246
36
# Added better handling of ALL_LINGUAS from GNU gettext version 
1247
37
# written by Bruno Haible, Owen Taylor <otaylor.redhat.com> 5/30/3002
1248
 
 
 
38
#
 
39
# Modified to require ngettext
 
40
# Matthias Clasen <mclasen@redhat.com> 08/06/2004
1249
41
#
1250
42
# We need this here as well, since someone might use autoconf-2.5x
1251
43
# to configure GLib then an older version to configure a package
1322
114
#-----------------
1323
115
glib_DEFUN([GLIB_WITH_NLS],
1324
116
  dnl NLS is obligatory
1325
 
  [USE_NLS=yes
 
117
  [AC_REQUIRE([AC_CANONICAL_HOST])dnl
 
118
    USE_NLS=yes
1326
119
    AC_SUBST(USE_NLS)
1327
120
 
1328
121
    gt_cv_have_gettext=no
1338
131
      #
1339
132
      # First check in libc
1340
133
      #
1341
 
      AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
 
134
      AC_CACHE_CHECK([for ngettext in libc], gt_cv_func_ngettext_libc,
1342
135
        [AC_TRY_LINK([
1343
136
#include <libintl.h>
1344
137
],
1345
 
          [return (int) dgettext ("","")],
1346
 
          gt_cv_func_dgettext_libc=yes,
1347
 
          gt_cv_func_dgettext_libc=no)
 
138
         [return !ngettext ("","", 1)],
 
139
          gt_cv_func_ngettext_libc=yes,
 
140
          gt_cv_func_ngettext_libc=no)
1348
141
        ])
1349
142
  
1350
 
      if test "$gt_cv_func_dgettext_libc" = "yes" ; then
 
143
      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
 
144
              AC_CACHE_CHECK([for dgettext in libc], gt_cv_func_dgettext_libc,
 
145
                [AC_TRY_LINK([
 
146
#include <libintl.h>
 
147
],
 
148
                  [return !dgettext ("","")],
 
149
                  gt_cv_func_dgettext_libc=yes,
 
150
                  gt_cv_func_dgettext_libc=no)
 
151
                ])
 
152
      fi
 
153
  
 
154
      if test "$gt_cv_func_ngettext_libc" = "yes" ; then
1351
155
        AC_CHECK_FUNCS(bind_textdomain_codeset)
1352
156
      fi
1353
157
 
1355
159
      # If we don't have everything we want, check in libintl
1356
160
      #
1357
161
      if test "$gt_cv_func_dgettext_libc" != "yes" \
 
162
         || test "$gt_cv_func_ngettext_libc" != "yes" \
1358
163
         || test "$ac_cv_func_bind_textdomain_codeset" != "yes" ; then
1359
164
        
1360
165
        AC_CHECK_LIB(intl, bindtextdomain,
1361
 
            [AC_CHECK_LIB(intl, dgettext,
1362
 
                          gt_cv_func_dgettext_libintl=yes)])
 
166
            [AC_CHECK_LIB(intl, ngettext,
 
167
                    [AC_CHECK_LIB(intl, dgettext,
 
168
                                  gt_cv_func_dgettext_libintl=yes)])])
1363
169
 
1364
170
        if test "$gt_cv_func_dgettext_libintl" != "yes" ; then
1365
171
          AC_MSG_CHECKING([if -liconv is needed to use gettext])
1366
172
          AC_MSG_RESULT([])
1367
 
          AC_CHECK_LIB(intl, dcgettext,
 
173
          AC_CHECK_LIB(intl, ngettext,
 
174
                [AC_CHECK_LIB(intl, dcgettext,
1368
175
                       [gt_cv_func_dgettext_libintl=yes
1369
176
                        libintl_extra_libs=-liconv],
1370
 
                        :,-liconv)
 
177
                        :,-liconv)],
 
178
                :,-liconv)
1371
179
        fi
1372
180
 
1373
181
        #
1374
182
        # If we found libintl, then check in it for bind_textdomain_codeset();
1375
183
        # we'll prefer libc if neither have bind_textdomain_codeset(),
1376
 
        # and both have dgettext
 
184
        # and both have dgettext and ngettext
1377
185
        #
1378
186
        if test "$gt_cv_func_dgettext_libintl" = "yes" ; then
1379
187
          glib_save_LIBS="$LIBS"
1385
193
          if test "$ac_cv_func_bind_textdomain_codeset" = "yes" ; then
1386
194
            gt_cv_func_dgettext_libc=no
1387
195
          else
1388
 
            if test "$gt_cv_func_dgettext_libc" = "yes"; then
 
196
            if test "$gt_cv_func_dgettext_libc" = "yes" \
 
197
                && test "$gt_cv_func_ngettext_libc" = "yes"; then
1389
198
              gt_cv_func_dgettext_libintl=no
1390
199
            fi
1391
200
          fi
1410
219
          glib_save_LIBS="$LIBS"
1411
220
          LIBS="$LIBS $INTLLIBS"
1412
221
          AC_CHECK_FUNCS(dcgettext)
 
222
          MSGFMT_OPTS=
 
223
          AC_MSG_CHECKING([if msgfmt accepts -c])
 
224
          GLIB_RUN_PROG([msgfmt -c -o /dev/null],[
 
225
msgid ""
 
226
msgstr ""
 
227
"Content-Type: text/plain; charset=UTF-8\n"
 
228
"Project-Id-Version: test 1.0\n"
 
229
"PO-Revision-Date: 2007-02-15 12:01+0100\n"
 
230
"Last-Translator: test <foo@bar.xx>\n"
 
231
"Language-Team: C <LL@li.org>\n"
 
232
"MIME-Version: 1.0\n"
 
233
"Content-Transfer-Encoding: 8bit\n"
 
234
], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
 
235
          AC_SUBST(MSGFMT_OPTS)
1413
236
          AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
1414
237
          GLIB_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
1415
238
            [test -z "`$ac_dir/$ac_word -h 2>&1 | grep '(HELP)'`"], :)
1500
323
# on various variables needed by the Makefile.in.in installed by 
1501
324
# glib-gettextize.
1502
325
dnl
1503
 
glib_DEFUN(GLIB_GNU_GETTEXT,
 
326
glib_DEFUN([GLIB_GNU_GETTEXT],
1504
327
  [AC_REQUIRE([AC_PROG_CC])dnl
1505
328
   AC_REQUIRE([AC_HEADER_STDC])dnl
1506
329
   
1577
400
# -------------------------------
1578
401
# Define VARIABLE to the location where catalog files will
1579
402
# be installed by po/Makefile.
1580
 
glib_DEFUN(GLIB_DEFINE_LOCALEDIR,
 
403
glib_DEFUN([GLIB_DEFINE_LOCALEDIR],
1581
404
[glib_REQUIRE([GLIB_GNU_GETTEXT])dnl
1582
405
glib_save_prefix="$prefix"
1583
406
glib_save_exec_prefix="$exec_prefix"
 
407
glib_save_datarootdir="$datarootdir"
1584
408
test "x$prefix" = xNONE && prefix=$ac_default_prefix
1585
409
test "x$exec_prefix" = xNONE && exec_prefix=$prefix
 
410
datarootdir=`eval echo "${datarootdir}"`
1586
411
if test "x$CATOBJEXT" = "x.mo" ; then
1587
412
  localedir=`eval echo "${libdir}/locale"`
1588
413
else
1590
415
fi
1591
416
prefix="$glib_save_prefix"
1592
417
exec_prefix="$glib_save_exec_prefix"
 
418
datarootdir="$glib_save_datarootdir"
1593
419
AC_DEFINE_UNQUOTED($1, "$localedir",
1594
420
  [Define the location where the catalogs will be installed])
1595
421
])
1598
424
dnl Now the definitions that aclocal will find
1599
425
dnl
1600
426
ifdef(glib_configure_in,[],[
1601
 
AC_DEFUN(AM_GLIB_GNU_GETTEXT,[GLIB_GNU_GETTEXT($@)])
1602
 
AC_DEFUN(AM_GLIB_DEFINE_LOCALEDIR,[GLIB_DEFINE_LOCALEDIR($@)])
1603
 
])dnl
 
427
AC_DEFUN([AM_GLIB_GNU_GETTEXT],[GLIB_GNU_GETTEXT($@)])
 
428
AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR],[GLIB_DEFINE_LOCALEDIR($@)])
 
429
])dnl
 
430
 
 
431
# GLIB_RUN_PROG(PROGRAM, TEST-FILE, [ACTION-IF-PASS], [ACTION-IF-FAIL])
 
432
 
433
# Create a temporary file with TEST-FILE as its contents and pass the
 
434
# file name to PROGRAM.  Perform ACTION-IF-PASS if PROGRAM exits with
 
435
# 0 and perform ACTION-IF-FAIL for any other exit status.
 
436
AC_DEFUN([GLIB_RUN_PROG],
 
437
[cat >conftest.foo <<_ACEOF
 
438
$2
 
439
_ACEOF
 
440
if AC_RUN_LOG([$1 conftest.foo]); then
 
441
  m4_ifval([$3], [$3], [:])
 
442
m4_ifvaln([$4], [else $4])dnl
 
443
echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD
 
444
sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD
 
445
fi])
 
446
 
 
447
 
 
448
 
 
449
dnl IT_PROG_INTLTOOL([MINIMUM-VERSION], [no-xml])
 
450
# serial 35 IT_PROG_INTLTOOL
 
451
AC_DEFUN([IT_PROG_INTLTOOL],
 
452
[AC_PREREQ([2.50])dnl
 
453
 
 
454
case "$am__api_version" in
 
455
    1.[01234])
 
456
        AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
 
457
    ;;
 
458
    *)
 
459
    ;;
 
460
esac
 
461
 
 
462
if test -n "$1"; then
 
463
    AC_MSG_CHECKING(for intltool >= $1)
 
464
 
 
465
    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
 
466
    INTLTOOL_APPLIED_VERSION=`awk -F\" '/\\$VERSION / { print $ 2; }' ${ac_aux_dir}/intltool-update.in`
 
467
    [INTLTOOL_APPLIED_VERSION_AS_INT=`awk -F\" '/\\$VERSION / { split($ 2, VERSION, "."); print VERSION[1] * 1000 + VERSION[2] * 100 + VERSION[3];}' ${ac_aux_dir}/intltool-update.in`
 
468
    ]
 
469
    AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
 
470
    test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
 
471
        AC_MSG_ERROR([Your intltool is too old.  You need intltool $1 or later.])
 
472
fi
 
473
 
 
474
  INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
475
INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
476
     INTLTOOL_KEYS_RULE='%.keys:      %.keys.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
477
     INTLTOOL_PROP_RULE='%.prop:      %.prop.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
478
      INTLTOOL_OAF_RULE='%.oaf:       %.oaf.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
 
479
     INTLTOOL_PONG_RULE='%.pong:      %.pong.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
480
   INTLTOOL_SERVER_RULE='%.server:    %.server.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
481
    INTLTOOL_SHEET_RULE='%.sheet:     %.sheet.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
482
INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
483
       INTLTOOL_UI_RULE='%.ui:        %.ui.in        $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
484
      INTLTOOL_XML_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
485
      INTLTOOL_XML_NOMERGE_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' 
 
486
      INTLTOOL_XAM_RULE='%.xam:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
487
      INTLTOOL_KBD_RULE='%.kbd:       %.kbd.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
488
    INTLTOOL_CAVES_RULE='%.caves:     %.caves.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
489
  INTLTOOL_SCHEMAS_RULE='%.schemas:   %.schemas.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
490
    INTLTOOL_THEME_RULE='%.theme:     %.theme.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@' 
 
491
    INTLTOOL_SERVICE_RULE='%.service: %.service.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
 
492
 
 
493
AC_SUBST(INTLTOOL_DESKTOP_RULE)
 
494
AC_SUBST(INTLTOOL_DIRECTORY_RULE)
 
495
AC_SUBST(INTLTOOL_KEYS_RULE)
 
496
AC_SUBST(INTLTOOL_PROP_RULE)
 
497
AC_SUBST(INTLTOOL_OAF_RULE)
 
498
AC_SUBST(INTLTOOL_PONG_RULE)
 
499
AC_SUBST(INTLTOOL_SERVER_RULE)
 
500
AC_SUBST(INTLTOOL_SHEET_RULE)
 
501
AC_SUBST(INTLTOOL_SOUNDLIST_RULE)
 
502
AC_SUBST(INTLTOOL_UI_RULE)
 
503
AC_SUBST(INTLTOOL_XAM_RULE)
 
504
AC_SUBST(INTLTOOL_KBD_RULE)
 
505
AC_SUBST(INTLTOOL_XML_RULE)
 
506
AC_SUBST(INTLTOOL_XML_NOMERGE_RULE)
 
507
AC_SUBST(INTLTOOL_CAVES_RULE)
 
508
AC_SUBST(INTLTOOL_SCHEMAS_RULE)
 
509
AC_SUBST(INTLTOOL_THEME_RULE)
 
510
AC_SUBST(INTLTOOL_SERVICE_RULE)
 
511
 
 
512
# Use the tools built into the package, not the ones that are installed.
 
513
AC_SUBST(INTLTOOL_EXTRACT, '$(top_builddir)/intltool-extract')
 
514
AC_SUBST(INTLTOOL_MERGE, '$(top_builddir)/intltool-merge')
 
515
AC_SUBST(INTLTOOL_UPDATE, '$(top_builddir)/intltool-update')
 
516
 
 
517
AC_PATH_PROG(INTLTOOL_PERL, perl)
 
518
if test -z "$INTLTOOL_PERL"; then
 
519
   AC_MSG_ERROR([perl not found; required for intltool])
 
520
fi
 
521
if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then
 
522
   AC_MSG_ERROR([perl 5.x required for intltool])
 
523
fi
 
524
if test "x$2" != "xno-xml"; then
 
525
   AC_MSG_CHECKING([for XML::Parser])
 
526
   if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
 
527
       AC_MSG_RESULT([ok])
 
528
   else
 
529
       AC_MSG_ERROR([XML::Parser perl module is required for intltool])
 
530
   fi
 
531
fi
 
532
 
 
533
AC_PATH_PROG(INTLTOOL_ICONV, iconv, iconv)
 
534
AC_PATH_PROG(INTLTOOL_MSGFMT, msgfmt, msgfmt)
 
535
AC_PATH_PROG(INTLTOOL_MSGMERGE, msgmerge, msgmerge)
 
536
AC_PATH_PROG(INTLTOOL_XGETTEXT, xgettext, xgettext)
 
537
 
 
538
# Substitute ALL_LINGUAS so we can use it in po/Makefile
 
539
AC_SUBST(ALL_LINGUAS)
 
540
 
 
541
# Set DATADIRNAME correctly if it is not set yet
 
542
# (copied from glib-gettext.m4)
 
543
if test -z "$DATADIRNAME"; then
 
544
  AC_TRY_LINK(, [extern int _nl_msg_cat_cntr;
 
545
                 return _nl_msg_cat_cntr],
 
546
    [DATADIRNAME=share],
 
547
    [case $host in
 
548
    *-*-solaris*)
 
549
    dnl On Solaris, if bind_textdomain_codeset is in libc,
 
550
    dnl GNU format message catalog is always supported,
 
551
    dnl since both are added to the libc all together.
 
552
    dnl Hence, we'd like to go with DATADIRNAME=share
 
553
    dnl in this case.
 
554
    AC_CHECK_FUNC(bind_textdomain_codeset,
 
555
      [DATADIRNAME=share], [DATADIRNAME=lib])
 
556
    ;;
 
557
    *)
 
558
    [DATADIRNAME=lib]
 
559
    ;;
 
560
    esac])
 
561
fi
 
562
AC_SUBST(DATADIRNAME)
 
563
 
 
564
IT_PO_SUBDIR([po])
 
565
 
 
566
dnl The following is very similar to
 
567
dnl
 
568
dnl     AC_CONFIG_FILES([intltool-extract intltool-merge intltool-update])
 
569
dnl
 
570
dnl with the following slight differences:
 
571
dnl  - the *.in files are in ac_aux_dir,
 
572
dnl  - if the file haven't changed upon reconfigure, it's not touched,
 
573
dnl  - the evaluation of the third parameter enables a hack which computes
 
574
dnl    the actual value of $libdir,
 
575
dnl  - the user sees "executing intltool commands", instead of
 
576
dnl    "creating intltool-extract" and such.
 
577
dnl
 
578
dnl Nothing crucial here, and we could use AC_CONFIG_FILES, if there were
 
579
dnl a reason for it.
 
580
 
 
581
AC_CONFIG_COMMANDS([intltool], [
 
582
 
 
583
for file in intltool-extract intltool-merge intltool-update; do
 
584
  sed -e "s|@INTLTOOL_EXTRACT@|`pwd`/intltool-extract|g" \
 
585
      -e "s|@INTLTOOL_LIBDIR@|${INTLTOOL_LIBDIR}|g" \
 
586
      -e "s|@INTLTOOL_ICONV@|${INTLTOOL_ICONV}|g" \
 
587
      -e "s|@INTLTOOL_MSGFMT@|${INTLTOOL_MSGFMT}|g" \
 
588
      -e "s|@INTLTOOL_MSGMERGE@|${INTLTOOL_MSGMERGE}|g" \
 
589
      -e "s|@INTLTOOL_XGETTEXT@|${INTLTOOL_XGETTEXT}|g" \
 
590
      -e "s|@INTLTOOL_PERL@|${INTLTOOL_PERL}|g" \
 
591
        < ${ac_aux_dir}/${file}.in > ${file}.out
 
592
  if cmp -s ${file} ${file}.out 2>/dev/null; then
 
593
    rm -f ${file}.out
 
594
  else
 
595
    mv -f ${file}.out ${file}
 
596
  fi
 
597
  chmod ugo+x ${file}
 
598
  chmod u+w ${file}
 
599
done
 
600
 
 
601
],
 
602
[INTLTOOL_PERL='${INTLTOOL_PERL}' ac_aux_dir='${ac_aux_dir}'
 
603
prefix="$prefix" exec_prefix="$exec_prefix" INTLTOOL_LIBDIR="$libdir" 
 
604
INTLTOOL_EXTRACT='${INTLTOOL_EXTRACT}' INTLTOOL_ICONV='${INTLTOOL_ICONV}'
 
605
INTLTOOL_MSGFMT='${INTLTOOL_MSGFMT}' INTLTOOL_MSGMERGE='${INTLTOOL_MSGMERGE}'
 
606
INTLTOOL_XGETTEXT='${INTLTOOL_XGETTEXT}'])
 
607
 
 
608
])
 
609
 
 
610
 
 
611
# IT_PO_SUBDIR(DIRNAME)
 
612
# ---------------------
 
613
# All po subdirs have to be declared with this macro; the subdir "po" is
 
614
# declared by IT_PROG_INTLTOOL.
 
615
#
 
616
AC_DEFUN([IT_PO_SUBDIR],
 
617
[AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
 
618
dnl
 
619
dnl The following CONFIG_COMMANDS should be exetuted at the very end
 
620
dnl of config.status.
 
621
AC_CONFIG_COMMANDS_PRE([
 
622
  AC_CONFIG_COMMANDS([$1/stamp-it], [
 
623
    rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
 
624
    >"$1/stamp-it.tmp"
 
625
    [sed '/^#/d
 
626
         s/^[[].*] *//
 
627
         /^[    ]*$/d
 
628
        '"s|^|  $ac_top_srcdir/|" \
 
629
      "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
 
630
    ]
 
631
    if test ! -f "$1/Makefile"; then
 
632
      AC_MSG_ERROR([$1/Makefile is not ready.])
 
633
    fi
 
634
    mv "$1/Makefile" "$1/Makefile.tmp"
 
635
    [sed '/^POTFILES =/,/[^\\]$/ {
 
636
                /^POTFILES =/!d
 
637
                r $1/POTFILES
 
638
          }
 
639
         ' "$1/Makefile.tmp" >"$1/Makefile"]
 
640
    rm -f "$1/Makefile.tmp"
 
641
    mv "$1/stamp-it.tmp" "$1/stamp-it"
 
642
  ])
 
643
])dnl
 
644
])
 
645
 
 
646
 
 
647
# deprecated macros
 
648
AU_ALIAS([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL])
 
649
# A hint is needed for aclocal from Automake <= 1.9.4:
 
650
# AC_DEFUN([AC_PROG_INTLTOOL], ...)
 
651
 
 
652
 
 
653
# pkg.m4 - Macros to locate and utilise pkg-config.            -*- Autoconf -*-
 
654
 
655
# Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
 
656
#
 
657
# This program is free software; you can redistribute it and/or modify
 
658
# it under the terms of the GNU General Public License as published by
 
659
# the Free Software Foundation; either version 2 of the License, or
 
660
# (at your option) any later version.
 
661
#
 
662
# This program is distributed in the hope that it will be useful, but
 
663
# WITHOUT ANY WARRANTY; without even the implied warranty of
 
664
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
665
# General Public License for more details.
 
666
#
 
667
# You should have received a copy of the GNU General Public License
 
668
# along with this program; if not, write to the Free Software
 
669
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
670
#
 
671
# As a special exception to the GNU General Public License, if you
 
672
# distribute this file as part of a program that contains a
 
673
# configuration script generated by Autoconf, you may include it under
 
674
# the same distribution terms that you use for the rest of that program.
 
675
 
 
676
# PKG_PROG_PKG_CONFIG([MIN-VERSION])
 
677
# ----------------------------------
 
678
AC_DEFUN([PKG_PROG_PKG_CONFIG],
 
679
[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
 
680
m4_pattern_allow([^PKG_CONFIG(_PATH)?$])
 
681
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl
 
682
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
 
683
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
 
684
fi
 
685
if test -n "$PKG_CONFIG"; then
 
686
        _pkg_min_version=m4_default([$1], [0.9.0])
 
687
        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
 
688
        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
 
689
                AC_MSG_RESULT([yes])
 
690
        else
 
691
                AC_MSG_RESULT([no])
 
692
                PKG_CONFIG=""
 
693
        fi
 
694
                
 
695
fi[]dnl
 
696
])# PKG_PROG_PKG_CONFIG
 
697
 
 
698
# PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
 
699
#
 
700
# Check to see whether a particular set of modules exists.  Similar
 
701
# to PKG_CHECK_MODULES(), but does not set variables or print errors.
 
702
#
 
703
#
 
704
# Similar to PKG_CHECK_MODULES, make sure that the first instance of
 
705
# this or PKG_CHECK_MODULES is called, or make sure to call
 
706
# PKG_CHECK_EXISTS manually
 
707
# --------------------------------------------------------------
 
708
AC_DEFUN([PKG_CHECK_EXISTS],
 
709
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
710
if test -n "$PKG_CONFIG" && \
 
711
    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
 
712
  m4_ifval([$2], [$2], [:])
 
713
m4_ifvaln([$3], [else
 
714
  $3])dnl
 
715
fi])
 
716
 
 
717
 
 
718
# _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
 
719
# ---------------------------------------------
 
720
m4_define([_PKG_CONFIG],
 
721
[if test -n "$PKG_CONFIG"; then
 
722
    if test -n "$$1"; then
 
723
        pkg_cv_[]$1="$$1"
 
724
    else
 
725
        PKG_CHECK_EXISTS([$3],
 
726
                         [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`],
 
727
                         [pkg_failed=yes])
 
728
    fi
 
729
else
 
730
        pkg_failed=untried
 
731
fi[]dnl
 
732
])# _PKG_CONFIG
 
733
 
 
734
# _PKG_SHORT_ERRORS_SUPPORTED
 
735
# -----------------------------
 
736
AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
 
737
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
 
738
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
 
739
        _pkg_short_errors_supported=yes
 
740
else
 
741
        _pkg_short_errors_supported=no
 
742
fi[]dnl
 
743
])# _PKG_SHORT_ERRORS_SUPPORTED
 
744
 
 
745
 
 
746
# PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
 
747
# [ACTION-IF-NOT-FOUND])
 
748
#
 
749
#
 
750
# Note that if there is a possibility the first call to
 
751
# PKG_CHECK_MODULES might not happen, you should be sure to include an
 
752
# explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
 
753
#
 
754
#
 
755
# --------------------------------------------------------------
 
756
AC_DEFUN([PKG_CHECK_MODULES],
 
757
[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
 
758
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
 
759
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
 
760
 
 
761
pkg_failed=no
 
762
AC_MSG_CHECKING([for $1])
 
763
 
 
764
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
 
765
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
 
766
 
 
767
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
 
768
and $1[]_LIBS to avoid the need to call pkg-config.
 
769
See the pkg-config man page for more details.])
 
770
 
 
771
if test $pkg_failed = yes; then
 
772
        _PKG_SHORT_ERRORS_SUPPORTED
 
773
        if test $_pkg_short_errors_supported = yes; then
 
774
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"`
 
775
        else 
 
776
                $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
 
777
        fi
 
778
        # Put the nasty error message in config.log where it belongs
 
779
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
 
780
 
 
781
        ifelse([$4], , [AC_MSG_ERROR(dnl
 
782
[Package requirements ($2) were not met:
 
783
 
 
784
$$1_PKG_ERRORS
 
785
 
 
786
Consider adjusting the PKG_CONFIG_PATH environment variable if you
 
787
installed software in a non-standard prefix.
 
788
 
 
789
_PKG_TEXT
 
790
])],
 
791
                [AC_MSG_RESULT([no])
 
792
                $4])
 
793
elif test $pkg_failed = untried; then
 
794
        ifelse([$4], , [AC_MSG_FAILURE(dnl
 
795
[The pkg-config script could not be found or is too old.  Make sure it
 
796
is in your PATH or set the PKG_CONFIG environment variable to the full
 
797
path to pkg-config.
 
798
 
 
799
_PKG_TEXT
 
800
 
 
801
To get pkg-config, see <http://www.freedesktop.org/software/pkgconfig>.])],
 
802
                [$4])
 
803
else
 
804
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
 
805
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
 
806
        AC_MSG_RESULT([yes])
 
807
        ifelse([$3], , :, [$3])
 
808
fi[]dnl
 
809
])# PKG_CHECK_MODULES
 
810
 
 
811
# Copyright (C) 2002, 2003, 2005  Free Software Foundation, Inc.
 
812
#
 
813
# This file is free software; the Free Software Foundation
 
814
# gives unlimited permission to copy and/or distribute it,
 
815
# with or without modifications, as long as this notice is preserved.
 
816
 
 
817
# AM_AUTOMAKE_VERSION(VERSION)
 
818
# ----------------------------
 
819
# Automake X.Y traces this macro to ensure aclocal.m4 has been
 
820
# generated from the m4 files accompanying Automake X.Y.
 
821
AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
 
822
 
 
823
# AM_SET_CURRENT_AUTOMAKE_VERSION
 
824
# -------------------------------
 
825
# Call AM_AUTOMAKE_VERSION so it can be traced.
 
826
# This function is AC_REQUIREd by AC_INIT_AUTOMAKE.
 
827
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
 
828
         [AM_AUTOMAKE_VERSION([1.9.6])])
 
829
 
 
830
# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
 
831
 
 
832
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
833
#
 
834
# This file is free software; the Free Software Foundation
 
835
# gives unlimited permission to copy and/or distribute it,
 
836
# with or without modifications, as long as this notice is preserved.
 
837
 
 
838
# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
 
839
# $ac_aux_dir to `$srcdir/foo'.  In other projects, it is set to
 
840
# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
 
841
#
 
842
# Of course, Automake must honor this variable whenever it calls a
 
843
# tool from the auxiliary directory.  The problem is that $srcdir (and
 
844
# therefore $ac_aux_dir as well) can be either absolute or relative,
 
845
# depending on how configure is run.  This is pretty annoying, since
 
846
# it makes $ac_aux_dir quite unusable in subdirectories: in the top
 
847
# source directory, any form will work fine, but in subdirectories a
 
848
# relative path needs to be adjusted first.
 
849
#
 
850
# $ac_aux_dir/missing
 
851
#    fails when called from a subdirectory if $ac_aux_dir is relative
 
852
# $top_srcdir/$ac_aux_dir/missing
 
853
#    fails if $ac_aux_dir is absolute,
 
854
#    fails when called from a subdirectory in a VPATH build with
 
855
#          a relative $ac_aux_dir
 
856
#
 
857
# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
 
858
# are both prefixed by $srcdir.  In an in-source build this is usually
 
859
# harmless because $srcdir is `.', but things will broke when you
 
860
# start a VPATH build or use an absolute $srcdir.
 
861
#
 
862
# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
 
863
# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
 
864
#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
 
865
# and then we would define $MISSING as
 
866
#   MISSING="\${SHELL} $am_aux_dir/missing"
 
867
# This will work as long as MISSING is not called from configure, because
 
868
# unfortunately $(top_srcdir) has no meaning in configure.
 
869
# However there are other variables, like CC, which are often used in
 
870
# configure, and could therefore not use this "fixed" $ac_aux_dir.
 
871
#
 
872
# Another solution, used here, is to always expand $ac_aux_dir to an
 
873
# absolute PATH.  The drawback is that using absolute paths prevent a
 
874
# configured tree to be moved without reconfiguration.
 
875
 
 
876
AC_DEFUN([AM_AUX_DIR_EXPAND],
 
877
[dnl Rely on autoconf to set up CDPATH properly.
 
878
AC_PREREQ([2.50])dnl
 
879
# expand $ac_aux_dir to an absolute path
 
880
am_aux_dir=`cd $ac_aux_dir && pwd`
 
881
])
 
882
 
 
883
 
 
884
# Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005
 
885
# Free Software Foundation, Inc.
 
886
#
 
887
# This file is free software; the Free Software Foundation
 
888
# gives unlimited permission to copy and/or distribute it,
 
889
# with or without modifications, as long as this notice is preserved.
 
890
 
 
891
# serial 4
 
892
 
 
893
# This was merged into AC_PROG_CC in Autoconf.
 
894
 
 
895
AU_DEFUN([AM_PROG_CC_STDC],
 
896
[AC_PROG_CC
 
897
AC_DIAGNOSE([obsolete], [$0:
 
898
        your code should no longer depend upon `am_cv_prog_cc_stdc', but upon
 
899
        `ac_cv_prog_cc_stdc'.  Remove this warning and the assignment when
 
900
        you adjust the code.  You can also remove the above call to
 
901
        AC_PROG_CC if you already called it elsewhere.])
 
902
am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc
 
903
])
 
904
AU_DEFUN([fp_PROG_CC_STDC])
 
905
 
 
906
# AM_CONDITIONAL                                            -*- Autoconf -*-
 
907
 
 
908
# Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005
 
909
# Free Software Foundation, Inc.
 
910
#
 
911
# This file is free software; the Free Software Foundation
 
912
# gives unlimited permission to copy and/or distribute it,
 
913
# with or without modifications, as long as this notice is preserved.
 
914
 
 
915
# serial 7
 
916
 
 
917
# AM_CONDITIONAL(NAME, SHELL-CONDITION)
 
918
# -------------------------------------
 
919
# Define a conditional.
 
920
AC_DEFUN([AM_CONDITIONAL],
 
921
[AC_PREREQ(2.52)dnl
 
922
 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
 
923
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
 
924
AC_SUBST([$1_TRUE])
 
925
AC_SUBST([$1_FALSE])
 
926
if $2; then
 
927
  $1_TRUE=
 
928
  $1_FALSE='#'
 
929
else
 
930
  $1_TRUE='#'
 
931
  $1_FALSE=
 
932
fi
 
933
AC_CONFIG_COMMANDS_PRE(
 
934
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
 
935
  AC_MSG_ERROR([[conditional "$1" was never defined.
 
936
Usually this means the macro was only invoked conditionally.]])
 
937
fi])])
 
938
 
 
939
 
 
940
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
941
# Free Software Foundation, Inc.
 
942
#
 
943
# This file is free software; the Free Software Foundation
 
944
# gives unlimited permission to copy and/or distribute it,
 
945
# with or without modifications, as long as this notice is preserved.
 
946
 
 
947
# serial 8
 
948
 
 
949
# There are a few dirty hacks below to avoid letting `AC_PROG_CC' be
 
950
# written in clear, in which case automake, when reading aclocal.m4,
 
951
# will think it sees a *use*, and therefore will trigger all it's
 
952
# C support machinery.  Also note that it means that autoscan, seeing
 
953
# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
 
954
 
 
955
 
 
956
# _AM_DEPENDENCIES(NAME)
 
957
# ----------------------
 
958
# See how the compiler implements dependency checking.
 
959
# NAME is "CC", "CXX", "GCJ", or "OBJC".
 
960
# We try a few techniques and use that to set a single cache variable.
 
961
#
 
962
# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
 
963
# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
 
964
# dependency, and given that the user is not expected to run this macro,
 
965
# just rely on AC_PROG_CC.
 
966
AC_DEFUN([_AM_DEPENDENCIES],
 
967
[AC_REQUIRE([AM_SET_DEPDIR])dnl
 
968
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
 
969
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
 
970
AC_REQUIRE([AM_DEP_TRACK])dnl
 
971
 
 
972
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
 
973
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
 
974
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
 
975
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
 
976
                   [depcc="$$1"   am_compiler_list=])
 
977
 
 
978
AC_CACHE_CHECK([dependency style of $depcc],
 
979
               [am_cv_$1_dependencies_compiler_type],
 
980
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
 
981
  # We make a subdir and do the tests there.  Otherwise we can end up
 
982
  # making bogus files that we don't know about and never remove.  For
 
983
  # instance it was reported that on HP-UX the gcc test will end up
 
984
  # making a dummy file named `D' -- because `-MD' means `put the output
 
985
  # in D'.
 
986
  mkdir conftest.dir
 
987
  # Copy depcomp to subdir because otherwise we won't find it if we're
 
988
  # using a relative directory.
 
989
  cp "$am_depcomp" conftest.dir
 
990
  cd conftest.dir
 
991
  # We will build objects and dependencies in a subdirectory because
 
992
  # it helps to detect inapplicable dependency modes.  For instance
 
993
  # both Tru64's cc and ICC support -MD to output dependencies as a
 
994
  # side effect of compilation, but ICC will put the dependencies in
 
995
  # the current directory while Tru64 will put them in the object
 
996
  # directory.
 
997
  mkdir sub
 
998
 
 
999
  am_cv_$1_dependencies_compiler_type=none
 
1000
  if test "$am_compiler_list" = ""; then
 
1001
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
 
1002
  fi
 
1003
  for depmode in $am_compiler_list; do
 
1004
    # Setup a source with many dependencies, because some compilers
 
1005
    # like to wrap large dependency lists on column 80 (with \), and
 
1006
    # we should not choose a depcomp mode which is confused by this.
 
1007
    #
 
1008
    # We need to recreate these files for each test, as the compiler may
 
1009
    # overwrite some of them when testing with obscure command lines.
 
1010
    # This happens at least with the AIX C compiler.
 
1011
    : > sub/conftest.c
 
1012
    for i in 1 2 3 4 5 6; do
 
1013
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
 
1014
      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
 
1015
      # Solaris 8's {/usr,}/bin/sh.
 
1016
      touch sub/conftst$i.h
 
1017
    done
 
1018
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
 
1019
 
 
1020
    case $depmode in
 
1021
    nosideeffect)
 
1022
      # after this tag, mechanisms are not by side-effect, so they'll
 
1023
      # only be used when explicitly requested
 
1024
      if test "x$enable_dependency_tracking" = xyes; then
 
1025
        continue
 
1026
      else
 
1027
        break
 
1028
      fi
 
1029
      ;;
 
1030
    none) break ;;
 
1031
    esac
 
1032
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
 
1033
    # mode.  It turns out that the SunPro C++ compiler does not properly
 
1034
    # handle `-M -o', and we need to detect this.
 
1035
    if depmode=$depmode \
 
1036
       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
 
1037
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
 
1038
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
 
1039
         >/dev/null 2>conftest.err &&
 
1040
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
 
1041
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
 
1042
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
 
1043
      # icc doesn't choke on unknown options, it will just issue warnings
 
1044
      # or remarks (even with -Werror).  So we grep stderr for any message
 
1045
      # that says an option was ignored or not supported.
 
1046
      # When given -MP, icc 7.0 and 7.1 complain thusly:
 
1047
      #   icc: Command line warning: ignoring option '-M'; no argument required
 
1048
      # The diagnosis changed in icc 8.0:
 
1049
      #   icc: Command line remark: option '-MP' not supported
 
1050
      if (grep 'ignoring option' conftest.err ||
 
1051
          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
 
1052
        am_cv_$1_dependencies_compiler_type=$depmode
 
1053
        break
 
1054
      fi
 
1055
    fi
 
1056
  done
 
1057
 
 
1058
  cd ..
 
1059
  rm -rf conftest.dir
 
1060
else
 
1061
  am_cv_$1_dependencies_compiler_type=none
 
1062
fi
 
1063
])
 
1064
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
 
1065
AM_CONDITIONAL([am__fastdep$1], [
 
1066
  test "x$enable_dependency_tracking" != xno \
 
1067
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
 
1068
])
 
1069
 
 
1070
 
 
1071
# AM_SET_DEPDIR
 
1072
# -------------
 
1073
# Choose a directory name for dependency files.
 
1074
# This macro is AC_REQUIREd in _AM_DEPENDENCIES
 
1075
AC_DEFUN([AM_SET_DEPDIR],
 
1076
[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
1077
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
 
1078
])
 
1079
 
 
1080
 
 
1081
# AM_DEP_TRACK
 
1082
# ------------
 
1083
AC_DEFUN([AM_DEP_TRACK],
 
1084
[AC_ARG_ENABLE(dependency-tracking,
 
1085
[  --disable-dependency-tracking  speeds up one-time build
 
1086
  --enable-dependency-tracking   do not reject slow dependency extractors])
 
1087
if test "x$enable_dependency_tracking" != xno; then
 
1088
  am_depcomp="$ac_aux_dir/depcomp"
 
1089
  AMDEPBACKSLASH='\'
 
1090
fi
 
1091
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
 
1092
AC_SUBST([AMDEPBACKSLASH])
 
1093
])
 
1094
 
 
1095
# Generate code to set up dependency tracking.              -*- Autoconf -*-
 
1096
 
 
1097
# Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
1098
# Free Software Foundation, Inc.
 
1099
#
 
1100
# This file is free software; the Free Software Foundation
 
1101
# gives unlimited permission to copy and/or distribute it,
 
1102
# with or without modifications, as long as this notice is preserved.
 
1103
 
 
1104
#serial 3
 
1105
 
 
1106
# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
1107
# ------------------------------
 
1108
AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
 
1109
[for mf in $CONFIG_FILES; do
 
1110
  # Strip MF so we end up with the name of the file.
 
1111
  mf=`echo "$mf" | sed -e 's/:.*$//'`
 
1112
  # Check whether this is an Automake generated Makefile or not.
 
1113
  # We used to match only the files named `Makefile.in', but
 
1114
  # some people rename them; so instead we look at the file content.
 
1115
  # Grep'ing the first line is not enough: some people post-process
 
1116
  # each Makefile.in and add a new line on top of each file to say so.
 
1117
  # So let's grep whole file.
 
1118
  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
 
1119
    dirpart=`AS_DIRNAME("$mf")`
 
1120
  else
 
1121
    continue
 
1122
  fi
 
1123
  # Extract the definition of DEPDIR, am__include, and am__quote
 
1124
  # from the Makefile without running `make'.
 
1125
  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
 
1126
  test -z "$DEPDIR" && continue
 
1127
  am__include=`sed -n 's/^am__include = //p' < "$mf"`
 
1128
  test -z "am__include" && continue
 
1129
  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
 
1130
  # When using ansi2knr, U may be empty or an underscore; expand it
 
1131
  U=`sed -n 's/^U = //p' < "$mf"`
 
1132
  # Find all dependency output files, they are included files with
 
1133
  # $(DEPDIR) in their names.  We invoke sed twice because it is the
 
1134
  # simplest approach to changing $(DEPDIR) to its actual value in the
 
1135
  # expansion.
 
1136
  for file in `sed -n "
 
1137
    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
 
1138
       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
 
1139
    # Make sure the directory exists.
 
1140
    test -f "$dirpart/$file" && continue
 
1141
    fdir=`AS_DIRNAME(["$file"])`
 
1142
    AS_MKDIR_P([$dirpart/$fdir])
 
1143
    # echo "creating $dirpart/$file"
 
1144
    echo '# dummy' > "$dirpart/$file"
 
1145
  done
 
1146
done
 
1147
])# _AM_OUTPUT_DEPENDENCY_COMMANDS
 
1148
 
 
1149
 
 
1150
# AM_OUTPUT_DEPENDENCY_COMMANDS
 
1151
# -----------------------------
 
1152
# This macro should only be invoked once -- use via AC_REQUIRE.
 
1153
#
 
1154
# This code is only required when automatic dependency tracking
 
1155
# is enabled.  FIXME.  This creates each `.P' file that we will
 
1156
# need in order to bootstrap the dependency handling code.
 
1157
AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
 
1158
[AC_CONFIG_COMMANDS([depfiles],
 
1159
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
 
1160
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
 
1161
])
 
1162
 
 
1163
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
1164
# Free Software Foundation, Inc.
 
1165
#
 
1166
# This file is free software; the Free Software Foundation
 
1167
# gives unlimited permission to copy and/or distribute it,
 
1168
# with or without modifications, as long as this notice is preserved.
 
1169
 
 
1170
# serial 8
 
1171
 
 
1172
# AM_CONFIG_HEADER is obsolete.  It has been replaced by AC_CONFIG_HEADERS.
 
1173
AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
 
1174
 
 
1175
# Do all the work for Automake.                             -*- Autoconf -*-
 
1176
 
 
1177
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
 
1178
# Free Software Foundation, Inc.
 
1179
#
 
1180
# This file is free software; the Free Software Foundation
 
1181
# gives unlimited permission to copy and/or distribute it,
 
1182
# with or without modifications, as long as this notice is preserved.
 
1183
 
 
1184
# serial 12
 
1185
 
 
1186
# This macro actually does too much.  Some checks are only needed if
 
1187
# your package does certain things.  But this isn't really a big deal.
 
1188
 
 
1189
# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
 
1190
# AM_INIT_AUTOMAKE([OPTIONS])
 
1191
# -----------------------------------------------
 
1192
# The call with PACKAGE and VERSION arguments is the old style
 
1193
# call (pre autoconf-2.50), which is being phased out.  PACKAGE
 
1194
# and VERSION should now be passed to AC_INIT and removed from
 
1195
# the call to AM_INIT_AUTOMAKE.
 
1196
# We support both call styles for the transition.  After
 
1197
# the next Automake release, Autoconf can make the AC_INIT
 
1198
# arguments mandatory, and then we can depend on a new Autoconf
 
1199
# release and drop the old call support.
 
1200
AC_DEFUN([AM_INIT_AUTOMAKE],
 
1201
[AC_PREREQ([2.58])dnl
 
1202
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
 
1203
dnl the ones we care about.
 
1204
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
 
1205
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
 
1206
AC_REQUIRE([AC_PROG_INSTALL])dnl
 
1207
# test to see if srcdir already configured
 
1208
if test "`cd $srcdir && pwd`" != "`pwd`" &&
 
1209
   test -f $srcdir/config.status; then
 
1210
  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
 
1211
fi
 
1212
 
 
1213
# test whether we have cygpath
 
1214
if test -z "$CYGPATH_W"; then
 
1215
  if (cygpath --version) >/dev/null 2>/dev/null; then
 
1216
    CYGPATH_W='cygpath -w'
 
1217
  else
 
1218
    CYGPATH_W=echo
 
1219
  fi
 
1220
fi
 
1221
AC_SUBST([CYGPATH_W])
 
1222
 
 
1223
# Define the identity of the package.
 
1224
dnl Distinguish between old-style and new-style calls.
 
1225
m4_ifval([$2],
 
1226
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
 
1227
 AC_SUBST([PACKAGE], [$1])dnl
 
1228
 AC_SUBST([VERSION], [$2])],
 
1229
[_AM_SET_OPTIONS([$1])dnl
 
1230
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
 
1231
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
 
1232
 
 
1233
_AM_IF_OPTION([no-define],,
 
1234
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
 
1235
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
 
1236
 
 
1237
# Some tools Automake needs.
 
1238
AC_REQUIRE([AM_SANITY_CHECK])dnl
 
1239
AC_REQUIRE([AC_ARG_PROGRAM])dnl
 
1240
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
 
1241
AM_MISSING_PROG(AUTOCONF, autoconf)
 
1242
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
 
1243
AM_MISSING_PROG(AUTOHEADER, autoheader)
 
1244
AM_MISSING_PROG(MAKEINFO, makeinfo)
 
1245
AM_PROG_INSTALL_SH
 
1246
AM_PROG_INSTALL_STRIP
 
1247
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
 
1248
# We need awk for the "check" target.  The system "awk" is bad on
 
1249
# some platforms.
 
1250
AC_REQUIRE([AC_PROG_AWK])dnl
 
1251
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
 
1252
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
 
1253
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
 
1254
              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
 
1255
                             [_AM_PROG_TAR([v7])])])
 
1256
_AM_IF_OPTION([no-dependencies],,
 
1257
[AC_PROVIDE_IFELSE([AC_PROG_CC],
 
1258
                  [_AM_DEPENDENCIES(CC)],
 
1259
                  [define([AC_PROG_CC],
 
1260
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
 
1261
AC_PROVIDE_IFELSE([AC_PROG_CXX],
 
1262
                  [_AM_DEPENDENCIES(CXX)],
 
1263
                  [define([AC_PROG_CXX],
 
1264
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
 
1265
])
 
1266
])
 
1267
 
 
1268
 
 
1269
# When config.status generates a header, we must update the stamp-h file.
 
1270
# This file resides in the same directory as the config header
 
1271
# that is generated.  The stamp files are numbered to have different names.
 
1272
 
 
1273
# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
 
1274
# loop where config.status creates the headers, so we can generate
 
1275
# our stamp files there.
 
1276
AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
 
1277
[# Compute $1's index in $config_headers.
 
1278
_am_stamp_count=1
 
1279
for _am_header in $config_headers :; do
 
1280
  case $_am_header in
 
1281
    $1 | $1:* )
 
1282
      break ;;
 
1283
    * )
 
1284
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
 
1285
  esac
 
1286
done
 
1287
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
 
1288
 
 
1289
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
1290
#
 
1291
# This file is free software; the Free Software Foundation
 
1292
# gives unlimited permission to copy and/or distribute it,
 
1293
# with or without modifications, as long as this notice is preserved.
 
1294
 
 
1295
# AM_PROG_INSTALL_SH
 
1296
# ------------------
 
1297
# Define $install_sh.
 
1298
AC_DEFUN([AM_PROG_INSTALL_SH],
 
1299
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
1300
install_sh=${install_sh-"$am_aux_dir/install-sh"}
 
1301
AC_SUBST(install_sh)])
 
1302
 
 
1303
# Copyright (C) 2003, 2005  Free Software Foundation, Inc.
 
1304
#
 
1305
# This file is free software; the Free Software Foundation
 
1306
# gives unlimited permission to copy and/or distribute it,
 
1307
# with or without modifications, as long as this notice is preserved.
 
1308
 
 
1309
# serial 2
 
1310
 
 
1311
# Check whether the underlying file-system supports filenames
 
1312
# with a leading dot.  For instance MS-DOS doesn't.
 
1313
AC_DEFUN([AM_SET_LEADING_DOT],
 
1314
[rm -rf .tst 2>/dev/null
 
1315
mkdir .tst 2>/dev/null
 
1316
if test -d .tst; then
 
1317
  am__leading_dot=.
 
1318
else
 
1319
  am__leading_dot=_
 
1320
fi
 
1321
rmdir .tst 2>/dev/null
 
1322
AC_SUBST([am__leading_dot])])
 
1323
 
 
1324
# Add --enable-maintainer-mode option to configure.         -*- Autoconf -*-
 
1325
# From Jim Meyering
 
1326
 
 
1327
# Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005
 
1328
# Free Software Foundation, Inc.
 
1329
#
 
1330
# This file is free software; the Free Software Foundation
 
1331
# gives unlimited permission to copy and/or distribute it,
 
1332
# with or without modifications, as long as this notice is preserved.
 
1333
 
 
1334
# serial 4
 
1335
 
 
1336
AC_DEFUN([AM_MAINTAINER_MODE],
 
1337
[AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
 
1338
  dnl maintainer-mode is disabled by default
 
1339
  AC_ARG_ENABLE(maintainer-mode,
 
1340
[  --enable-maintainer-mode  enable make rules and dependencies not useful
 
1341
                          (and sometimes confusing) to the casual installer],
 
1342
      USE_MAINTAINER_MODE=$enableval,
 
1343
      USE_MAINTAINER_MODE=no)
 
1344
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
 
1345
  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
 
1346
  MAINT=$MAINTAINER_MODE_TRUE
 
1347
  AC_SUBST(MAINT)dnl
 
1348
]
 
1349
)
 
1350
 
 
1351
AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
 
1352
 
 
1353
# Check to see how 'make' treats includes.                  -*- Autoconf -*-
 
1354
 
 
1355
# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
 
1356
#
 
1357
# This file is free software; the Free Software Foundation
 
1358
# gives unlimited permission to copy and/or distribute it,
 
1359
# with or without modifications, as long as this notice is preserved.
 
1360
 
 
1361
# serial 3
 
1362
 
 
1363
# AM_MAKE_INCLUDE()
 
1364
# -----------------
 
1365
# Check to see how make treats includes.
 
1366
AC_DEFUN([AM_MAKE_INCLUDE],
 
1367
[am_make=${MAKE-make}
 
1368
cat > confinc << 'END'
 
1369
am__doit:
 
1370
        @echo done
 
1371
.PHONY: am__doit
 
1372
END
 
1373
# If we don't find an include directive, just comment out the code.
 
1374
AC_MSG_CHECKING([for style of include used by $am_make])
 
1375
am__include="#"
 
1376
am__quote=
 
1377
_am_result=none
 
1378
# First try GNU make style include.
 
1379
echo "include confinc" > confmf
 
1380
# We grep out `Entering directory' and `Leaving directory'
 
1381
# messages which can occur if `w' ends up in MAKEFLAGS.
 
1382
# In particular we don't look at `^make:' because GNU make might
 
1383
# be invoked under some other name (usually "gmake"), in which
 
1384
# case it prints its new name instead of `make'.
 
1385
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
 
1386
   am__include=include
 
1387
   am__quote=
 
1388
   _am_result=GNU
 
1389
fi
 
1390
# Now try BSD make style include.
 
1391
if test "$am__include" = "#"; then
 
1392
   echo '.include "confinc"' > confmf
 
1393
   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
 
1394
      am__include=.include
 
1395
      am__quote="\""
 
1396
      _am_result=BSD
 
1397
   fi
 
1398
fi
 
1399
AC_SUBST([am__include])
 
1400
AC_SUBST([am__quote])
 
1401
AC_MSG_RESULT([$_am_result])
 
1402
rm -f confinc confmf
 
1403
])
 
1404
 
 
1405
# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
 
1406
 
 
1407
# Copyright (C) 1997, 1999, 2000, 2001, 2003, 2005
 
1408
# Free Software Foundation, Inc.
 
1409
#
 
1410
# This file is free software; the Free Software Foundation
 
1411
# gives unlimited permission to copy and/or distribute it,
 
1412
# with or without modifications, as long as this notice is preserved.
 
1413
 
 
1414
# serial 4
 
1415
 
 
1416
# AM_MISSING_PROG(NAME, PROGRAM)
 
1417
# ------------------------------
 
1418
AC_DEFUN([AM_MISSING_PROG],
 
1419
[AC_REQUIRE([AM_MISSING_HAS_RUN])
 
1420
$1=${$1-"${am_missing_run}$2"}
 
1421
AC_SUBST($1)])
 
1422
 
 
1423
 
 
1424
# AM_MISSING_HAS_RUN
 
1425
# ------------------
 
1426
# Define MISSING if not defined so far and test if it supports --run.
 
1427
# If it does, set am_missing_run to use it, otherwise, to nothing.
 
1428
AC_DEFUN([AM_MISSING_HAS_RUN],
 
1429
[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
 
1430
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
 
1431
# Use eval to expand $SHELL
 
1432
if eval "$MISSING --run true"; then
 
1433
  am_missing_run="$MISSING --run "
 
1434
else
 
1435
  am_missing_run=
 
1436
  AC_MSG_WARN([`missing' script is too old or missing])
 
1437
fi
 
1438
])
 
1439
 
 
1440
# Copyright (C) 2003, 2004, 2005  Free Software Foundation, Inc.
 
1441
#
 
1442
# This file is free software; the Free Software Foundation
 
1443
# gives unlimited permission to copy and/or distribute it,
 
1444
# with or without modifications, as long as this notice is preserved.
 
1445
 
 
1446
# AM_PROG_MKDIR_P
 
1447
# ---------------
 
1448
# Check whether `mkdir -p' is supported, fallback to mkinstalldirs otherwise.
 
1449
#
 
1450
# Automake 1.8 used `mkdir -m 0755 -p --' to ensure that directories
 
1451
# created by `make install' are always world readable, even if the
 
1452
# installer happens to have an overly restrictive umask (e.g. 077).
 
1453
# This was a mistake.  There are at least two reasons why we must not
 
1454
# use `-m 0755':
 
1455
#   - it causes special bits like SGID to be ignored,
 
1456
#   - it may be too restrictive (some setups expect 775 directories).
 
1457
#
 
1458
# Do not use -m 0755 and let people choose whatever they expect by
 
1459
# setting umask.
 
1460
#
 
1461
# We cannot accept any implementation of `mkdir' that recognizes `-p'.
 
1462
# Some implementations (such as Solaris 8's) are not thread-safe: if a
 
1463
# parallel make tries to run `mkdir -p a/b' and `mkdir -p a/c'
 
1464
# concurrently, both version can detect that a/ is missing, but only
 
1465
# one can create it and the other will error out.  Consequently we
 
1466
# restrict ourselves to GNU make (using the --version option ensures
 
1467
# this.)
 
1468
AC_DEFUN([AM_PROG_MKDIR_P],
 
1469
[if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
 
1470
  # We used to keeping the `.' as first argument, in order to
 
1471
  # allow $(mkdir_p) to be used without argument.  As in
 
1472
  #   $(mkdir_p) $(somedir)
 
1473
  # where $(somedir) is conditionally defined.  However this is wrong
 
1474
  # for two reasons:
 
1475
  #  1. if the package is installed by a user who cannot write `.'
 
1476
  #     make install will fail,
 
1477
  #  2. the above comment should most certainly read
 
1478
  #     $(mkdir_p) $(DESTDIR)$(somedir)
 
1479
  #     so it does not work when $(somedir) is undefined and
 
1480
  #     $(DESTDIR) is not.
 
1481
  #  To support the latter case, we have to write
 
1482
  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
 
1483
  #  so the `.' trick is pointless.
 
1484
  mkdir_p='mkdir -p --'
 
1485
else
 
1486
  # On NextStep and OpenStep, the `mkdir' command does not
 
1487
  # recognize any option.  It will interpret all options as
 
1488
  # directories to create, and then abort because `.' already
 
1489
  # exists.
 
1490
  for d in ./-p ./--version;
 
1491
  do
 
1492
    test -d $d && rmdir $d
 
1493
  done
 
1494
  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
 
1495
  if test -f "$ac_aux_dir/mkinstalldirs"; then
 
1496
    mkdir_p='$(mkinstalldirs)'
 
1497
  else
 
1498
    mkdir_p='$(install_sh) -d'
 
1499
  fi
 
1500
fi
 
1501
AC_SUBST([mkdir_p])])
 
1502
 
 
1503
# Helper functions for option handling.                     -*- Autoconf -*-
 
1504
 
 
1505
# Copyright (C) 2001, 2002, 2003, 2005  Free Software Foundation, Inc.
 
1506
#
 
1507
# This file is free software; the Free Software Foundation
 
1508
# gives unlimited permission to copy and/or distribute it,
 
1509
# with or without modifications, as long as this notice is preserved.
 
1510
 
 
1511
# serial 3
 
1512
 
 
1513
# _AM_MANGLE_OPTION(NAME)
 
1514
# -----------------------
 
1515
AC_DEFUN([_AM_MANGLE_OPTION],
 
1516
[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
 
1517
 
 
1518
# _AM_SET_OPTION(NAME)
 
1519
# ------------------------------
 
1520
# Set option NAME.  Presently that only means defining a flag for this option.
 
1521
AC_DEFUN([_AM_SET_OPTION],
 
1522
[m4_define(_AM_MANGLE_OPTION([$1]), 1)])
 
1523
 
 
1524
# _AM_SET_OPTIONS(OPTIONS)
 
1525
# ----------------------------------
 
1526
# OPTIONS is a space-separated list of Automake options.
 
1527
AC_DEFUN([_AM_SET_OPTIONS],
 
1528
[AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
 
1529
 
 
1530
# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
 
1531
# -------------------------------------------
 
1532
# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
 
1533
AC_DEFUN([_AM_IF_OPTION],
 
1534
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
 
1535
 
 
1536
# Check to make sure that the build environment is sane.    -*- Autoconf -*-
 
1537
 
 
1538
# Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005
 
1539
# Free Software Foundation, Inc.
 
1540
#
 
1541
# This file is free software; the Free Software Foundation
 
1542
# gives unlimited permission to copy and/or distribute it,
 
1543
# with or without modifications, as long as this notice is preserved.
 
1544
 
 
1545
# serial 4
 
1546
 
 
1547
# AM_SANITY_CHECK
 
1548
# ---------------
 
1549
AC_DEFUN([AM_SANITY_CHECK],
 
1550
[AC_MSG_CHECKING([whether build environment is sane])
 
1551
# Just in case
 
1552
sleep 1
 
1553
echo timestamp > conftest.file
 
1554
# Do `set' in a subshell so we don't clobber the current shell's
 
1555
# arguments.  Must try -L first in case configure is actually a
 
1556
# symlink; some systems play weird games with the mod time of symlinks
 
1557
# (eg FreeBSD returns the mod time of the symlink's containing
 
1558
# directory).
 
1559
if (
 
1560
   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
 
1561
   if test "$[*]" = "X"; then
 
1562
      # -L didn't work.
 
1563
      set X `ls -t $srcdir/configure conftest.file`
 
1564
   fi
 
1565
   rm -f conftest.file
 
1566
   if test "$[*]" != "X $srcdir/configure conftest.file" \
 
1567
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
 
1568
 
 
1569
      # If neither matched, then we have a broken ls.  This can happen
 
1570
      # if, for instance, CONFIG_SHELL is bash and it inherits a
 
1571
      # broken ls alias from the environment.  This has actually
 
1572
      # happened.  Such a system could not be considered "sane".
 
1573
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
 
1574
alias in your environment])
 
1575
   fi
 
1576
 
 
1577
   test "$[2]" = conftest.file
 
1578
   )
 
1579
then
 
1580
   # Ok.
 
1581
   :
 
1582
else
 
1583
   AC_MSG_ERROR([newly created file is older than distributed files!
 
1584
Check your system clock])
 
1585
fi
 
1586
AC_MSG_RESULT(yes)])
 
1587
 
 
1588
# Copyright (C) 2001, 2003, 2005  Free Software Foundation, Inc.
 
1589
#
 
1590
# This file is free software; the Free Software Foundation
 
1591
# gives unlimited permission to copy and/or distribute it,
 
1592
# with or without modifications, as long as this notice is preserved.
 
1593
 
 
1594
# AM_PROG_INSTALL_STRIP
 
1595
# ---------------------
 
1596
# One issue with vendor `install' (even GNU) is that you can't
 
1597
# specify the program used to strip binaries.  This is especially
 
1598
# annoying in cross-compiling environments, where the build's strip
 
1599
# is unlikely to handle the host's binaries.
 
1600
# Fortunately install-sh will honor a STRIPPROG variable, so we
 
1601
# always use install-sh in `make install-strip', and initialize
 
1602
# STRIPPROG with the value of the STRIP variable (set by the user).
 
1603
AC_DEFUN([AM_PROG_INSTALL_STRIP],
 
1604
[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
 
1605
# Installed binaries are usually stripped using `strip' when the user
 
1606
# run `make install-strip'.  However `strip' might not be the right
 
1607
# tool to use in cross-compilation environments, therefore Automake
 
1608
# will honor the `STRIP' environment variable to overrule this program.
 
1609
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
 
1610
if test "$cross_compiling" != no; then
 
1611
  AC_CHECK_TOOL([STRIP], [strip], :)
 
1612
fi
 
1613
INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
 
1614
AC_SUBST([INSTALL_STRIP_PROGRAM])])
 
1615
 
 
1616
# Check how to create a tarball.                            -*- Autoconf -*-
 
1617
 
 
1618
# Copyright (C) 2004, 2005  Free Software Foundation, Inc.
 
1619
#
 
1620
# This file is free software; the Free Software Foundation
 
1621
# gives unlimited permission to copy and/or distribute it,
 
1622
# with or without modifications, as long as this notice is preserved.
 
1623
 
 
1624
# serial 2
 
1625
 
 
1626
# _AM_PROG_TAR(FORMAT)
 
1627
# --------------------
 
1628
# Check how to create a tarball in format FORMAT.
 
1629
# FORMAT should be one of `v7', `ustar', or `pax'.
 
1630
#
 
1631
# Substitute a variable $(am__tar) that is a command
 
1632
# writing to stdout a FORMAT-tarball containing the directory
 
1633
# $tardir.
 
1634
#     tardir=directory && $(am__tar) > result.tar
 
1635
#
 
1636
# Substitute a variable $(am__untar) that extract such
 
1637
# a tarball read from stdin.
 
1638
#     $(am__untar) < result.tar
 
1639
AC_DEFUN([_AM_PROG_TAR],
 
1640
[# Always define AMTAR for backward compatibility.
 
1641
AM_MISSING_PROG([AMTAR], [tar])
 
1642
m4_if([$1], [v7],
 
1643
     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
 
1644
     [m4_case([$1], [ustar],, [pax],,
 
1645
              [m4_fatal([Unknown tar format])])
 
1646
AC_MSG_CHECKING([how to create a $1 tar archive])
 
1647
# Loop over all known methods to create a tar archive until one works.
 
1648
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
 
1649
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
 
1650
# Do not fold the above two line into one, because Tru64 sh and
 
1651
# Solaris sh will not grok spaces in the rhs of `-'.
 
1652
for _am_tool in $_am_tools
 
1653
do
 
1654
  case $_am_tool in
 
1655
  gnutar)
 
1656
    for _am_tar in tar gnutar gtar;
 
1657
    do
 
1658
      AM_RUN_LOG([$_am_tar --version]) && break
 
1659
    done
 
1660
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
 
1661
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
 
1662
    am__untar="$_am_tar -xf -"
 
1663
    ;;
 
1664
  plaintar)
 
1665
    # Must skip GNU tar: if it does not support --format= it doesn't create
 
1666
    # ustar tarball either.
 
1667
    (tar --version) >/dev/null 2>&1 && continue
 
1668
    am__tar='tar chf - "$$tardir"'
 
1669
    am__tar_='tar chf - "$tardir"'
 
1670
    am__untar='tar xf -'
 
1671
    ;;
 
1672
  pax)
 
1673
    am__tar='pax -L -x $1 -w "$$tardir"'
 
1674
    am__tar_='pax -L -x $1 -w "$tardir"'
 
1675
    am__untar='pax -r'
 
1676
    ;;
 
1677
  cpio)
 
1678
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
 
1679
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
 
1680
    am__untar='cpio -i -H $1 -d'
 
1681
    ;;
 
1682
  none)
 
1683
    am__tar=false
 
1684
    am__tar_=false
 
1685
    am__untar=false
 
1686
    ;;
 
1687
  esac
 
1688
 
 
1689
  # If the value was cached, stop now.  We just wanted to have am__tar
 
1690
  # and am__untar set.
 
1691
  test -n "${am_cv_prog_tar_$1}" && break
 
1692
 
 
1693
  # tar/untar a dummy directory, and stop if the command works
 
1694
  rm -rf conftest.dir
 
1695
  mkdir conftest.dir
 
1696
  echo GrepMe > conftest.dir/file
 
1697
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
 
1698
  rm -rf conftest.dir
 
1699
  if test -s conftest.tar; then
 
1700
    AM_RUN_LOG([$am__untar <conftest.tar])
 
1701
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
 
1702
  fi
 
1703
done
 
1704
rm -rf conftest.dir
 
1705
 
 
1706
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
 
1707
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
 
1708
AC_SUBST([am__tar])
 
1709
AC_SUBST([am__untar])
 
1710
]) # _AM_PROG_TAR
1604
1711