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 23 matching lines...) Expand all Loading... |
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.md) | 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_AR |
44 AM_PROG_AS | 45 AM_PROG_AS |
45 AC_PROG_CC | 46 AC_PROG_CC |
46 AM_PROG_CC_C_O | 47 AM_PROG_CC_C_O |
47 AC_PROG_CPP | 48 AC_PROG_CPP |
48 AC_PROG_CXX | 49 AC_PROG_CXX |
49 AC_PROG_RANLIB | 50 AC_PROG_RANLIB |
50 AM_CONDITIONAL(GCC, test "$GCC" = yes) # let the Makefile know if we're gcc | 51 AM_CONDITIONAL(GCC, test "$GCC" = yes) # let the Makefile know if we're gcc |
51 | 52 |
52 dnl This must come before all the feature tests below. | 53 dnl This must come before all the feature tests below. |
53 AC_ARG_ENABLE(m32, | 54 AC_ARG_ENABLE(m32, |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
150 [selftest=false]) | 151 [selftest=false]) |
151 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue) | 152 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue) |
152 | 153 |
153 AC_CONFIG_FILES(m4_flatten([ | 154 AC_CONFIG_FILES(m4_flatten([ |
154 breakpad.pc | 155 breakpad.pc |
155 breakpad-client.pc | 156 breakpad-client.pc |
156 Makefile | 157 Makefile |
157 ])) | 158 ])) |
158 | 159 |
159 AC_OUTPUT | 160 AC_OUTPUT |
OLD | NEW |