• 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++-gnome], [0], , [hello-c++-gnome])
7AC_CONFIG_SRCDIR([hello.cc])
8AM_INIT_AUTOMAKE([1.11])
9
10AC_PROG_CXX
11
12GNOME_INIT
13GTKMM_CFLAGS=`gtkmm-config --cflags`
14AC_SUBST([GTKMM_CFLAGS])
15GTKMM_LIBS=`gtkmm-config --libs`
16AC_SUBST([GTKMM_LIBS])
17
18AC_CHECK_HEADERS([unistd.h])
19AM_GNU_GETTEXT([external])
20AM_GNU_GETTEXT_VERSION([0.21])
21
22AC_CONFIG_FILES([Makefile])
23AC_CONFIG_FILES([m4/Makefile])
24AC_CONFIG_FILES([po/Makefile.in])
25AC_OUTPUT
26