blob: 801fd4eed37662881f9deb43e20efaf2327e3ab4 [file] [log] [blame]
brynercb91a2f2006-08-25 21:14:45 +00001# make sure we're interpreted by some minimal autoconf
2AC_PREREQ(2.57)
3
4AC_INIT(airbag, 0.1, opensource@google.com)
5# The argument here is just something that should be in the current directory
6# (for sanity checking)
7AC_CONFIG_SRCDIR(README)
8AM_INIT_AUTOMAKE
9AM_CONFIG_HEADER(src/config.h)
10
11# Checks for programs.
12AC_PROG_CC
13AC_PROG_CPP
14AC_PROG_CXX
15
16AC_PROG_LIBTOOL
17AC_SUBST(LIBTOOL_DEPS)
18
19# Check whether some low-level functions/files are available
20AC_HEADER_STDC
21
22# Find out what namespace 'normal' STL code lives in, and also what namespace
23# the user wants our classes to be defined in
24AC_CXX_STL_NAMESPACE
25AC_DEFINE_GOOGLE_NAMESPACE(google_airbag)
26
27# Write generated configuration file
28AC_CONFIG_FILES([Makefile])
29AC_OUTPUT