| OLD | NEW |
| 1 # Copyright (c) 2006, Google Inc. | 1 # Copyright (c) 2006, Google Inc. |
| 2 # All rights reserved. | 2 # All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 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. | 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 | 29 |
| 30 | 30 |
| 31 AC_PREREQ(2.57) | 31 AC_PREREQ(2.57) |
| 32 | 32 |
| 33 AC_INIT(breakpad, 0.1, google-breakpad-dev@googlegroups.com) | 33 AC_INIT(breakpad, 0.1, google-breakpad-dev@googlegroups.com) |
| 34 dnl Sanity check: the argument is just a file that should exist. | 34 dnl Sanity check: the argument is just a file that should exist. |
| 35 AC_CONFIG_SRCDIR(README) | 35 AC_CONFIG_SRCDIR(README.md) |
| 36 AC_CONFIG_AUX_DIR(autotools) | 36 AC_CONFIG_AUX_DIR(autotools) |
| 37 AC_CONFIG_MACRO_DIR([m4]) | 37 AC_CONFIG_MACRO_DIR([m4]) |
| 38 AC_CANONICAL_HOST | 38 AC_CANONICAL_HOST |
| 39 | 39 |
| 40 AM_INIT_AUTOMAKE(subdir-objects tar-ustar 1.11.1) | 40 AM_INIT_AUTOMAKE(subdir-objects tar-ustar 1.11.1) |
| 41 AM_CONFIG_HEADER(src/config.h) | 41 AM_CONFIG_HEADER(src/config.h) |
| 42 AM_MAINTAINER_MODE | 42 AM_MAINTAINER_MODE |
| 43 | 43 |
| 44 AM_PROG_AS | 44 AM_PROG_AS |
| 45 AC_PROG_CC | 45 AC_PROG_CC |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 [selftest=false]) | 150 [selftest=false]) |
| 151 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue) | 151 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue) |
| 152 | 152 |
| 153 AC_CONFIG_FILES(m4_flatten([ | 153 AC_CONFIG_FILES(m4_flatten([ |
| 154 breakpad.pc | 154 breakpad.pc |
| 155 breakpad-client.pc | 155 breakpad-client.pc |
| 156 Makefile | 156 Makefile |
| 157 ])) | 157 ])) |
| 158 | 158 |
| 159 AC_OUTPUT | 159 AC_OUTPUT |
| OLD | NEW |