Scott James Remnant | 8a0cd07 | 2006-05-14 18:28:58 +0100 | [diff] [blame^] | 1 | # Process this file with autoconf to produce a configure script. |
| 2 | |
| 3 | AC_PREREQ(2.59) |
| 4 | AC_INIT([upstart], [0.1.0], [upstart-bugs@netsplit.com]) |
| 5 | AC_COPYRIGHT([[Copyright © 2006 Scott James Remnant <scott@netsplit.com>.]]) |
| 6 | AC_CONFIG_SRCDIR([init/main.c]) |
| 7 | AC_CONFIG_MACRO_DIR([m4]) |
| 8 | |
| 9 | AM_INIT_AUTOMAKE([1.9 gnu check-news dist-bzip2]) |
| 10 | |
| 11 | AM_GNU_GETTEXT_VERSION(0.14.1) |
| 12 | AM_GNU_GETTEXT() |
| 13 | |
| 14 | # Checks for programs. |
| 15 | AC_PROG_CC |
| 16 | AC_PROG_LIBTOOL |
| 17 | |
| 18 | # Checks for libraries. |
| 19 | |
| 20 | # Checks for header files. |
| 21 | |
| 22 | # Checks for typedefs, structures, and compiler characteristics. |
| 23 | |
| 24 | # Checks for library functions. |
| 25 | |
| 26 | # Other checks |
| 27 | NIH_COMPILER_WARNINGS |
| 28 | NIH_COMPILER_OPTIMISATIONS |
| 29 | NIH_COMPILER_COVERAGE |
| 30 | NIH_LINKER_OPTIMISATIONS |
| 31 | NIH_LINKER_VERSION_SCRIPT |
| 32 | |
| 33 | AC_CONFIG_FILES([ Makefile po/Makefile.in intl/Makefile ]) |
| 34 | AC_CONFIG_HEADERS([config.h]) |
| 35 | AC_OUTPUT |