Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / examples / hello-c-gnome / configure.ac
1 dnl Example for use of GNU gettext.
2 dnl This file is in the public domain.
3 dnl
4 dnl Configuration file - processed by autoconf.
5
6 AC_INIT
7 AC_CONFIG_SRCDIR(hello.c)
8 AM_INIT_AUTOMAKE(hello-c-gnome, 0)
9
10 AC_PROG_CC
11 GNOME_INIT
12 AC_CHECK_HEADERS([unistd.h])
13 AM_GNU_GETTEXT([external])
14 AM_GNU_GETTEXT_VERSION(0.15)
15
16 AC_CONFIG_FILES([Makefile])
17 AC_CONFIG_FILES([m4/Makefile])
18 AC_CONFIG_FILES([po/Makefile.in])
19 AC_OUTPUT