• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-guile/
1dnl Example for use of GNU gettext.
2dnl This file is in the public domain.
3dnl
4dnl Configuration file - processed by autoconf.
5
6AC_INIT
7AC_CONFIG_SRCDIR(hello.scm)
8AM_INIT_AUTOMAKE(hello-guile, 0)
9
10dnl Check for availability of the guile interpreter.
11AC_PATH_PROG(GUILE, guile)
12if test -z "$GUILE"; then
13  echo "*** Essential program guile not found" 1>&2
14  exit 1
15fi
16AC_SUBST(GUILE)
17
18dnl The installed program must know where to find its message catalogs.
19dnl Unfortunately, prefix gets only finally determined at the end of configure.
20if test "X$prefix" = "XNONE"; then
21  final_prefix="$ac_default_prefix"
22else
23  final_prefix="$prefix"
24fi
25save_prefix="$prefix"
26prefix="$final_prefix"
27eval "datarootdir=\"${datarootdir}\""
28eval "localedir=\"${datadir}/locale\""
29prefix="$save_prefix"
30AC_SUBST(localedir)
31
32dnl Support for the po directory.
33AM_PO_SUBDIRS
34
35AC_CONFIG_FILES([Makefile])
36AC_CONFIG_FILES([hello:hello.scm], [chmod a+x hello])
37AC_CONFIG_FILES([m4/Makefile])
38AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
39AC_OUTPUT
40