mirror of
https://github.com/yuzu-emu/breakpad
synced 2024-11-22 11:23:38 +00:00
8c2a4def4e
- ContainedRangeMap is the data structure that will be used to store and look up debugging information for frames by instruction address. The debugging information includes a way to locate the calling frame in the absence of a saved frame pointer. - Restructure RangeMap into an -inl file to match ContainedRangeMap. http://groups.google.com/group/airbag-dev/browse_thread/thread/c5823bfc1828ed42 git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@29 4c0a9323-5329-0410-9bdc-e9ce6186880e
36 lines
983 B
Text
36 lines
983 B
Text
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.
|
|
|
|
|
|
AC_PREREQ(2.57)
|
|
|
|
AC_INIT(airbag, 0.1, opensource@google.com)
|
|
dnl Sanity check: the argument is just a file that should exist.
|
|
AC_CONFIG_SRCDIR(README)
|
|
AC_CONFIG_AUX_DIR(autotools)
|
|
|
|
AM_INIT_AUTOMAKE(subdir-objects)
|
|
AM_CONFIG_HEADER(src/config.h)
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CPP
|
|
AC_PROG_CXX
|
|
|
|
AC_PROG_LIBTOOL
|
|
AC_SUBST(LIBTOOL_DEPS)
|
|
|
|
AC_HEADER_STDC
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
AC_OUTPUT
|