*** empty log message ***
[automake.git] / configure.in
blob7d9a4ddc41c8b4b959ad2e9994c9befa571a145f
1 dnl Process this file with autoconf to produce a configure script.
2 AC_INIT(dist.am)
3 dnl we use this for gettext
4 AC_CONFIG_HEADER(config.h)
6 PACKAGE=automake
7 AC_SUBST(PACKAGE)
8 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
9 VERSION=0.21
10 AC_SUBST(VERSION)
11 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
12 ALL_LINGUAS=
14 AC_ARG_PROGRAM
15 fp_PROG_INSTALL
17 AC_PATH_PROG(PERL, perl)
18 if test -z "$PERL"; then
19    echo "fatal error: perl not found" 1>&2
20    exit 1
23 dnl
24 dnl NLS configuration.
25 dnl
27 ud_GNU_GETTEXT
28 AC_LINK_FILES($nls_cv_header_libgt, $nls_cv_header_intl)
30 dnl
31 dnl End of NLS configuration.
32 dnl
35 AC_OUTPUT([Makefile automake intl/Makefile po/Makefile.in],
36 [sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile])