1: dnl Process this file with autoconf to produce a configure script.
2: dnl
3: dnl This file is free software; as a special exception the author gives
4: dnl unlimited permission to copy and/or distribute it, with or without
5: dnl modifications, as long as this notice is preserved.
6: dnl
7: dnl This program is distributed in the hope that it will be useful, but
8: dnl WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
9: dnl implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10:
11: AC_INIT([GNU Hello], [2.3], [bug-hello@gnu.org])
12:
13: dnl Must come before AM_INIT_AUTOMAKE.
14: AC_CONFIG_AUX_DIR([build-aux])
15: AM_INIT_AUTOMAKE([dist-bzip2 readme-alpha])
16:
17:
18: AC_PREREQ(2.60)
19:
20:
21: AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
22: AC_CONFIG_SRCDIR([src/hello.c])
23:
24: dnl Checks for programs.
25:
26: AC_PROG_CC
27:
28:
29:
30:
31: gl_EARLY
32: gl_INIT
33:
34:
35:
36:
37:
38:
39: if test $cross_compiling = no; then
40: AM_MISSING_PROG(HELP2MAN, help2man)
41: else
42: HELP2MAN=:
43: fi
44:
45:
46: AM_GNU_GETTEXT_VERSION([0.16])
47: AM_GNU_GETTEXT([external])
48:
49: AC_CONFIG_FILES([Makefile
50: contrib/Makefile
51: doc/Makefile
52: gnulib/lib/Makefile
53: man/Makefile
54: po/Makefile.in
55: src/Makefile
56: tests/Makefile])
57: AC_OUTPUT