]>
Commit | Line | Data |
---|---|---|
35b8af92 CF |
1 | dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N) |
2 | AC_PREREQ([2.60]) | |
f11099e2 SB |
3 | define(_CLIENT_VERSION_MAJOR, 1) |
4 | define(_CLIENT_VERSION_MINOR, 0) | |
1dd95be4 | 5 | define(_CLIENT_VERSION_REVISION, 15) |
1d6f7acf | 6 | define(_CLIENT_VERSION_BUILD, 50) |
6fe11af7 JG |
7 | define(_ZC_BUILD_VAL, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, m4_incr(_CLIENT_VERSION_BUILD), m4_eval(_CLIENT_VERSION_BUILD < 50), 1, m4_eval(_CLIENT_VERSION_BUILD - 24), m4_eval(_CLIENT_VERSION_BUILD == 50), 1, , m4_eval(_CLIENT_VERSION_BUILD - 50))) |
8 | define(_CLIENT_VERSION_SUFFIX, m4_if(m4_eval(_CLIENT_VERSION_BUILD < 25), 1, _CLIENT_VERSION_REVISION-beta$1, m4_eval(_CLIENT_VERSION_BUILD < 50), 1, _CLIENT_VERSION_REVISION-rc$1, m4_eval(_CLIENT_VERSION_BUILD == 50), 1, _CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION-$1))) | |
998202ba | 9 | define(_CLIENT_VERSION_IS_RELEASE, true) |
e466df93 | 10 | define(_COPYRIGHT_YEAR, 2017) |
6fe11af7 | 11 | AC_INIT([Zcash],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_SUFFIX(_ZC_BUILD_VAL)],[https://github.com/zcash/zcash/issues],[zcash]) |
e5438111 | 12 | AC_CONFIG_SRCDIR([src/main.cpp]) |
13 | AC_CONFIG_HEADERS([src/config/bitcoin-config.h]) | |
52a5f903 | 14 | AC_CONFIG_AUX_DIR([build-aux]) |
15 | AC_CONFIG_MACRO_DIR([build-aux/m4]) | |
1723862e | 16 | |
c5d645e2 CF |
17 | BITCOIN_DAEMON_NAME=zcashd |
18 | BITCOIN_CLI_NAME=zcash-cli | |
19 | BITCOIN_TX_NAME=zcash-tx | |
20 | ||
bc9fff11 RN |
21 | dnl Unless the user specified ARFLAGS, force it to be cr |
22 | AC_ARG_VAR(ARFLAGS, [Flags for the archiver, defaults to <cr> if not set]) | |
23 | if test "x${ARFLAGS+set}" != "xset"; then | |
24 | ARFLAGS="cr" | |
25 | fi | |
26 | ||
35b8af92 | 27 | AC_CANONICAL_HOST |
1723862e | 28 | |
35b8af92 CF |
29 | AH_TOP([#ifndef BITCOIN_CONFIG_H]) |
30 | AH_TOP([#define BITCOIN_CONFIG_H]) | |
31 | AH_BOTTOM([#endif //BITCOIN_CONFIG_H]) | |
32 | ||
35b8af92 CF |
33 | dnl faketime breaks configure and is only needed for make. Disable it here. |
34 | unset FAKETIME | |
35 | ||
eefb766c | 36 | dnl Automake init set-up and checks |
051698a0 | 37 | AM_INIT_AUTOMAKE([no-define subdir-objects foreign tar-pax]) |
35b8af92 CF |
38 | |
39 | dnl faketime messes with timestamps and causes configure to be re-run. | |
40 | dnl --disable-maintainer-mode can be used to bypass this. | |
41 | AM_MAINTAINER_MODE([enable]) | |
42 | ||
43 | dnl make the compilation flags quiet unless V=1 is used | |
44 | m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])]) | |
45 | ||
eefb766c | 46 | dnl Compiler checks (here before libtool). |
47 | if test "x${CXXFLAGS+set}" = "xset"; then | |
48 | CXXFLAGS_overridden=yes | |
49 | else | |
50 | CXXFLAGS_overridden=no | |
51 | fi | |
c4da0970 | 52 | |
52a5f903 | 53 | AC_PROG_CXX |
52a5f903 | 54 | m4_ifdef([AC_PROG_OBJCXX],[AC_PROG_OBJCXX]) |
eefb766c | 55 | |
56 | dnl By default, libtool for mingw refuses to link static libs into a dll for | |
57 | dnl fear of mixing pic/non-pic objects, and import/export complications. Since | |
58 | dnl we have those under control, re-enable that functionality. | |
59 | case $host in | |
60 | *mingw*) | |
61 | lt_cv_deplibs_check_method="pass_all" | |
62 | ;; | |
63 | esac | |
4ba17236 | 64 | dnl Require C++11 compiler (no GNU extensions) |
943f19fe | 65 | AX_CXX_COMPILE_STDCXX([11], [noext], [mandatory], [nodefault]) |
d812d95a AT |
66 | dnl Check if -latomic is required for <std::atomic> |
67 | CHECK_ATOMIC | |
68 | ||
eefb766c | 69 | dnl Libtool init checks. |
19df238a | 70 | LT_INIT([pic-only]) |
eefb766c | 71 | |
72 | dnl Check/return PATH for base programs. | |
52a5f903 | 73 | AC_PATH_TOOL(AR, ar) |
74 | AC_PATH_TOOL(RANLIB, ranlib) | |
75 | AC_PATH_TOOL(STRIP, strip) | |
76 | AC_PATH_TOOL(GCOV, gcov) | |
77 | AC_PATH_PROG(LCOV, lcov) | |
52a5f903 | 78 | AC_PATH_PROG(GENHTML, genhtml) |
79 | AC_PATH_PROG([GIT], [git]) | |
80 | AC_PATH_PROG(CCACHE,ccache) | |
81 | AC_PATH_PROG(XGETTEXT,xgettext) | |
82 | AC_PATH_PROG(HEXDUMP,hexdump) | |
56734f4b TH |
83 | AC_PATH_TOOL(READELF,readelf) |
84 | AC_PATH_TOOL(CPPFILT,c++filt) | |
eefb766c | 85 | |
4f9e993b WL |
86 | # Enable wallet |
87 | AC_ARG_ENABLE([wallet], | |
88 | [AS_HELP_STRING([--enable-wallet], | |
89 | [enable wallet (default is yes)])], | |
90 | [enable_wallet=$enableval], | |
91 | [enable_wallet=yes]) | |
92 | ||
2cc0a252 JG |
93 | AC_ARG_ENABLE([mining], |
94 | [AS_HELP_STRING([--enable-mining], | |
95 | [enable mining (default is yes)])], | |
96 | [enable_mining=$enableval], | |
97 | [enable_mining=yes]) | |
98 | ||
802ea76b SB |
99 | AC_ARG_ENABLE([rust], |
100 | [AS_HELP_STRING([--enable-rust], | |
101 | [enable rust (default is yes)])], | |
102 | [enable_rust=$enableval], | |
103 | [enable_rust=yes]) | |
104 | ||
99eb947a S |
105 | AC_ARG_ENABLE([proton], |
106 | [AS_HELP_STRING([--disable-proton], | |
107 | [disable Proton (AMQP messaging)])], | |
108 | [use_proton=$enableval], | |
109 | [use_proton=yes]) | |
110 | ||
35b8af92 CF |
111 | AC_ARG_ENABLE(tests, |
112 | AS_HELP_STRING([--enable-tests],[compile tests (default is yes)]), | |
113 | [use_tests=$enableval], | |
114 | [use_tests=yes]) | |
115 | ||
c4379e3a JG |
116 | AC_ARG_ENABLE([asan], |
117 | [AS_HELP_STRING([--enable-asan], | |
118 | [instrument the executables with asan (default is no)])], | |
119 | [use_asan=$enableval], | |
120 | [use_asan=no]) | |
121 | ||
122 | AC_ARG_ENABLE([tsan], | |
123 | [AS_HELP_STRING([--enable-tsan], | |
124 | [instrument the executables with tsan (default is no)])], | |
125 | [use_tsan=$enableval], | |
126 | [use_tsan=no]) | |
127 | ||
35b8af92 CF |
128 | AC_ARG_ENABLE([hardening], |
129 | [AS_HELP_STRING([--enable-hardening], | |
130 | [attempt to harden the resulting executables (default is yes)])], | |
131 | [use_hardening=$enableval], | |
132 | [use_hardening=yes]) | |
133 | ||
e432a5f0 CF |
134 | AC_ARG_ENABLE([reduce-exports], |
135 | [AS_HELP_STRING([--enable-reduce-exports], | |
3ee028f1 | 136 | [attempt to reduce exported symbols in the resulting executables (default is no)])], |
e432a5f0 | 137 | [use_reduce_exports=$enableval], |
3ee028f1 | 138 | [use_reduce_exports=no]) |
e432a5f0 | 139 | |
35b8af92 CF |
140 | AC_ARG_ENABLE([ccache], |
141 | [AS_HELP_STRING([--enable-ccache], | |
e18e1001 | 142 | [use ccache for building (default is yes if ccache is found)])], |
35b8af92 CF |
143 | [use_ccache=$enableval], |
144 | [use_ccache=auto]) | |
145 | ||
146 | AC_ARG_ENABLE([lcov], | |
147 | [AS_HELP_STRING([--enable-lcov], | |
148 | [enable lcov testing (default is no)])], | |
149 | [use_lcov=yes], | |
150 | [use_lcov=no]) | |
151 | ||
d5aab704 CF |
152 | AC_ARG_ENABLE([glibc-back-compat], |
153 | [AS_HELP_STRING([--enable-glibc-back-compat], | |
aa367306 | 154 | [enable backwards compatibility with glibc])], |
d5aab704 CF |
155 | [use_glibc_compat=$enableval], |
156 | [use_glibc_compat=no]) | |
157 | ||
f200002c | 158 | AC_ARG_ENABLE([zmq], |
1afb8431 | 159 | [AS_HELP_STRING([--disable-zmq], |
160 | [disable ZMQ notifications])], | |
f200002c JG |
161 | [use_zmq=$enableval], |
162 | [use_zmq=yes]) | |
163 | ||
35b8af92 CF |
164 | AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[specify protoc bin path])], [protoc_bin_path=$withval], []) |
165 | ||
abfcaefe | 166 | AC_ARG_ENABLE(man, |
1b5e712c | 167 | [AS_HELP_STRING([--disable-man], |
168 | [do not install man pages (default is to install)])],, | |
abfcaefe | 169 | enable_man=yes) |
170 | AM_CONDITIONAL(ENABLE_MAN, test "$enable_man" != no) | |
171 | ||
b197605e | 172 | # Enable debug |
f5f157b8 | 173 | AC_ARG_ENABLE([debug], |
174 | [AS_HELP_STRING([--enable-debug], | |
175 | [use debug compiler flags and macros (default is no)])], | |
176 | [enable_debug=$enableval], | |
177 | [enable_debug=no]) | |
178 | ||
5dd887fd CF |
179 | # Turn warnings into errors |
180 | AC_ARG_ENABLE([werror], | |
181 | [AS_HELP_STRING([--enable-werror], | |
c1fcdd01 | 182 | [Treat all compiler warnings as errors (default is no)])], |
5dd887fd CF |
183 | [enable_werror=$enableval], |
184 | [enable_werror=no]) | |
185 | ||
341ab745 CF |
186 | AC_LANG_PUSH([C++]) |
187 | AX_CHECK_COMPILE_FLAG([-Werror],[CXXFLAG_WERROR="-Werror"],[CXXFLAG_WERROR=""]) | |
188 | ||
f5f157b8 | 189 | if test "x$enable_debug" = xyes; then |
ae1565b5 | 190 | CPPFLAGS="$CPPFLAGS -DDEBUG -DDEBUG_LOCKORDER" |
f5f157b8 | 191 | if test "x$GCC" = xyes; then |
ae1565b5 | 192 | CFLAGS="$CFLAGS -g3 -O0" |
f5f157b8 | 193 | fi |
b197605e | 194 | |
f5f157b8 | 195 | if test "x$GXX" = xyes; then |
ae1565b5 | 196 | CXXFLAGS="$CXXFLAGS -g3 -O0" |
f5f157b8 | 197 | fi |
b197605e | 198 | fi |
f5f157b8 | 199 | |
5dd887fd CF |
200 | ERROR_CXXFLAGS= |
201 | if test "x$enable_werror" = "xyes"; then | |
202 | if test "x$CXXFLAG_WERROR" = "x"; then | |
203 | AC_MSG_ERROR("enable-werror set but -Werror is not usable") | |
204 | fi | |
c1fcdd01 | 205 | ERROR_CXXFLAGS="$ERROR_CXXFLAGS -Werror" |
5dd887fd CF |
206 | fi |
207 | ||
123e4f87 | 208 | if test "x$CXXFLAGS_overridden" = "xno"; then |
341ab745 CF |
209 | AX_CHECK_COMPILE_FLAG([-Wall],[CXXFLAGS="$CXXFLAGS -Wall"],,[[$CXXFLAG_WERROR]]) |
210 | AX_CHECK_COMPILE_FLAG([-Wextra],[CXXFLAGS="$CXXFLAGS -Wextra"],,[[$CXXFLAG_WERROR]]) | |
211 | AX_CHECK_COMPILE_FLAG([-Wformat],[CXXFLAGS="$CXXFLAGS -Wformat"],,[[$CXXFLAG_WERROR]]) | |
d35ebc7b | 212 | AX_CHECK_COMPILE_FLAG([-Wvla],[CXXFLAGS="$CXXFLAGS -Wvla"],,[[$CXXFLAG_WERROR]]) |
341ab745 CF |
213 | AX_CHECK_COMPILE_FLAG([-Wformat-security],[CXXFLAGS="$CXXFLAGS -Wformat-security"],,[[$CXXFLAG_WERROR]]) |
214 | ||
215 | ## Some compilers (gcc) ignore unknown -Wno-* options, but warn about all | |
216 | ## unknown options if any other warning is produced. Test the -Wfoo case, and | |
217 | ## set the -Wno-foo case if it works. | |
218 | AX_CHECK_COMPILE_FLAG([-Wunused-parameter],[CXXFLAGS="$CXXFLAGS -Wno-unused-parameter"],,[[$CXXFLAG_WERROR]]) | |
219 | AX_CHECK_COMPILE_FLAG([-Wself-assign],[CXXFLAGS="$CXXFLAGS -Wno-self-assign"],,[[$CXXFLAG_WERROR]]) | |
220 | AX_CHECK_COMPILE_FLAG([-Wunused-local-typedef],[CXXFLAGS="$CXXFLAGS -Wno-unused-local-typedef"],,[[$CXXFLAG_WERROR]]) | |
221 | AX_CHECK_COMPILE_FLAG([-Wdeprecated-register],[CXXFLAGS="$CXXFLAGS -Wno-deprecated-register"],,[[$CXXFLAG_WERROR]]) | |
123e4f87 | 222 | fi |
55fca515 | 223 | CPPFLAGS="$CPPFLAGS -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS" |
35b8af92 | 224 | |
b7a4ecc1 LD |
225 | AC_ARG_WITH([utils], |
226 | [AS_HELP_STRING([--with-utils], | |
66a89c08 | 227 | [build zcash-cli zcash-tx (default=yes)])], |
b7a4ecc1 LD |
228 | [build_bitcoin_utils=$withval], |
229 | [build_bitcoin_utils=yes]) | |
230 | ||
231 | AC_ARG_WITH([libs], | |
232 | [AS_HELP_STRING([--with-libs], | |
233 | [build libraries (default=yes)])], | |
234 | [build_bitcoin_libs=$withval], | |
235 | [build_bitcoin_libs=yes]) | |
236 | ||
237 | AC_ARG_WITH([daemon], | |
238 | [AS_HELP_STRING([--with-daemon], | |
239 | [build bitcoind daemon (default=yes)])], | |
240 | [build_bitcoind=$withval], | |
241 | [build_bitcoind=yes]) | |
242 | ||
35b8af92 CF |
243 | use_pkgconfig=yes |
244 | case $host in | |
245 | *mingw*) | |
246 | ||
96b9603c | 247 | #pkgconfig does more harm than good with MinGW |
35b8af92 CF |
248 | use_pkgconfig=no |
249 | ||
250 | TARGET_OS=windows | |
251 | AC_CHECK_LIB([mingwthrd], [main],, AC_MSG_ERROR(lib missing)) | |
252 | AC_CHECK_LIB([kernel32], [main],, AC_MSG_ERROR(lib missing)) | |
253 | AC_CHECK_LIB([user32], [main],, AC_MSG_ERROR(lib missing)) | |
254 | AC_CHECK_LIB([gdi32], [main],, AC_MSG_ERROR(lib missing)) | |
255 | AC_CHECK_LIB([comdlg32], [main],, AC_MSG_ERROR(lib missing)) | |
256 | AC_CHECK_LIB([winspool], [main],, AC_MSG_ERROR(lib missing)) | |
257 | AC_CHECK_LIB([winmm], [main],, AC_MSG_ERROR(lib missing)) | |
258 | AC_CHECK_LIB([shell32], [main],, AC_MSG_ERROR(lib missing)) | |
259 | AC_CHECK_LIB([comctl32], [main],, AC_MSG_ERROR(lib missing)) | |
260 | AC_CHECK_LIB([ole32], [main],, AC_MSG_ERROR(lib missing)) | |
261 | AC_CHECK_LIB([oleaut32], [main],, AC_MSG_ERROR(lib missing)) | |
262 | AC_CHECK_LIB([uuid], [main],, AC_MSG_ERROR(lib missing)) | |
263 | AC_CHECK_LIB([rpcrt4], [main],, AC_MSG_ERROR(lib missing)) | |
264 | AC_CHECK_LIB([advapi32], [main],, AC_MSG_ERROR(lib missing)) | |
265 | AC_CHECK_LIB([ws2_32], [main],, AC_MSG_ERROR(lib missing)) | |
266 | AC_CHECK_LIB([mswsock], [main],, AC_MSG_ERROR(lib missing)) | |
267 | AC_CHECK_LIB([shlwapi], [main],, AC_MSG_ERROR(lib missing)) | |
268 | AC_CHECK_LIB([iphlpapi], [main],, AC_MSG_ERROR(lib missing)) | |
c589f5f2 CF |
269 | AC_CHECK_LIB([crypt32], [main],, AC_MSG_ERROR(lib missing)) |
270 | ||
575e70c0 CF |
271 | # -static is interpreted by libtool, where it has a different meaning. |
272 | # In libtool-speak, it's -all-static. | |
e0077de5 | 273 | AX_CHECK_LINK_FLAG([[-static]],[LIBTOOL_APP_LDFLAGS="$LIBTOOL_APP_LDFLAGS -all-static"]) |
575e70c0 | 274 | |
35b8af92 CF |
275 | AC_PATH_PROG([MAKENSIS], [makensis], none) |
276 | if test x$MAKENSIS = xnone; then | |
277 | AC_MSG_WARN("makensis not found. Cannot create installer.") | |
278 | fi | |
279 | ||
5ceb9c96 CF |
280 | AC_PATH_TOOL(WINDRES, windres, none) |
281 | if test x$WINDRES = xnone; then | |
282 | AC_MSG_ERROR("windres not found") | |
283 | fi | |
284 | ||
b77dfdc9 | 285 | CPPFLAGS="$CPPFLAGS -D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB" |
35b8af92 | 286 | LEVELDB_TARGET_FLAGS="TARGET_OS=OS_WINDOWS_CROSSCOMPILE" |
123e4f87 LD |
287 | if test "x$CXXFLAGS_overridden" = "xno"; then |
288 | CXXFLAGS="$CXXFLAGS -w" | |
289 | fi | |
2f87b38e WL |
290 | case $host in |
291 | i?86-*) WINDOWS_BITS=32 ;; | |
292 | x86_64-*) WINDOWS_BITS=64 ;; | |
293 | *) AC_MSG_ERROR("Could not determine win32/win64 for installer") ;; | |
294 | esac | |
295 | AC_SUBST(WINDOWS_BITS) | |
9ed8979e CF |
296 | |
297 | dnl libtool insists upon adding -nostdlib and a list of objects/libs to link against. | |
298 | dnl That breaks our ability to build dll's with static libgcc/libstdc++/libssp. Override | |
299 | dnl its command here, with the predeps/postdeps removed, and -static inserted. Postdeps are | |
300 | dnl also overridden to prevent their insertion later. | |
301 | dnl This should only affect dll's. | |
302 | archive_cmds_CXX="\$CC -shared \$libobjs \$deplibs \$compiler_flags -static -o \$output_objdir/\$soname \${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker \$lib" | |
303 | postdeps_CXX= | |
304 | ||
35b8af92 CF |
305 | ;; |
306 | *darwin*) | |
307 | TARGET_OS=darwin | |
308 | LEVELDB_TARGET_FLAGS="TARGET_OS=Darwin" | |
309 | if test x$cross_compiling != xyes; then | |
b62bbb1f | 310 | BUILD_OS=darwin |
35b8af92 CF |
311 | AC_CHECK_PROG([PORT],port, port) |
312 | if test x$PORT = xport; then | |
313 | dnl add default macports paths | |
4c69ebed PJ |
314 | CPPFLAGS="$CPPFLAGS -isystem /opt/local/include" |
315 | LIBS="$LIBS -L/opt/local/lib" | |
9cb7abaf DH |
316 | if test -d /opt/local/include/db62; then |
317 | CPPFLAGS="$CPPFLAGS -I/opt/local/include/db62" | |
318 | LIBS="$LIBS -L/opt/local/lib/db62" | |
4c69ebed | 319 | fi |
35b8af92 CF |
320 | fi |
321 | ||
322 | AC_CHECK_PROG([BREW],brew, brew) | |
323 | if test x$BREW = xbrew; then | |
27368e76 | 324 | dnl These Homebrew packages may be keg-only, meaning that they won't be found |
9fedafba CF |
325 | dnl in expected paths because they may conflict with system files. Ask |
326 | dnl Homebrew where each one is located, then adjust paths accordingly. | |
327 | dnl It's safe to add these paths even if the functionality is disabled by | |
abecfc42 | 328 | dnl the user (--without-wallet for example). |
9fedafba CF |
329 | |
330 | openssl_prefix=`$BREW --prefix openssl 2>/dev/null` | |
331 | bdb_prefix=`$BREW --prefix berkeley-db4 2>/dev/null` | |
9fedafba | 332 | if test x$openssl_prefix != x; then |
b77b4eda | 333 | PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH" |
f9e40fb0 | 334 | export PKG_CONFIG_PATH |
9fedafba CF |
335 | fi |
336 | if test x$bdb_prefix != x; then | |
337 | CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include" | |
338 | LIBS="$LIBS -L$bdb_prefix/lib" | |
339 | fi | |
35b8af92 | 340 | fi |
b62bbb1f CF |
341 | else |
342 | case $build_os in | |
343 | *darwin*) | |
344 | BUILD_OS=darwin | |
345 | ;; | |
346 | *) | |
347 | AC_PATH_TOOL([INSTALLNAMETOOL], [install_name_tool], install_name_tool) | |
348 | AC_PATH_TOOL([OTOOL], [otool], otool) | |
349 | AC_PATH_PROGS([GENISOIMAGE], [genisoimage mkisofs],genisoimage) | |
b7f2cdc8 CF |
350 | |
351 | dnl libtool will try to strip the static lib, which is a problem for | |
352 | dnl cross-builds because strip attempts to call a hard-coded ld, | |
353 | dnl which may not exist in the path. Stripping the .a is not | |
354 | dnl necessary, so just disable it. | |
355 | old_striplib= | |
b62bbb1f CF |
356 | ;; |
357 | esac | |
35b8af92 CF |
358 | fi |
359 | ||
9eb5a5fb | 360 | AX_CHECK_LINK_FLAG([[-Wl,-headerpad_max_install_names]], [LDFLAGS="$LDFLAGS -Wl,-headerpad_max_install_names"]) |
35b8af92 | 361 | CPPFLAGS="$CPPFLAGS -DMAC_OSX" |
c459de2f | 362 | OBJCXXFLAGS="$CXXFLAGS" |
35b8af92 | 363 | ;; |
ab123ad4 CF |
364 | *linux*) |
365 | TARGET_OS=linux | |
366 | ;; | |
35b8af92 | 367 | *) |
35b8af92 CF |
368 | ;; |
369 | esac | |
370 | ||
d7002714 CF |
371 | if test x$use_pkgconfig = xyes; then |
372 | m4_ifndef([PKG_PROG_PKG_CONFIG], [AC_MSG_ERROR(PKG_PROG_PKG_CONFIG macro not found. Please install pkg-config and re-run autogen.sh.)]) | |
373 | m4_ifdef([PKG_PROG_PKG_CONFIG], [ | |
374 | PKG_PROG_PKG_CONFIG | |
375 | if test x"$PKG_CONFIG" = "x"; then | |
376 | AC_MSG_ERROR(pkg-config not found.) | |
377 | fi | |
378 | ]) | |
379 | fi | |
380 | ||
b77b4eda LD |
381 | if test x$use_lcov = xyes; then |
382 | if test x$LCOV = x; then | |
35b8af92 CF |
383 | AC_MSG_ERROR("lcov testing requested but lcov not found") |
384 | fi | |
b77b4eda | 385 | if test x$GCOV = x; then |
35b8af92 CF |
386 | AC_MSG_ERROR("lcov testing requested but gcov not found") |
387 | fi | |
b77b4eda | 388 | if test x$GENHTML = x; then |
35b8af92 CF |
389 | AC_MSG_ERROR("lcov testing requested but genhtml not found") |
390 | fi | |
6ecb05dd JG |
391 | LCOV="$LCOV --gcov-tool=$GCOV --rc lcov_branch_coverage=1" |
392 | GENHTML="$GENHTML --branch-coverage" | |
35b8af92 CF |
393 | AX_CHECK_COMPILE_FLAG([--coverage],[CXXFLAGS="$CXXFLAGS --coverage"], |
394 | [AC_MSG_ERROR("lcov testing requested but --coverage flag does not work")]) | |
395 | fi | |
396 | ||
4414f5ff WL |
397 | dnl Check for endianness |
398 | AC_C_BIGENDIAN | |
35b8af92 CF |
399 | |
400 | dnl Check for pthread compile/link requirements | |
401 | AX_PTHREAD | |
35b8af92 CF |
402 | |
403 | # The following macro will add the necessary defines to bitcoin-config.h, but | |
404 | # they also need to be passed down to any subprojects. Pull the results out of | |
405 | # the cache and add them to CPPFLAGS. | |
406 | AC_SYS_LARGEFILE | |
a60838d0 WL |
407 | # detect POSIX or GNU variant of strerror_r |
408 | AC_FUNC_STRERROR_R | |
35b8af92 CF |
409 | |
410 | if test x$ac_cv_sys_file_offset_bits != x && | |
411 | test x$ac_cv_sys_file_offset_bits != xno && | |
412 | test x$ac_cv_sys_file_offset_bits != xunknown; then | |
413 | CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits" | |
414 | fi | |
415 | ||
416 | if test x$ac_cv_sys_large_files != x && | |
417 | test x$ac_cv_sys_large_files != xno && | |
418 | test x$ac_cv_sys_large_files != xunknown; then | |
419 | CPPFLAGS="$CPPFLAGS -D_LARGE_FILES=$ac_cv_sys_large_files" | |
420 | fi | |
421 | ||
422 | AX_CHECK_LINK_FLAG([[-Wl,--large-address-aware]], [LDFLAGS="$LDFLAGS -Wl,--large-address-aware"]) | |
423 | ||
f36a40f7 CF |
424 | AX_GCC_FUNC_ATTRIBUTE([visibility]) |
425 | AX_GCC_FUNC_ATTRIBUTE([dllexport]) | |
426 | AX_GCC_FUNC_ATTRIBUTE([dllimport]) | |
427 | ||
d5aab704 CF |
428 | if test x$use_glibc_compat != xno; then |
429 | ||
d68e2111 CF |
430 | #glibc absorbed clock_gettime in 2.17. librt (its previous location) is safe to link |
431 | #in anyway for back-compat. | |
432 | AC_CHECK_LIB([rt],[clock_gettime],, AC_MSG_ERROR(lib missing)) | |
433 | ||
d5aab704 CF |
434 | #__fdelt_chk's params and return type have changed from long unsigned int to long int. |
435 | # See which one is present here. | |
436 | AC_MSG_CHECKING(__fdelt_chk type) | |
e2a98d27 | 437 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#ifdef _FORTIFY_SOURCE |
8021cf8d CF |
438 | #undef _FORTIFY_SOURCE |
439 | #endif | |
440 | #define _FORTIFY_SOURCE 2 | |
d5aab704 | 441 | #include <sys/select.h> |
e2a98d27 | 442 | extern "C" long unsigned int __fdelt_warn(long unsigned int);]],[[]])], |
d5aab704 CF |
443 | [ fdelt_type="long unsigned int"], |
444 | [ fdelt_type="long int"]) | |
445 | AC_MSG_RESULT($fdelt_type) | |
446 | AC_DEFINE_UNQUOTED(FDELT_TYPE, $fdelt_type,[parameter and return value type for __fdelt_chk]) | |
d68e2111 CF |
447 | else |
448 | AC_SEARCH_LIBS([clock_gettime],[rt]) | |
d5aab704 CF |
449 | fi |
450 | ||
c459de2f CF |
451 | if test x$TARGET_OS != xwindows; then |
452 | # All windows code is PIC, forcing it on just adds useless compile warnings | |
453 | AX_CHECK_COMPILE_FLAG([-fPIC],[PIC_FLAGS="-fPIC"]) | |
454 | fi | |
455 | ||
c4379e3a JG |
456 | #asan and tsan cannot be used together |
457 | if test x$use_asan$use_tsan == xyesyes; then | |
458 | AC_MSG_ERROR(asan and tsan cannot be simultaneously enabled) | |
459 | fi | |
460 | ||
461 | # using asan flag to enable address sanitizer and undefined behavior sanitizer | |
462 | if test x$use_asan == xyes; then | |
463 | AX_CHECK_LINK_FLAG([-static-libstdc++],[SAN_LDFLAGS="$SAN_LDFLAGS -static-libstdc++"],[AC_MSG_ERROR(Cannot statically link -static-libstdc++)]) | |
464 | AX_CHECK_LINK_FLAG([-static-libasan],[SAN_LDFLAGS="$SAN_LDFLAGS -static-libasan"],[AC_MSG_ERROR(Cannot statically link -static-libasan)]) | |
465 | AX_CHECK_COMPILE_FLAG([-fsanitize=address],[SAN_CXXFLAGS="$SAN_CXXFLAGS -fsanitize=address"],[AC_MSG_ERROR(Cannot enable -fsanitize=address)]) | |
466 | AX_CHECK_COMPILE_FLAG([-fsanitize=undefined],[SAN_CXXFLAGS="$SAN_CXXFLAGS -fsanitize=undefined"],[AC_MSG_ERROR(Cannot enable -fsanitize=undefined)]) | |
467 | AX_CHECK_COMPILE_FLAG([-fno-omit-frame-pointer],[SAN_CXXFLAGS="$SAN_CXXFLAGS -fno-omit-frame-pointer"],[AC_MSG_ERROR(Cannot enable -fno-omit-frame-pointer)]) | |
468 | fi | |
469 | ||
470 | # using tsan flag to enable address thread sanitizer | |
471 | # TSAN is supported on Linux x84_64 and tested on Ubuntu 12.04 | |
472 | # Non-position-independent executables are not supported. Use with -fPIE and -pie flags | |
473 | # libc/libstdc++ static linking is not supported | |
474 | if test x$use_tsan == xyes; then | |
475 | AX_CHECK_COMPILE_FLAG([-fsanitize=thread],[SAN_CXXFLAGS="$SAN_CXXFLAGS -fsanitize=thread"],[AC_MSG_ERROR(Cannot enable -fsanitize=thread)]) | |
476 | AX_CHECK_COMPILE_FLAG([-fno-omit-frame-pointer],[SAN_CXXFLAGS="$SAN_CXXFLAGS -fno-omit-frame-pointer"],[AC_MSG_ERROR(Cannot enable -fno-omit-frame-pointer)]) | |
477 | fi | |
478 | ||
35b8af92 | 479 | if test x$use_hardening != xno; then |
5d37904b | 480 | AX_CHECK_COMPILE_FLAG([-Wformat],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wformat"],[AC_MSG_ERROR(Cannot enable -Wformat)]) |
6dcb7067 | 481 | AX_CHECK_COMPILE_FLAG([-Wformat-security],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wformat-security"],[AC_MSG_ERROR(Cannot enable -Wformat-security)],[-Wformat]) |
b00b98ae TH |
482 | AX_CHECK_COMPILE_FLAG([-Wstack-protector],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector"],[AC_MSG_ERROR(Cannot enable -Wstack-protector)]) |
483 | AX_CHECK_COMPILE_FLAG([-fstack-protector-all],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all"],[AC_MSG_ERROR(Cannot enable -fstack-protector-all)]) | |
35b8af92 | 484 | |
9b4e03b2 LD |
485 | AX_CHECK_PREPROC_FLAG([-D_FORTIFY_SOURCE=2],[ |
486 | AX_CHECK_PREPROC_FLAG([-U_FORTIFY_SOURCE],[ | |
487 | HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -U_FORTIFY_SOURCE" | |
b00b98ae | 488 | ],[AC_MSG_ERROR(Cannot enable -U_FORTIFY_SOURCE)]) |
9b4e03b2 | 489 | HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -D_FORTIFY_SOURCE=2" |
b00b98ae | 490 | ],[AC_MSG_ERROR(Cannot enable -D_FORTIFY_SOURCE=2)]) |
35b8af92 | 491 | |
b00b98ae TH |
492 | AX_CHECK_LINK_FLAG([[-Wl,-z,relro]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,relro"],[AC_MSG_ERROR(Cannot enable RELRO)]) |
493 | AX_CHECK_LINK_FLAG([[-Wl,-z,now]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,-z,now"],[AC_MSG_ERROR(Cannot enable BIND_NOW)]) | |
35b8af92 CF |
494 | |
495 | if test x$TARGET_OS != xwindows; then | |
eccd5856 | 496 | # All windows code is PIC, forcing it on just adds useless compile warnings |
c459de2f | 497 | AX_CHECK_COMPILE_FLAG([-fPIE],[PIE_FLAGS="-fPIE"],[AC_MSG_ERROR(Cannot enable -fPIE)]) |
b00b98ae TH |
498 | AX_CHECK_LINK_FLAG([[-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"],[AC_MSG_ERROR(Cannot enable -pie)]) |
499 | else | |
500 | # These are only available on Windows. | |
501 | AX_CHECK_LINK_FLAG([[-Wl,--dynamicbase]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--dynamicbase"],[AC_MSG_ERROR(Cannot enable --dynamicbase)]) | |
502 | AX_CHECK_LINK_FLAG([[-Wl,--nxcompat]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--nxcompat"],[AC_MSG_ERROR(Cannot enable --nxcompat)]) | |
8a932154 | 503 | AX_CHECK_LINK_FLAG([[-Wl,--high-entropy-va]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--high-entropy-va"],[AC_MSG_ERROR(Cannot enable ASLR)]) |
35b8af92 CF |
504 | fi |
505 | ||
811a765b CF |
506 | case $host in |
507 | *mingw*) | |
508 | AC_CHECK_LIB([ssp], [main],, AC_MSG_ERROR(lib missing)) | |
509 | ;; | |
510 | esac | |
35b8af92 CF |
511 | fi |
512 | ||
513 | dnl this flag screws up non-darwin gcc even when the check fails. special-case it. | |
514 | if test x$TARGET_OS = xdarwin; then | |
515 | AX_CHECK_LINK_FLAG([[-Wl,-dead_strip]], [LDFLAGS="$LDFLAGS -Wl,-dead_strip"]) | |
516 | fi | |
517 | ||
8ea6d37a | 518 | AC_CHECK_HEADERS([endian.h sys/endian.h byteswap.h stdio.h stdlib.h unistd.h strings.h sys/types.h sys/stat.h sys/select.h sys/prctl.h]) |
caf6150e HL |
519 | AC_SEARCH_LIBS([getaddrinfo_a], [anl], [AC_DEFINE(HAVE_GETADDRINFO_A, 1, [Define this symbol if you have getaddrinfo_a])]) |
520 | AC_SEARCH_LIBS([inet_pton], [nsl resolv], [AC_DEFINE(HAVE_INET_PTON, 1, [Define this symbol if you have inet_pton])]) | |
f2647cc0 | 521 | |
494f6e7d PJ |
522 | AC_CHECK_DECLS([strnlen]) |
523 | ||
4414f5ff | 524 | AC_CHECK_DECLS([le16toh, le32toh, le64toh, htole16, htole32, htole64, be16toh, be32toh, be64toh, htobe16, htobe32, htobe64],,, |
f2647cc0 CF |
525 | [#if HAVE_ENDIAN_H |
526 | #include <endian.h> | |
8ea6d37a AV |
527 | #elif HAVE_SYS_ENDIAN_H |
528 | #include <sys/endian.h> | |
f2647cc0 | 529 | #endif]) |
35b8af92 | 530 | |
4414f5ff WL |
531 | AC_CHECK_DECLS([bswap_16, bswap_32, bswap_64],,, |
532 | [#if HAVE_BYTESWAP_H | |
533 | #include <byteswap.h> | |
534 | #endif]) | |
535 | ||
35b8af92 CF |
536 | dnl Check for MSG_NOSIGNAL |
537 | AC_MSG_CHECKING(for MSG_NOSIGNAL) | |
e2a98d27 | 538 | AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/socket.h>]], |
539 | [[ int f = MSG_NOSIGNAL; ]])], | |
35b8af92 CF |
540 | [ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_MSG_NOSIGNAL, 1,[Define this symbol if you have MSG_NOSIGNAL]) ], |
541 | [ AC_MSG_RESULT(no)] | |
542 | ) | |
543 | ||
e432a5f0 CF |
544 | AC_MSG_CHECKING([for visibility attribute]) |
545 | AC_LINK_IFELSE([AC_LANG_SOURCE([ | |
546 | int foo_def( void ) __attribute__((visibility("default"))); | |
547 | int main(){} | |
548 | ])], | |
549 | [ | |
550 | AC_DEFINE(HAVE_VISIBILITY_ATTRIBUTE,1,[Define if the visibility attribute is supported.]) | |
551 | AC_MSG_RESULT(yes) | |
552 | ], | |
553 | [ | |
554 | AC_MSG_RESULT(no) | |
555 | if test x$use_reduce_exports = xyes; then | |
3448b132 | 556 | AC_MSG_ERROR([Cannot find a working visibility attribute. Use --disable-reduce-exports.]) |
e432a5f0 | 557 | fi |
e432a5f0 CF |
558 | ] |
559 | ) | |
560 | ||
3ee028f1 | 561 | if test x$use_reduce_exports = xyes; then |
e432a5f0 | 562 | AX_CHECK_COMPILE_FLAG([-fvisibility=hidden],[RE_CXXFLAGS="-fvisibility=hidden"], |
3448b132 | 563 | [AC_MSG_ERROR([Cannot set default symbol visibility. Use --disable-reduce-exports.])]) |
e432a5f0 CF |
564 | fi |
565 | ||
4a290b52 LD |
566 | LEVELDB_CPPFLAGS= |
567 | LIBLEVELDB= | |
568 | LIBMEMENV= | |
569 | AM_CONDITIONAL([EMBEDDED_LEVELDB],[true]) | |
570 | AC_SUBST(LEVELDB_CPPFLAGS) | |
571 | AC_SUBST(LIBLEVELDB) | |
572 | AC_SUBST(LIBMEMENV) | |
573 | ||
4f9e993b WL |
574 | if test x$enable_wallet != xno; then |
575 | dnl Check for libdb_cxx only if wallet enabled | |
9cb7abaf | 576 | BITCOIN_FIND_BDB62 |
4f9e993b | 577 | fi |
35b8af92 | 578 | |
99eb947a S |
579 | dnl Check Qpid Proton headers and library exist |
580 | if test x$use_proton = xyes; then | |
581 | AC_CHECK_HEADERS([proton/connection.hpp], | |
582 | [], | |
583 | [AC_MSG_WARN([Proton headers not found, disabling Proton support]) | |
584 | use_proton=no]) | |
585 | AC_CHECK_LIB([qpid-proton-cpp], [main], | |
586 | [PROTON_LIBS="-lqpid-proton-cpp -lqpid-proton"], | |
587 | [AC_MSG_WARN([Proton libraries not found, disabling Proton support]) | |
588 | use_proton=no]) | |
589 | fi | |
590 | if test x$use_proton = xyes; then | |
591 | AC_DEFINE(ENABLE_PROTON, 1, [Define to 1 to enable Proton functions]) | |
592 | else | |
593 | AC_DEFINE(ENABLE_PROTON, 0, [Define to 1 to enable Proton functions]) | |
594 | fi | |
595 | ||
38ba3c66 | 596 | if test x$build_bitcoin_utils$build_bitcoind$use_tests = xnonono; then |
b7a4ecc1 LD |
597 | use_boost=no |
598 | else | |
599 | use_boost=yes | |
600 | fi | |
601 | ||
602 | if test x$use_boost = xyes; then | |
603 | ||
35b8af92 | 604 | dnl Check for boost libs |
6df5f51b | 605 | dnl We need Boost >= 1.62 to fix a potential security bug (https://github.com/zcash/zcash/issues/1241) |
606 | AX_BOOST_BASE([1.62]) | |
35b8af92 CF |
607 | AX_BOOST_SYSTEM |
608 | AX_BOOST_FILESYSTEM | |
609 | AX_BOOST_PROGRAM_OPTIONS | |
610 | AX_BOOST_THREAD | |
611 | AX_BOOST_CHRONO | |
612 | ||
b7a4ecc1 LD |
613 | fi |
614 | ||
3ee028f1 | 615 | if test x$use_reduce_exports = xyes; then |
e432a5f0 CF |
616 | CXXFLAGS="$CXXFLAGS $RE_CXXFLAGS" |
617 | AX_CHECK_LINK_FLAG([[-Wl,--exclude-libs,ALL]], [RELDFLAGS="-Wl,--exclude-libs,ALL"]) | |
618 | fi | |
619 | ||
35b8af92 | 620 | if test x$use_tests = xyes; then |
152e51c7 CF |
621 | |
622 | if test x$HEXDUMP = x; then | |
623 | AC_MSG_ERROR(hexdump is required for tests) | |
624 | fi | |
625 | ||
626 | ||
b7a4ecc1 LD |
627 | if test x$use_boost = xyes; then |
628 | ||
35b8af92 | 629 | AX_BOOST_UNIT_TEST_FRAMEWORK |
e4b991e5 WL |
630 | |
631 | dnl Determine if -DBOOST_TEST_DYN_LINK is needed | |
632 | AC_MSG_CHECKING([for dynamic linked boost test]) | |
633 | TEMP_LIBS="$LIBS" | |
a7d1f035 | 634 | LIBS="$LIBS $BOOST_LDFLAGS $BOOST_UNIT_TEST_FRAMEWORK_LIB" |
e4b991e5 WL |
635 | TEMP_CPPFLAGS="$CPPFLAGS" |
636 | CPPFLAGS="$CPPFLAGS $BOOST_CPPFLAGS" | |
637 | AC_LINK_IFELSE([AC_LANG_SOURCE([ | |
638 | #define BOOST_TEST_DYN_LINK | |
639 | #define BOOST_TEST_MAIN | |
640 | #include <boost/test/unit_test.hpp> | |
641 | ||
642 | ])], | |
643 | [AC_MSG_RESULT(yes)] | |
644 | [TESTDEFS="$TESTDEFS -DBOOST_TEST_DYN_LINK"], | |
645 | [AC_MSG_RESULT(no)]) | |
646 | LIBS="$TEMP_LIBS" | |
647 | CPPFLAGS="$TEMP_CPPFLAGS" | |
b7a4ecc1 LD |
648 | |
649 | fi | |
35b8af92 CF |
650 | fi |
651 | ||
b7a4ecc1 | 652 | if test x$use_boost = xyes; then |
ca66717d | 653 | BOOST_LIBS="$BOOST_LDFLAGS $BOOST_SYSTEM_LIB $BOOST_FILESYSTEM_LIB $BOOST_PROGRAM_OPTIONS_LIB $BOOST_THREAD_LIB $BOOST_CHRONO_LIB" |
b7a4ecc1 | 654 | fi |
c8ba8ef6 | 655 | |
35b8af92 | 656 | if test x$use_pkgconfig = xyes; then |
d7002714 | 657 | : dnl |
35b8af92 CF |
658 | m4_ifdef( |
659 | [PKG_CHECK_MODULES], | |
660 | [ | |
6b099402 CF |
661 | PKG_CHECK_MODULES([SSL], [libssl],, [AC_MSG_ERROR(openssl not found.)]) |
662 | PKG_CHECK_MODULES([CRYPTO], [libcrypto],,[AC_MSG_ERROR(libcrypto not found.)]) | |
df377ca8 WL |
663 | if test x$build_bitcoin_utils$build_bitcoind$bitcoin_enable_qt$use_tests != xnononono; then |
664 | PKG_CHECK_MODULES([EVENT], [libevent],, [AC_MSG_ERROR(libevent not found.)]) | |
665 | if test x$TARGET_OS != xwindows; then | |
666 | PKG_CHECK_MODULES([EVENT_PTHREADS], [libevent_pthreads],, [AC_MSG_ERROR(libevent_pthreads not found.)]) | |
667 | fi | |
668 | fi | |
effe8a5f JC |
669 | |
670 | if test "x$use_zmq" = "xyes"; then | |
671 | PKG_CHECK_MODULES([ZMQ],[libzmq >= 4], | |
672 | [AC_DEFINE([ENABLE_ZMQ],[1],[Define to 1 to enable ZMQ functions])], | |
673 | [AC_DEFINE([ENABLE_ZMQ],[0],[Define to 1 to enable ZMQ functions]) | |
674 | AC_MSG_WARN([libzmq version 4.x or greater not found, disabling]) | |
675 | use_zmq=no]) | |
676 | else | |
677 | AC_DEFINE_UNQUOTED([ENABLE_ZMQ],[0],[Define to 1 to enable ZMQ functions]) | |
678 | fi | |
35b8af92 CF |
679 | ] |
680 | ) | |
681 | else | |
c4da0970 NW |
682 | # BUG: Fix this: |
683 | echo 'BUG: configure does not yet check for the following dependencies if pkg-config is not on the system: libcrypto++, libgmp' | |
684 | ||
35b8af92 | 685 | AC_CHECK_HEADER([openssl/crypto.h],,AC_MSG_ERROR(libcrypto headers missing)) |
6b099402 | 686 | AC_CHECK_LIB([crypto], [main],CRYPTO_LIBS=-lcrypto, AC_MSG_ERROR(libcrypto missing)) |
35b8af92 CF |
687 | |
688 | AC_CHECK_HEADER([openssl/ssl.h],, AC_MSG_ERROR(libssl headers missing),) | |
6b099402 | 689 | AC_CHECK_LIB([ssl], [main],SSL_LIBS=-lssl, AC_MSG_ERROR(libssl missing)) |
35b8af92 | 690 | |
df377ca8 WL |
691 | if test x$build_bitcoin_utils$build_bitcoind$bitcoin_enable_qt$use_tests != xnononono; then |
692 | AC_CHECK_HEADER([event2/event.h],, AC_MSG_ERROR(libevent headers missing),) | |
693 | AC_CHECK_LIB([event],[main],EVENT_LIBS=-levent,AC_MSG_ERROR(libevent missing)) | |
694 | if test x$TARGET_OS != xwindows; then | |
695 | AC_CHECK_LIB([event_pthreads],[main],EVENT_PTHREADS_LIBS=-levent_pthreads,AC_MSG_ERROR(libevent_pthreads missing)) | |
696 | fi | |
697 | fi | |
698 | ||
effe8a5f JC |
699 | if test "x$use_zmq" = "xyes"; then |
700 | AC_CHECK_HEADER([zmq.h], | |
701 | [AC_DEFINE([ENABLE_ZMQ],[1],[Define to 1 to enable ZMQ functions])], | |
702 | [AC_MSG_WARN([zmq.h not found, disabling zmq support]) | |
703 | use_zmq=no | |
704 | AC_DEFINE([ENABLE_ZMQ],[0],[Define to 1 to enable ZMQ functions])]) | |
705 | AC_CHECK_LIB([zmq],[zmq_ctx_shutdown],ZMQ_LIBS=-lzmq, | |
706 | [AC_MSG_WARN([libzmq >= 4.0 not found, disabling zmq support]) | |
707 | use_zmq=no | |
708 | AC_DEFINE([ENABLE_ZMQ],[0],[Define to 1 to enable ZMQ functions])]) | |
709 | else | |
710 | AC_DEFINE_UNQUOTED([ENABLE_ZMQ],[0],[Define to 1 to enable ZMQ functions]) | |
711 | fi | |
712 | ||
00bcf223 | 713 | if test "x$use_zmq" = "xyes"; then |
714 | dnl Assume libzmq was built for static linking | |
715 | case $host in | |
716 | *mingw*) | |
717 | ZMQ_CFLAGS="$ZMQ_CFLAGS -DZMQ_STATIC" | |
718 | ;; | |
719 | esac | |
720 | fi | |
c8ba8ef6 | 721 | fi |
35b8af92 | 722 | |
c4da0970 NW |
723 | # These packages don't provide pkgconfig config files across all |
724 | # platforms, so we use older autoconf detection mechanisms: | |
725 | AC_CHECK_HEADER([gmp.h],,AC_MSG_ERROR(libgmp headers missing)) | |
726 | AC_CHECK_LIB([gmp],[[__gmpn_sub_n]],GMP_LIBS=-lgmp, [AC_MSG_ERROR(libgmp missing)]) | |
727 | ||
728 | AC_CHECK_HEADER([gmpxx.h],,AC_MSG_ERROR(libgmpxx headers missing)) | |
729 | AC_CHECK_LIB([gmpxx],[main],GMPXX_LIBS=-lgmpxx, [AC_MSG_ERROR(libgmpxx missing)]) | |
730 | ||
802ea76b SB |
731 | RUST_LIBS="" |
732 | if test x$enable_rust != xno; then | |
733 | RUST_LIBS="-lrustzcash" | |
734 | fi | |
735 | ||
daad2c27 JG |
736 | dnl Check for OpenMP support |
737 | AX_OPENMP( | |
738 | [AC_DEFINE(HAVE_OPENMP, 1, [Define if OpenMP is enabled]) | |
739 | AM_CONDITIONAL([HAVE_OPENMP], [true]) | |
740 | CXXFLAGS="$CXXFLAGS $OPENMP_CXXFLAGS"], | |
741 | [AC_MSG_WARN([OpenMP not supported, disabling multithreading]) | |
742 | AC_DEFINE(HAVE_OPENMP, 0, [Define if OpenMP is enabled]) | |
743 | AM_CONDITIONAL([HAVE_OPENMP], [false])]) | |
744 | ||
8f23c734 JG |
745 | # Gitian uses a config.site that sets depends_prefix, and then sets --prefix=/ |
746 | # build.sh just uses --prefix | |
747 | if test x$depends_prefix != x; then | |
748 | LIBSNARK_DEPINST="$depends_prefix" | |
749 | else | |
750 | LIBSNARK_DEPINST="$prefix" | |
751 | fi | |
752 | ||
704337b2 JG |
753 | # Additional Zcash flags |
754 | AX_CHECK_COMPILE_FLAG([-fwrapv],[CXXFLAGS="$CXXFLAGS -fwrapv"]) | |
755 | AX_CHECK_COMPILE_FLAG([-fno-strict-aliasing],[CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"]) | |
756 | AX_CHECK_COMPILE_FLAG([-Wno-builtin-declaration-mismatch],[CXXFLAGS="$CXXFLAGS -Wno-builtin-declaration-mismatch"],,[[$CXXFLAG_WERROR]]) | |
757 | ||
36d8b2ef | 758 | LIBZCASH_LIBS="-lgmp -lgmpxx -lboost_system -lcrypto -lsodium $RUST_LIBS" |
c4da0970 | 759 | |
e18e1001 | 760 | AC_MSG_CHECKING([whether to build bitcoind]) |
f930341d LD |
761 | AM_CONDITIONAL([BUILD_BITCOIND], [test x$build_bitcoind = xyes]) |
762 | AC_MSG_RESULT($build_bitcoind) | |
763 | ||
66a89c08 | 764 | AC_MSG_CHECKING([whether to build utils (zcash-cli zcash-tx)]) |
c101c769 | 765 | AM_CONDITIONAL([BUILD_BITCOIN_UTILS], [test x$build_bitcoin_utils = xyes]) |
766 | AC_MSG_RESULT($build_bitcoin_utils) | |
f930341d | 767 | |
cdd36c6c CF |
768 | AC_MSG_CHECKING([whether to build libraries]) |
769 | AM_CONDITIONAL([BUILD_BITCOIN_LIBS], [test x$build_bitcoin_libs = xyes]) | |
770 | if test x$build_bitcoin_libs = xyes; then | |
771 | AC_DEFINE(HAVE_CONSENSUS_LIB, 1, [Define this symbol if the consensus lib has been built]) | |
08d6b02d | 772 | AC_CONFIG_FILES([libzcashconsensus.pc:libzcashconsensus.pc.in]) |
cdd36c6c | 773 | fi |
e463edc1 | 774 | |
cdd36c6c CF |
775 | AC_MSG_RESULT($build_bitcoin_libs) |
776 | ||
35b8af92 CF |
777 | AC_LANG_POP |
778 | ||
779 | if test "x$use_ccache" != "xno"; then | |
e18e1001 | 780 | AC_MSG_CHECKING(if ccache should be used) |
35b8af92 CF |
781 | if test x$CCACHE = x; then |
782 | if test "x$use_ccache" = "xyes"; then | |
783 | AC_MSG_ERROR([ccache not found.]); | |
784 | else | |
35b8af92 CF |
785 | use_ccache=no |
786 | fi | |
787 | else | |
788 | use_ccache=yes | |
789 | CC="$ac_cv_path_CCACHE $CC" | |
790 | CXX="$ac_cv_path_CCACHE $CXX" | |
791 | fi | |
792 | AC_MSG_RESULT($use_ccache) | |
793 | fi | |
386efb76 CF |
794 | if test "x$use_ccache" = "xyes"; then |
795 | AX_CHECK_PREPROC_FLAG([-Qunused-arguments],[CPPFLAGS="-Qunused-arguments $CPPFLAGS"]) | |
796 | fi | |
35b8af92 | 797 | |
4f9e993b WL |
798 | dnl enable wallet |
799 | AC_MSG_CHECKING([if wallet should be enabled]) | |
800 | if test x$enable_wallet != xno; then | |
801 | AC_MSG_RESULT(yes) | |
802 | AC_DEFINE_UNQUOTED([ENABLE_WALLET],[1],[Define to 1 to enable wallet functions]) | |
803 | ||
804 | else | |
805 | AC_MSG_RESULT(no) | |
4f9e993b WL |
806 | fi |
807 | ||
2cc0a252 JG |
808 | dnl enable mining |
809 | AC_MSG_CHECKING([if mining should be enabled]) | |
810 | if test x$enable_mining != xno; then | |
811 | AC_MSG_RESULT(yes) | |
812 | AC_DEFINE(ENABLE_MINING, 1, [Define to 1 to enable mining functions]) | |
813 | ||
814 | else | |
815 | AC_MSG_RESULT(no) | |
816 | fi | |
817 | ||
802ea76b SB |
818 | dnl enable rust |
819 | AC_MSG_CHECKING([if rust should be enabled]) | |
820 | if test x$enable_rust != xno; then | |
821 | AC_MSG_RESULT(yes) | |
822 | AC_DEFINE(ENABLE_RUST, 1, [Define to 1 to enable Rust language dependent functions]) | |
823 | ||
824 | else | |
825 | AC_MSG_RESULT(no) | |
826 | fi | |
827 | ||
f200002c JG |
828 | AM_CONDITIONAL([ENABLE_ZMQ], [test "x$use_zmq" = "xyes"]) |
829 | ||
99eb947a S |
830 | AM_CONDITIONAL([ENABLE_PROTON], [test "x$use_proton" = "xyes"]) |
831 | ||
e18e1001 | 832 | AC_MSG_CHECKING([whether to build test_bitcoin]) |
35b8af92 | 833 | if test x$use_tests = xyes; then |
e18e1001 | 834 | AC_MSG_RESULT([yes]) |
2762638a | 835 | BUILD_TEST="yes" |
e18e1001 LD |
836 | else |
837 | AC_MSG_RESULT([no]) | |
2762638a | 838 | BUILD_TEST="" |
35b8af92 CF |
839 | fi |
840 | ||
e432a5f0 | 841 | AC_MSG_CHECKING([whether to reduce exports]) |
3ee028f1 | 842 | if test x$use_reduce_exports = xyes; then |
e432a5f0 CF |
843 | AC_MSG_RESULT([yes]) |
844 | else | |
845 | AC_MSG_RESULT([no]) | |
846 | fi | |
847 | ||
38ba3c66 | 848 | if test x$build_bitcoin_utils$build_bitcoin_libs$build_bitcoind$use_tests = xnononono; then |
abecfc42 | 849 | AC_MSG_ERROR([No targets! Please specify at least one of: --with-utils --with-libs --with-daemon or --enable-tests]) |
a9dbcf03 LD |
850 | fi |
851 | ||
35b8af92 | 852 | AM_CONDITIONAL([TARGET_DARWIN], [test x$TARGET_OS = xdarwin]) |
b62bbb1f | 853 | AM_CONDITIONAL([BUILD_DARWIN], [test x$BUILD_OS = xdarwin]) |
35b8af92 | 854 | AM_CONDITIONAL([TARGET_WINDOWS], [test x$TARGET_OS = xwindows]) |
b77b4eda | 855 | AM_CONDITIONAL([ENABLE_WALLET],[test x$enable_wallet = xyes]) |
2cc0a252 | 856 | AM_CONDITIONAL([ENABLE_MINING],[test x$enable_mining = xyes]) |
802ea76b | 857 | AM_CONDITIONAL([ENABLE_RUST],[test x$enable_rust = xyes]) |
2762638a | 858 | AM_CONDITIONAL([ENABLE_TESTS],[test x$BUILD_TEST = xyes]) |
b77b4eda | 859 | AM_CONDITIONAL([USE_LCOV],[test x$use_lcov = xyes]) |
d5aab704 | 860 | AM_CONDITIONAL([GLIBC_BACK_COMPAT],[test x$use_glibc_compat = xyes]) |
56734f4b | 861 | AM_CONDITIONAL([HARDEN],[test x$use_hardening = xyes]) |
c4379e3a JG |
862 | AM_CONDITIONAL([ASAN],[test x$use_asan = xyes]) |
863 | AM_CONDITIONAL([TSAN],[test x$use_tsan = xyes]) | |
35b8af92 CF |
864 | |
865 | AC_DEFINE(CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MAJOR, [Major version]) | |
866 | AC_DEFINE(CLIENT_VERSION_MINOR, _CLIENT_VERSION_MINOR, [Minor version]) | |
867 | AC_DEFINE(CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION, [Build revision]) | |
868 | AC_DEFINE(CLIENT_VERSION_BUILD, _CLIENT_VERSION_BUILD, [Version Build]) | |
869 | AC_DEFINE(CLIENT_VERSION_IS_RELEASE, _CLIENT_VERSION_IS_RELEASE, [Version is release]) | |
870 | AC_DEFINE(COPYRIGHT_YEAR, _COPYRIGHT_YEAR, [Version is release]) | |
871 | AC_SUBST(CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MAJOR) | |
872 | AC_SUBST(CLIENT_VERSION_MINOR, _CLIENT_VERSION_MINOR) | |
873 | AC_SUBST(CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION) | |
874 | AC_SUBST(CLIENT_VERSION_BUILD, _CLIENT_VERSION_BUILD) | |
875 | AC_SUBST(CLIENT_VERSION_IS_RELEASE, _CLIENT_VERSION_IS_RELEASE) | |
876 | AC_SUBST(COPYRIGHT_YEAR, _COPYRIGHT_YEAR) | |
c5d645e2 CF |
877 | AC_SUBST(BITCOIN_DAEMON_NAME) |
878 | AC_SUBST(BITCOIN_CLI_NAME) | |
879 | AC_SUBST(BITCOIN_TX_NAME) | |
35b8af92 | 880 | |
e432a5f0 | 881 | AC_SUBST(RELDFLAGS) |
5dd887fd | 882 | AC_SUBST(ERROR_CXXFLAGS) |
c4379e3a JG |
883 | AC_SUBST(SAN_CXXFLAGS) |
884 | AC_SUBST(SAN_LDFLAGS) | |
c459de2f CF |
885 | AC_SUBST(HARDENED_CXXFLAGS) |
886 | AC_SUBST(HARDENED_CPPFLAGS) | |
887 | AC_SUBST(HARDENED_LDFLAGS) | |
888 | AC_SUBST(PIC_FLAGS) | |
889 | AC_SUBST(PIE_FLAGS) | |
e0077de5 | 890 | AC_SUBST(LIBTOOL_APP_LDFLAGS) |
35b8af92 | 891 | AC_SUBST(BOOST_LIBS) |
35b8af92 CF |
892 | AC_SUBST(TESTDEFS) |
893 | AC_SUBST(LEVELDB_TARGET_FLAGS) | |
d7002714 CF |
894 | AC_SUBST(CRYPTO_LIBS) |
895 | AC_SUBST(SSL_LIBS) | |
896 | AC_SUBST(EVENT_LIBS) | |
897 | AC_SUBST(EVENT_PTHREADS_LIBS) | |
898 | AC_SUBST(ZMQ_LIBS) | |
c4da0970 NW |
899 | AC_SUBST(GMP_LIBS) |
900 | AC_SUBST(GMPXX_LIBS) | |
8f23c734 | 901 | AC_SUBST(LIBSNARK_DEPINST) |
1785bdb9 | 902 | AC_SUBST(LIBZCASH_LIBS) |
99eb947a | 903 | AC_SUBST(PROTON_LIBS) |
b6a990de | 904 | AC_CONFIG_FILES([Makefile src/Makefile doc/man/Makefile src/test/buildenv.py]) |
35b8af92 | 905 | AC_CONFIG_FILES([qa/pull-tester/run-bitcoind-for-test.sh],[chmod +x qa/pull-tester/run-bitcoind-for-test.sh]) |
7667850d | 906 | AC_CONFIG_FILES([qa/pull-tester/tests-config.sh],[chmod +x qa/pull-tester/tests-config.sh]) |
07a99017 PW |
907 | |
908 | dnl boost's m4 checks do something really nasty: they export these vars. As a | |
909 | dnl result, they leak into secp256k1's configure and crazy things happen. | |
910 | dnl Until this is fixed upstream and we've synced, we'll just un-export them. | |
0dc86138 | 911 | CPPFLAGS_TEMP="$CPPFLAGS" |
cf61b544 | 912 | unset CPPFLAGS |
0dc86138 CF |
913 | CPPFLAGS="$CPPFLAGS_TEMP" |
914 | ||
915 | LDFLAGS_TEMP="$LDFLAGS" | |
cf61b544 | 916 | unset LDFLAGS |
0dc86138 CF |
917 | LDFLAGS="$LDFLAGS_TEMP" |
918 | ||
919 | LIBS_TEMP="$LIBS" | |
920 | unset LIBS | |
921 | LIBS="$LIBS_TEMP" | |
922 | ||
923 | PKGCONFIG_PATH_TEMP="$PKG_CONFIG_PATH" | |
924 | unset PKG_CONFIG_PATH | |
925 | PKG_CONFIG_PATH="$PKGCONFIG_PATH_TEMP" | |
926 | ||
927 | PKGCONFIG_LIBDIR_TEMP="$PKG_CONFIG_LIBDIR" | |
928 | unset PKG_CONFIG_LIBDIR | |
929 | PKG_CONFIG_LIBDIR="$PKGCONFIG_LIBDIR_TEMP" | |
930 | ||
c1afe40a | 931 | ac_configure_args="${ac_configure_args} --disable-shared --with-pic --with-bignum=no --enable-module-recovery" |
26a8f68e | 932 | AC_CONFIG_SUBDIRS([src/secp256k1 src/snark src/univalue]) |
07a99017 | 933 | |
35b8af92 | 934 | AC_OUTPUT |
a98356fe CF |
935 | |
936 | dnl Taken from https://wiki.debian.org/RpathIssue | |
937 | case $host in | |
938 | *-*-linux-gnu) | |
939 | AC_MSG_RESULT([Fixing libtool for -rpath problems.]) | |
940 | sed < libtool > libtool-2 \ | |
941 | 's/^hardcode_libdir_flag_spec.*$'/'hardcode_libdir_flag_spec=" -D__LIBTOOL_IS_A_FOOL__ "/' | |
942 | mv libtool-2 libtool | |
943 | chmod 755 libtool | |
944 | ;; | |
945 | esac | |
0bcd85be JS |
946 | |
947 | echo | |
948 | echo "Options used to compile and link:" | |
949 | echo " with wallet = $enable_wallet" | |
0100c794 JG |
950 | echo " with rust = $enable_rust" |
951 | echo " with proton = $use_proton" | |
0bcd85be JS |
952 | echo " with zmq = $use_zmq" |
953 | echo " with test = $use_tests" | |
954 | echo " debug enabled = $enable_debug" | |
5dd887fd | 955 | echo " werror = $enable_werror" |
0bcd85be JS |
956 | echo |
957 | echo " target os = $TARGET_OS" | |
958 | echo " build os = $BUILD_OS" | |
959 | echo | |
960 | echo " CC = $CC" | |
961 | echo " CFLAGS = $CFLAGS" | |
962 | echo " CPPFLAGS = $CPPFLAGS" | |
963 | echo " CXX = $CXX" | |
964 | echo " CXXFLAGS = $CXXFLAGS" | |
965 | echo " LDFLAGS = $LDFLAGS" | |
bc9fff11 | 966 | echo " ARFLAGS = $ARFLAGS" |
0bcd85be | 967 | echo |