Install gettext-0.18.1.1.tar.gz
[msysgit.git] / mingw / share / doc / gettext / examples / hello-c++ / configure.ac
blob999937ebd6c80452c73a8ca9f7089d0a09b83c50
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.cc)
8 AM_INIT_AUTOMAKE(hello-c++, 0)
10 AC_PROG_CXX
11 AC_CHECK_HEADERS([unistd.h])
12 AM_GNU_GETTEXT([external])
13 AM_GNU_GETTEXT_VERSION(0.15)
14 AC_LIB_LINKFLAGS([asprintf])
16 AC_CONFIG_FILES([Makefile])
17 AC_CONFIG_FILES([m4/Makefile])
18 AC_CONFIG_FILES([po/Makefile.in])
19 AC_OUTPUT