xref: /netbsd-src/external/gpl2/gettext/dist/gettext-tools/examples/hello-c-gnome/configure.ac (revision 946379e7b37692fc43f68eb0d1c10daa0a7f3b6c)
1dnl Example for use of GNU gettext.
2dnl Copyright (C) 2003-2004, 2006 Free Software Foundation, Inc.
3dnl This file is in the public domain.
4dnl
5dnl Configuration file - processed by autoconf.
6
7AC_INIT
8AC_CONFIG_SRCDIR(hello.c)
9AM_INIT_AUTOMAKE(hello-c-gnome, 0)
10
11AC_PROG_CC
12GNOME_INIT
13AC_CHECK_HEADERS([unistd.h])
14AM_GNU_GETTEXT([external])
15AM_GNU_GETTEXT_VERSION(0.15)
16
17AC_CONFIG_FILES([Makefile])
18AC_CONFIG_FILES([m4/Makefile])
19AC_CONFIG_FILES([po/Makefile.in])
20AC_OUTPUT
21