• 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-perl/
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-1.pl.in)
8AM_INIT_AUTOMAKE(hello-perl, 0)
9
10dnl Check for availability of the Perl interpreter.
11AC_PATH_PROG(PERL, perl)
12if test -z "$PERL"; then
13  echo "*** Essential program perl not found" 1>&2
14  exit 1
15fi
16AC_SUBST(PERL)
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-1:hello-1.pl.in], [chmod a+x hello-1])
37AC_CONFIG_FILES([hello-2:hello-2.pl.in], [chmod a+x hello-2])
38AC_CONFIG_FILES([m4/Makefile])
39AC_CONFIG_FILES([po/Makefile], [AM_POSTPROCESS_PO_MAKEFILE])
40AC_OUTPUT
41