Bug 470455 - test_database_sync_embed_visits.js leaks, r=sdwilsh
[wine-gecko.git] / toolkit / crashreporter / google-breakpad / configure.ac
blob7287df69c1958f07bc39ab816ff0c9a5c67f4b50
1 # Copyright (c) 2006, Google Inc.
2 # All rights reserved.
4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are
6 # met:
8 #     * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer.
10 #     * Redistributions in binary form must reproduce the above
11 # copyright notice, this list of conditions and the following disclaimer
12 # in the documentation and/or other materials provided with the
13 # distribution.
14 #     * Neither the name of Google Inc. nor the names of its
15 # contributors may be used to endorse or promote products derived from
16 # this software without specific prior written permission.
18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 AC_PREREQ(2.57)
33 AC_INIT(breakpad, 0.1, opensource@google.com)
34 dnl Sanity check: the argument is just a file that should exist.
35 AC_CONFIG_SRCDIR(README)
36 AC_CONFIG_AUX_DIR(autotools)
38 AM_INIT_AUTOMAKE(subdir-objects tar-ustar)
39 AM_CONFIG_HEADER(src/config.h)
41 AC_PROG_CC
42 AC_PROG_CPP
43 AC_PROG_CXX
45 AC_PROG_LIBTOOL
46 AC_SUBST(LIBTOOL_DEPS)
48 AC_HEADER_STDC
50 AC_ARG_ENABLE(selftest,
51               AS_HELP_STRING([--enable-selftest],
52                              [Run extra tests with "make check" ]
53                              [(may conflict with optimizations) ]
54                              [(default is no)]),
55               [case "${enableval}" in
56                  yes)
57                    selftest=true
58                    ;;
59                  no)
60                    selftest=false
61                    ;;
62                  *)
63                    AC_MSG_ERROR(bad value ${enableval} for --enable-selftest)
64                    ;;
65                esac],
66               [selftest=false])
67 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue)
69 AC_CONFIG_FILES([Makefile])
70 AC_OUTPUT