• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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-objc], [0])
7AC_CONFIG_SRCDIR([hello.m])
8AM_INIT_AUTOMAKE([1.11])
9
10AC_PROG_CC
11AC_SUBST([OBJC], ["$CC"])
12AC_CHECK_HEADERS([unistd.h])
13AM_GNU_GETTEXT([external])
14AM_GNU_GETTEXT_VERSION([0.21])
15
16AC_CONFIG_FILES([Makefile])
17AC_CONFIG_FILES([m4/Makefile])
18AC_CONFIG_FILES([po/Makefile.in])
19AC_OUTPUT
20