1dnl Configuration for the toplevel directory of GNU gettext
2dnl Copyright (C) 1995-1999, 2000-2003, 2005-2006 Free Software Foundation, Inc.
3dnl
4dnl This program is free software: you can redistribute it and/or modify
5dnl it under the terms of the GNU General Public License as published by
6dnl the Free Software Foundation; either version 3 of the License, or
7dnl (at your option) any later version.
8dnl
9dnl This program is distributed in the hope that it will be useful,
10dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12dnl GNU General Public License for more details.
13dnl
14dnl You should have received a copy of the GNU General Public License
15dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17dnl Process this file with autoconf to produce a configure script.
18
19AC_PREREQ(2.57)
20AC_INIT
21AC_CONFIG_SRCDIR(gettext-tools/src/msgfmt.c)
22AC_CONFIG_AUX_DIR(build-aux)
23. $srcdir/version.sh
24AM_INIT_AUTOMAKE(gettext, $VERSION_NUMBER)
25
26dnl Override automake's tar command used for creating distributions.
27am__tar='${AMTAR} chof - --owner=root --group=root "$$tardir"'
28
29dnl Checks for programs.
30
31dnl Checks for libraries.
32
33dnl Checks for header files.
34
35dnl Checks for typedefs, structures, and compiler characteristics.
36
37dnl Checks for library functions.
38
39AC_CONFIG_SUBDIRS(autoconf-lib-link gettext-runtime gettext-tools)
40
41dnl Ensure that "configure --help" lists all the command line options that
42dnl are usable with the subdir configures. Really AC_CONFIG_SUBDIRS should
43dnl do it by itself.
44dnl System types:
45AC_CANONICAL_HOST
46dnl Optional Features: AC_ARG_ENABLE calls
47dnl Optional Packages: AC_ARG_WITH calls
48dnl Some influential environment variables: AC_ARG_VAR calls
49esyscmd([{ cd autoconf-lib-link && autoconf --trace=AC_ARG_ENABLE:'$n([$1],[$2])' --trace=AC_ARG_WITH:'$n([$1],[$2])' --trace=AC_ARG_VAR:'$n($@)' && cd ..; cd gettext-runtime && autoconf --trace=AC_ARG_ENABLE:'$n([$1],[$2])' --trace=AC_ARG_WITH:'$n([$1],[$2])' --trace=AC_ARG_VAR:'$n($@)' && cd ..; cd gettext-tools && autoconf --trace=AC_ARG_ENABLE:'$n([$1],[$2])' --trace=AC_ARG_WITH:'$n([$1],[$2])' --trace=AC_ARG_VAR:'$n($@)' && cd ..; } | sed -f build-aux/ac-help.sed ])
50
51AC_CONFIG_FILES([Makefile])
52
53AC_CONFIG_FILES([gnulib-local/Makefile])
54
55AC_OUTPUT
56