Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-c / configure.ac
blobce35685ab159d6ca82c7dfd75dfcb1d270c71c65
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.
6 AC_INIT
7 AC_CONFIG_SRCDIR(hello.c)
8 AM_INIT_AUTOMAKE(hello-c, 0)
10 AC_PROG_CC
11 AC_CHECK_HEADERS([unistd.h])
12 AM_GNU_GETTEXT([external])
13 AM_GNU_GETTEXT_VERSION(0.15)
15 AC_CONFIG_FILES([Makefile])
16 AC_CONFIG_FILES([m4/Makefile])
17 AC_CONFIG_FILES([po/Makefile.in])
18 AC_OUTPUT