• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/examples/hello-c-gnome/
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.c)
8AM_INIT_AUTOMAKE(hello-c-gnome, 0)
9
10AC_PROG_CC
11GNOME_INIT
12AC_CHECK_HEADERS([unistd.h])
13AM_GNU_GETTEXT([external])
14AM_GNU_GETTEXT_VERSION(0.15)
15
16AC_CONFIG_FILES([Makefile])
17AC_CONFIG_FILES([m4/Makefile])
18AC_CONFIG_FILES([po/Makefile.in])
19AC_OUTPUT
20