| 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 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 *) | 67 *) |
| 68 AC_MSG_ERROR(bad value ${enableval} for --enable-m32) | 68 AC_MSG_ERROR(bad value ${enableval} for --enable-m32) |
| 69 ;; | 69 ;; |
| 70 esac], | 70 esac], |
| 71 [usem32=false]) | 71 [usem32=false]) |
| 72 | 72 |
| 73 AC_HEADER_STDC | 73 AC_HEADER_STDC |
| 74 AC_SYS_LARGEFILE | 74 AC_SYS_LARGEFILE |
| 75 m4_include(m4/ax_pthread.m4) | 75 m4_include(m4/ax_pthread.m4) |
| 76 AX_PTHREAD | 76 AX_PTHREAD |
| 77 AC_CHECK_HEADERS([a.out.h]) | 77 AC_CHECK_HEADERS([a.out.h linux/a.out.h]) |
| 78 | 78 |
| 79 m4_include(m4/ax_cxx_compile_stdcxx.m4) | 79 m4_include(m4/ax_cxx_compile_stdcxx.m4) |
| 80 AX_CXX_COMPILE_STDCXX(11, noext, mandatory) | 80 AX_CXX_COMPILE_STDCXX(11, noext, mandatory) |
| 81 | 81 |
| 82 # Only build Linux client libs when compiling for Linux | 82 # Only build Linux client libs when compiling for Linux |
| 83 case $host in | 83 case $host in |
| 84 *-*-linux* | *-android* ) | 84 *-*-linux* | *-android* ) |
| 85 LINUX_HOST=true | 85 LINUX_HOST=true |
| 86 ;; | 86 ;; |
| 87 esac | 87 esac |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 [selftest=false]) | 195 [selftest=false]) |
| 196 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue) | 196 AM_CONDITIONAL(SELFTEST, test x$selftest = xtrue) |
| 197 | 197 |
| 198 AC_CONFIG_FILES(m4_flatten([ | 198 AC_CONFIG_FILES(m4_flatten([ |
| 199 breakpad.pc | 199 breakpad.pc |
| 200 breakpad-client.pc | 200 breakpad-client.pc |
| 201 Makefile | 201 Makefile |
| 202 ])) | 202 ])) |
| 203 | 203 |
| 204 AC_OUTPUT | 204 AC_OUTPUT |
| OLD | NEW |