Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(444)

Side by Side Diff: configure.ac

Issue 1726163002: Fix building on musl libc. Base URL: https://chromium.googlesource.com/breakpad/breakpad.git@master
Patch Set: Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « configure ('k') | src/client/linux/crash_generation/crash_generation_server.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « configure ('k') | src/client/linux/crash_generation/crash_generation_server.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698