blob: d846303a7454ca49894a816c104f5d8a5a803687 [file] [log] [blame]
Scott James Remnant8a0cd072006-05-14 18:28:58 +01001# Process this file with autoconf to produce a configure script.
2
3AC_PREREQ(2.59)
4AC_INIT([upstart], [0.1.0], [upstart-bugs@netsplit.com])
5AC_COPYRIGHT([[Copyright © 2006 Scott James Remnant <scott@netsplit.com>.]])
6AC_CONFIG_SRCDIR([init/main.c])
7AC_CONFIG_MACRO_DIR([m4])
8
9AM_INIT_AUTOMAKE([1.9 gnu check-news dist-bzip2])
10
11AM_GNU_GETTEXT_VERSION(0.14.1)
12AM_GNU_GETTEXT()
13
14# Checks for programs.
15AC_PROG_CC
16AC_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
27NIH_COMPILER_WARNINGS
28NIH_COMPILER_OPTIMISATIONS
29NIH_COMPILER_COVERAGE
30NIH_LINKER_OPTIMISATIONS
31NIH_LINKER_VERSION_SCRIPT
32
33AC_CONFIG_FILES([ Makefile po/Makefile.in intl/Makefile ])
34AC_CONFIG_HEADERS([config.h])
35AC_OUTPUT