• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-librep/
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.jl.in)
8AM_INIT_AUTOMAKE(hello-librep, 0)
9
10dnl Check for availability of the librep interpreter.
11AC_PATH_PROG(REP, rep)
12if test -z "$REP"; then
13  echo "*** Essential program rep not found" 1>&2
14  exit 1
15fi
16AC_SUBST(REP)
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 hello.jl])
36AC_CONFIG_FILES([m4/Makefile])
37AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
38AC_OUTPUT
39