Imported Upstream version 0.19.7
[platform/upstream/gettext.git] / gettext-tools / examples / hello-c / 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, 0)
9
10 AC_PROG_CC
11 AC_CHECK_HEADERS([unistd.h])
12 AM_GNU_GETTEXT([external])
13 AM_GNU_GETTEXT_VERSION(0.15)
14
15 AC_CONFIG_FILES([Makefile])
16 AC_CONFIG_FILES([m4/Makefile])
17 AC_CONFIG_FILES([po/Makefile.in])
18 AC_OUTPUT