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], [0]) 7AC_CONFIG_SRCDIR([hello.c]) 8AM_INIT_AUTOMAKE([1.11]) 9 10AC_PROG_CC 11AC_CHECK_HEADERS([unistd.h]) 12AM_GNU_GETTEXT([external]) 13AM_GNU_GETTEXT_VERSION([0.21]) 14 15AC_CONFIG_FILES([Makefile]) 16AC_CONFIG_FILES([m4/Makefile]) 17AC_CONFIG_FILES([po/Makefile.in]) 18AC_OUTPUT 19