2006-08-30 20:05:05 +00:00
|
|
|
dnl Copyright (C) 2006 Google Inc.
|
|
|
|
dnl
|
|
|
|
dnl Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
dnl you may not use this file except in compliance with the License.
|
|
|
|
dnl You may obtain a copy of the License at
|
|
|
|
dnl
|
|
|
|
dnl http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
dnl
|
|
|
|
dnl Unless required by applicable law or agreed to in writing, software
|
|
|
|
dnl distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
dnl WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
dnl See the License for the specific language governing permissions and
|
|
|
|
dnl limitations under the License.
|
|
|
|
|
|
|
|
|
2006-08-25 21:14:45 +00:00
|
|
|
AC_PREREQ(2.57)
|
|
|
|
|
|
|
|
AC_INIT(airbag, 0.1, opensource@google.com)
|
2006-08-30 20:05:05 +00:00
|
|
|
dnl Sanity check: the argument is just a file that should exist.
|
2006-08-25 21:14:45 +00:00
|
|
|
AC_CONFIG_SRCDIR(README)
|
2006-08-30 20:05:05 +00:00
|
|
|
AC_CONFIG_AUX_DIR(autotools)
|
|
|
|
|
|
|
|
AM_INIT_AUTOMAKE(subdir-objects)
|
2006-08-25 21:14:45 +00:00
|
|
|
AM_CONFIG_HEADER(src/config.h)
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CPP
|
|
|
|
AC_PROG_CXX
|
|
|
|
|
2006-08-30 20:05:05 +00:00
|
|
|
dnl Prevent AC_PROG_LIBTOOL from looking for Fortran support. We don't use
|
|
|
|
dnl any Fortran here.
|
|
|
|
define(AC_PROG_F77)
|
2006-08-25 21:14:45 +00:00
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
AC_SUBST(LIBTOOL_DEPS)
|
|
|
|
|
|
|
|
AC_HEADER_STDC
|
|
|
|
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|