• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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([hello-c++], [0], , [hello-c++])
7AC_CONFIG_SRCDIR([hello.cc])
8AM_INIT_AUTOMAKE([1.11])
9
10AC_PROG_CXX
11AC_CHECK_HEADERS([unistd.h])
12AM_GNU_GETTEXT([external])
13AM_GNU_GETTEXT_VERSION([0.21])
14AC_LIB_LINKFLAGS([asprintf])
15
16AC_CONFIG_FILES([Makefile])
17AC_CONFIG_FILES([m4/Makefile])
18AC_CONFIG_FILES([po/Makefile.in])
19AC_OUTPUT
20