1dnl Example for use of GNU gettext.
2dnl Copyright (C) 2003 Free Software Foundation, Inc.
3dnl This file is in the public domain.
4dnl
5dnl Configuration file - processed by autoconf.
6
7AC_INIT
8AC_CONFIG_SRCDIR(hello.tcl)
9AM_INIT_AUTOMAKE(hello-tcl, 0)
10
11dnl Check for availability of the Tcl interpreter.
12AC_PATH_PROG(TCLSH, tclsh)
13if test -z "$TCLSH"; then
14  echo "*** Essential program tclsh not found" 1>&2
15  exit 1
16fi
17AC_SUBST(TCLSH)
18
19dnl The installed program must know where to find its message catalogs.
20dnl Unfortunately, prefix gets only finally determined at the end of configure.
21if test "X$prefix" = "XNONE"; then
22  final_prefix="$ac_default_prefix"
23else
24  final_prefix="$prefix"
25fi
26save_prefix="$prefix"
27prefix="$final_prefix"
28eval "pkgdatadir=\"${datadir}/${PACKAGE}\""
29prefix="$save_prefix"
30AC_SUBST(pkgdatadir)
31
32dnl Support for the po directory.
33AM_PO_SUBDIRS
34
35AC_CONFIG_FILES([Makefile])
36AC_CONFIG_FILES([hello:hello.tcl], [chmod a+x hello])
37AC_CONFIG_FILES([m4/Makefile])
38AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
39AC_OUTPUT
40