1 dnl require autoconf 2.60 (AS_ECHO/AS_ECHO_N)
3 define(_CLIENT_VERSION_MAJOR, 0)
4 define(_CLIENT_VERSION_MINOR, 8)
5 define(_CLIENT_VERSION_REVISION, 99)
6 define(_CLIENT_VERSION_BUILD, 0)
7 define(_CLIENT_VERSION_IS_RELEASE, false)
8 define(_COPYRIGHT_YEAR, 2013)
9 AC_INIT([Bitcoin],[_CLIENT_VERSION_MAJOR._CLIENT_VERSION_MINOR._CLIENT_VERSION_REVISION],[
[email protected]],[bitcoin])
10 AC_CONFIG_AUX_DIR([src/build-aux])
11 AC_CONFIG_MACRO_DIR([src/m4])
13 AH_TOP([#ifndef BITCOIN_CONFIG_H])
14 AH_TOP([#define BITCOIN_CONFIG_H])
15 AH_BOTTOM([#endif //BITCOIN_CONFIG_H])
17 # This m4 will only be used if a system copy cannot be found. This is helpful
18 # on systems where autotools are installed but the pkg-config macros are not in
19 # a default location. It is currently used for building on OSX where autotools
20 # are preinstalled but pkg-config comes from macports or homebrew. It should
21 # probably be removed when building on <= 10.6 is no longer supported.
24 dnl faketime breaks configure and is only needed for make. Disable it here.
27 dnl ==============================================================
28 dnl Setup for automake
29 dnl ==============================================================
31 AM_INIT_AUTOMAKE([no-define subdir-objects foreign])
33 dnl faketime messes with timestamps and causes configure to be re-run.
34 dnl --disable-maintainer-mode can be used to bypass this.
35 AM_MAINTAINER_MODE([enable])
37 dnl make the compilation flags quiet unless V=1 is used
38 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
40 AC_ARG_WITH([miniupnpc],
41 [AS_HELP_STRING([--with-miniupnpc],
42 [enable UPNP (default is yes if libminiupnpc is found)])],
46 AC_ARG_ENABLE([upnp-default],
47 [AS_HELP_STRING([--enable-upnp-default],
48 [if UPNP is enabled, turn it on at startup (default is no)])],
49 [use_upnp_default=$enableval],
50 [use_upnp_default=no])
52 dnl enable ipv6 support
54 [AS_HELP_STRING([--enable-ipv6],
55 [enable ipv6 (default is yes)])],
56 [use_ipv6=$enableval],
61 [AS_HELP_STRING([--with-qt],
62 [enable qt (default is yes)])],
65 AC_DEFUN([BITCOIN_QT_FAIL],[
66 if test "x$use_qt" = "xauto"; then
67 AC_MSG_WARN([$1; bitcoin-qt frontend will not be built])
73 AC_DEFUN([BITCOIN_QT_CHECK],[
74 if test "x$use_qt" != "xno"; then
82 AC_DEFUN([BITCOIN_QT_PATH_PROGS],[
84 AC_PATH_PROGS($1,$2,$3,$4)
85 if test "x$$1" = "x"; then
86 BITCOIN_QT_FAIL([$1 not found])
92 AS_HELP_STRING([--enable-tests],[compile tests (default is yes)]),
93 [use_tests=$enableval],
96 AC_ARG_WITH([comparison-tool],
97 AS_HELP_STRING([--with-comparison-tool],[path to java comparison tool (requires --enable-tests)]),
98 [use_comparison_tool=$withval],
99 [use_comparison_tool=no])
101 AC_ARG_ENABLE([comparison-tool-reorg-tests],
102 AS_HELP_STRING([--enable-comparison-tool-reorg-tests],[enable expensive reorg tests in the comparison tool (default no)]),
103 [use_comparison_tool_reorg_tests=$enableval],
104 [use_comparison_tool_reorg_tests=no])
106 AC_ARG_WITH([qrencode],
107 [AS_HELP_STRING([--with-qrencode],
108 [enable QR code support (default is yes if qt is enabled and libqrencode is found)])],
112 AC_ARG_WITH([qtdbus],
113 [AS_HELP_STRING([--with-qtdbus],
114 [enable DBus support (default is yes if qt is enabled and QtDBus is found)])],
118 AC_ARG_ENABLE([hardening],
119 [AS_HELP_STRING([--enable-hardening],
120 [attempt to harden the resulting executables (default is yes)])],
121 [use_hardening=$enableval],
124 AC_ARG_ENABLE([ccache],
125 [AS_HELP_STRING([--enable-ccache],
126 [enable building with ccache (default is yes if ccache is found)])],
127 [use_ccache=$enableval],
130 AC_ARG_ENABLE([lcov],
131 [AS_HELP_STRING([--enable-lcov],
132 [enable lcov testing (default is no)])],
136 AC_ARG_WITH([qt-incdir],[AS_HELP_STRING([--with-qt-incdir=INC_DIR],[specify qt include path (overridden by pkgconfig)])], [qt_include_path=$withval], [])
137 AC_ARG_WITH([qt-libdir],[AS_HELP_STRING([--with-qt-libdir=LIB_DIR],[specify qt lib path (overridden by pkgconfig)])], [qt_lib_path=$withval], [])
138 AC_ARG_WITH([qt-bindir],[AS_HELP_STRING([--with-qt-bindir=BIN_DIR],[specify qt bin path])], [qt_bin_path=$withval], [])
139 AC_ARG_WITH([qt-plugindir],[AS_HELP_STRING([--with-qt-plugindir=PLUGIN_DIR],[specify qt plugin path (overridden by pkgconfig)])], [qt_plugin_path=$withval], [])
140 AC_ARG_WITH([protoc-bindir],[AS_HELP_STRING([--with-protoc-bindir=BIN_DIR],[specify protoc bin path])], [protoc_bin_path=$withval], [])
143 AC_CONFIG_SRCDIR([src])
144 AC_CONFIG_HEADERS([src/bitcoin-config.h])
146 dnl Checks for programs.
153 m4_ifdef([AC_PROG_OBJCXX],[AC_PROG_OBJCXX])
157 AC_PATH_TOOL(RANLIB, ranlib)
158 AC_PATH_TOOL(STRIP, strip)
159 AC_PATH_TOOL(GCOV, gcov)
160 AC_PATH_PROG(LCOV, lcov)
161 AC_PATH_PROG(JAVA, java)
162 AC_PATH_PROG(GENHTML, genhtml)
163 AC_PATH_PROG([GIT], [git])
164 BITCOIN_QT_PATH_PROGS([MOC], [moc-qt4 moc4 moc],, $qt_bin_path:$PATH)
165 BITCOIN_QT_PATH_PROGS([UIC], [uic-qt4 uic4 uic],, $qt_bin_path:$PATH)
166 BITCOIN_QT_PATH_PROGS([RCC], [rcc-qt4 rcc4 rcc],, $qt_bin_path:$PATH)
167 BITCOIN_QT_PATH_PROGS([LRELEASE], [lrelease-qt4 lrelease4 lrelease],, $qt_bin_path:$PATH)
168 BITCOIN_QT_PATH_PROGS([PROTOC], [protoc],, $protoc_bin_path:$PATH)
169 AC_PATH_PROG(CCACHE,ccache)
170 AC_PATH_PROGS([LUPDATE], [lupdate-qt4 lupdate4 lupdate],, $qt_bin_path:$PATH)
171 AC_PATH_PROG(XGETTEXT,xgettext)
172 AC_PATH_PROG(HEXDUMP,hexdump)
175 ## TODO: Remove these hard-coded paths and flags. They are here for the sake of
176 ## compatibility with the legacy buildsystem.
178 CXXFLAGS="$CXXFLAGS -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter"
179 CPPFLAGS="$CPPFLAGS -DBOOST_SPIRIT_THREADSAFE -DHAVE_BUILD_INFO -D__STDC_FORMAT_MACROS"
187 #pkgconfig does more harm than good with MinGW
191 AC_CHECK_LIB([mingwthrd], [main],, AC_MSG_ERROR(lib missing))
192 AC_CHECK_LIB([kernel32], [main],, AC_MSG_ERROR(lib missing))
193 AC_CHECK_LIB([user32], [main],, AC_MSG_ERROR(lib missing))
194 AC_CHECK_LIB([gdi32], [main],, AC_MSG_ERROR(lib missing))
195 AC_CHECK_LIB([comdlg32], [main],, AC_MSG_ERROR(lib missing))
196 AC_CHECK_LIB([winspool], [main],, AC_MSG_ERROR(lib missing))
197 AC_CHECK_LIB([winmm], [main],, AC_MSG_ERROR(lib missing))
198 AC_CHECK_LIB([shell32], [main],, AC_MSG_ERROR(lib missing))
199 AC_CHECK_LIB([comctl32], [main],, AC_MSG_ERROR(lib missing))
200 AC_CHECK_LIB([ole32], [main],, AC_MSG_ERROR(lib missing))
201 AC_CHECK_LIB([oleaut32], [main],, AC_MSG_ERROR(lib missing))
202 AC_CHECK_LIB([uuid], [main],, AC_MSG_ERROR(lib missing))
203 AC_CHECK_LIB([rpcrt4], [main],, AC_MSG_ERROR(lib missing))
204 AC_CHECK_LIB([advapi32], [main],, AC_MSG_ERROR(lib missing))
205 AC_CHECK_LIB([ws2_32], [main],, AC_MSG_ERROR(lib missing))
206 AC_CHECK_LIB([mswsock], [main],, AC_MSG_ERROR(lib missing))
207 AC_CHECK_LIB([shlwapi], [main],, AC_MSG_ERROR(lib missing))
208 AC_CHECK_LIB([iphlpapi], [main],, AC_MSG_ERROR(lib missing))
209 AC_CHECK_LIB([crypt32], [main],, AC_MSG_ERROR(lib missing))
211 AX_CHECK_LINK_FLAG([[-static-libgcc]],[LDFLAGS="$LDFLAGS -static-libgcc"])
212 AX_CHECK_LINK_FLAG([[-static-libstdc++]],[LDFLAGS="$LDFLAGS -static-libstdc++"])
214 AC_PATH_PROG([MAKENSIS], [makensis], none)
215 if test x$MAKENSIS = xnone; then
216 AC_MSG_WARN("makensis not found. Cannot create installer.")
219 AC_PATH_TOOL(WINDRES, windres, none)
220 if test x$WINDRES = xnone; then
221 AC_MSG_ERROR("windres not found")
224 CPPFLAGS="$CPPFLAGS -D_MT -DWIN32 -D_WINDOWS -DBOOST_THREAD_USE_LIB -D__USE_MINGW_ANSI_STDIO"
225 LEVELDB_TARGET_FLAGS="TARGET_OS=OS_WINDOWS_CROSSCOMPILE"
226 CXXFLAGS="$CXXFLAGS -w"
230 LEVELDB_TARGET_FLAGS="TARGET_OS=Darwin"
231 if test x$cross_compiling != xyes; then
232 AC_CHECK_PROG([PORT],port, port)
233 if test x$PORT = xport; then
234 dnl add default macports paths
235 CPPFLAGS="$CPPFLAGS -I/opt/local/include -I/opt/local/include/db48"
236 LIBS="$LIBS -L/opt/local/lib -L/opt/local/lib/db48"
239 AC_CHECK_PROG([BREW],brew, brew)
240 if test x$BREW = xbrew; then
241 dnl add default homebrew paths
242 openssl_prefix=`$BREW --prefix openssl`
243 bdb_prefix=`$BREW --prefix berkeley-db4`
244 export PKG_CONFIG_PATH="$openssl_prefix/lib/pkgconfig:$PKG_CONFIG_PATH"
245 CPPFLAGS="$CPPFLAGS -I$bdb_prefix/include"
246 LIBS="$LIBS -L/$bdb_prefix/lib"
251 MOC_DEFS="-DQ_OS_MAC"
252 base_frameworks="-framework Foundation -framework ApplicationServices -framework AppKit"
253 AX_CHECK_LINK_FLAG([[$base_frameworks]],[LIBS="$LIBS $base_frameworks"],[AC_MSG_ERROR(could not find base frameworks)])
256 CPPFLAGS="$CPPFLAGS -DMAC_OSX"
257 TESTDEFS="-DBOOST_TEST_DYN_LINK"
260 TESTDEFS="-DBOOST_TEST_DYN_LINK"
264 if test x$use_comparison_tool != xno; then
265 AC_SUBST(JAVA_COMPARISON_TOOL, $use_comparison_tool)
268 if test x$use_comparison_tool_reorg_tests != xno; then
269 if test x$use_comparison_tool == x; then
270 AC_MSG_ERROR("comparison tool reorg tests but comparison tool was not specified")
272 AC_SUBST(COMPARISON_TOOL_REORG_TESTS, 1)
274 AC_SUBST(COMPARISON_TOOL_REORG_TESTS, 0)
277 if test x$use_lcov == xyes; then
278 if test x$LCOV == x; then
279 AC_MSG_ERROR("lcov testing requested but lcov not found")
281 if test x$GCOV == x; then
282 AC_MSG_ERROR("lcov testing requested but gcov not found")
284 if test x$JAVA == x; then
285 AC_MSG_ERROR("lcov testing requested but java not found")
287 if test x$GENHTML == x; then
288 AC_MSG_ERROR("lcov testing requested but genhtml not found")
290 if test x$use_comparison_tool == x; then
291 AC_MSG_ERROR("lcov testing requested but comparison tool was not specified")
293 LCOV="$LCOV --gcov-tool=$GCOV"
294 AX_CHECK_COMPILE_FLAG([--coverage],[CXXFLAGS="$CXXFLAGS --coverage"],
295 [AC_MSG_ERROR("lcov testing requested but --coverage flag does not work")])
298 dnl Require little endian
299 AC_C_BIGENDIAN([AC_MSG_ERROR("Big Endian not supported")])
301 dnl Check for pthread compile/link requirements
303 INCLUDES="$INCLUDES $PTHREAD_CFLAGS"
305 # The following macro will add the necessary defines to bitcoin-config.h, but
306 # they also need to be passed down to any subprojects. Pull the results out of
307 # the cache and add them to CPPFLAGS.
310 if test x$ac_cv_sys_file_offset_bits != x &&
311 test x$ac_cv_sys_file_offset_bits != xno &&
312 test x$ac_cv_sys_file_offset_bits != xunknown; then
313 CPPFLAGS="$CPPFLAGS -D_FILE_OFFSET_BITS=$ac_cv_sys_file_offset_bits"
316 if test x$ac_cv_sys_large_files != x &&
317 test x$ac_cv_sys_large_files != xno &&
318 test x$ac_cv_sys_large_files != xunknown; then
319 CPPFLAGS="$CPPFLAGS -D_LARGE_FILES=$ac_cv_sys_large_files"
322 AX_CHECK_LINK_FLAG([[-Wl,--large-address-aware]], [LDFLAGS="$LDFLAGS -Wl,--large-address-aware"])
324 if test x$use_hardening != xno; then
325 AX_CHECK_COMPILE_FLAG([-Wstack-protector],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -Wstack-protector"])
326 AX_CHECK_COMPILE_FLAG([-fPIE],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fPIE"])
328 AX_CHECK_PREPROC_FLAG([-D_FORTIFY_SOURCE=2],[HARDENED_CPPFLAGS="$HARDENED_CPPFLAGS -D_FORTIFY_SOURCE=2"])
330 AX_CHECK_LINK_FLAG([[-Wl,--dynamicbase]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--dynamicbase"])
331 AX_CHECK_LINK_FLAG([[-Wl,--nxcompat]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -Wl,--nxcompat"])
332 AX_CHECK_LINK_FLAG([[-Wl,-z,relro]], [LDFLAGS="-Wl,-z,relro"])
333 AX_CHECK_LINK_FLAG([[-Wl,-z,now]], [LDFLAGS="-Wl,-z,now"])
335 if test x$TARGET_OS != xwindows; then
336 # -fstack-protector-all can produce broken binaries with mingw
337 AX_CHECK_COMPILE_FLAG([-fno-stack-protector],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fno-stack-protector"])
338 AX_CHECK_COMPILE_FLAG([-fstack-protector-all],[HARDENED_CXXFLAGS="$HARDENED_CXXFLAGS -fstack-protector-all"])
340 # -pie will link successfully with MinGW, but it's unsupported and leads to undeterministic binaries
341 AX_CHECK_LINK_FLAG([[-pie]], [HARDENED_LDFLAGS="$HARDENED_LDFLAGS -pie"])
344 CXXFLAGS="$CXXFLAGS $HARDENED_CXXFLAGS"
345 CPPFLAGS="$CPPFLAGS $HARDENED_CPPFLAGS"
346 LDFLAGS="$LDFLAGS $HARDENED_LDFLAGS"
347 OBJCXXFLAGS="$CXXFLAGS"
350 dnl this flag screws up non-darwin gcc even when the check fails. special-case it.
351 if test x$TARGET_OS = xdarwin; then
352 AX_CHECK_LINK_FLAG([[-Wl,-dead_strip]], [LDFLAGS="$LDFLAGS -Wl,-dead_strip"])
355 AC_CHECK_HEADERS([stdio.h stdlib.h unistd.h strings.h sys/types.h sys/stat.h])
357 dnl Check for MSG_NOSIGNAL
358 AC_MSG_CHECKING(for MSG_NOSIGNAL)
359 AC_TRY_COMPILE([#include <sys/socket.h>],
360 [ int f = MSG_NOSIGNAL; ],
361 [ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_MSG_NOSIGNAL, 1,[Define this symbol if you have MSG_NOSIGNAL]) ],
365 dnl Check for libdb_cxx
368 dnl Check for libminiupnpc (optional)
369 if test x$use_upnp != xno; then
370 AC_CHECK_LIB([miniupnpc], [main],, [have_miniupnpc=no])
373 dnl Check for boost libs
377 AX_BOOST_PROGRAM_OPTIONS
381 if test x$use_tests = xyes; then
383 if test x$HEXDUMP = x; then
384 AC_MSG_ERROR(hexdump is required for tests)
388 AX_BOOST_UNIT_TEST_FRAMEWORK
391 BOOST_LIBS="$BOOST_LDFLAGS $BOOST_SYSTEM_LIB $BOOST_FILESYSTEM_LIB $BOOST_PROGRAM_OPTIONS_LIB $BOOST_THREAD_LIB"
392 BOOST_INCLUDES="$BOOST_CPPFLAGS"
394 dnl Boost >= 1.50 uses sleep_for rather than the now-deprecated sleep, however
395 dnl it was broken from 1.50 to 1.52 when backed by nanosleep. Use sleep_for if
396 dnl a working version is available, else fall back to sleep. sleep was removed
398 dnl If neither is available, abort.
399 dnl If sleep_for is used, boost_chrono becomes a requirement.
400 if test x$ax_cv_boost_chrono = xyes; then
402 LIBS="$LIBS $BOOST_LIBS $BOOST_CHRONO_LIB"
404 #include <boost/thread/thread.hpp>
405 #include <boost/version.hpp>
407 #if BOOST_VERSION >= 105000 && (!defined(BOOST_HAS_NANOSLEEP) || BOOST_VERSION >= 105200)
408 boost::this_thread::sleep_for(boost::chrono::milliseconds(0));
413 [boost_sleep=yes; BOOST_LIBS="$BOOST_LIBS $BOOST_CHRONO_LIB";
414 AC_DEFINE(HAVE_WORKING_BOOST_SLEEP_FOR, 1, [Define this symbol if boost sleep_for works])],
419 if test x$boost_sleep != xyes; then
421 LIBS="$LIBS $BOOST_LIBS"
423 #include <boost/version.hpp>
424 #include <boost/thread.hpp>
425 #include <boost/date_time/posix_time/posix_time_types.hpp>
427 #if BOOST_VERSION <= 105600
428 boost::this_thread::sleep(boost::posix_time::milliseconds(0));
433 [boost_sleep=yes; AC_DEFINE(HAVE_WORKING_BOOST_SLEEP, 1, [Define this symbol if boost sleep works])],
438 if test x$boost_sleep != xyes; then
439 AC_MSG_ERROR(No working boost sleep implementation found)
442 if test x$use_pkgconfig = xyes; then
444 if test x$PKG_CONFIG == x; then
445 AC_MSG_ERROR(pkg-config not found.)
452 PKG_CHECK_MODULES([SSL], [libssl], [INCLUDES="$INCLUDES $SSL_CFLAGS"; LIBS="$LIBS $SSL_LIBS"], [AC_MSG_ERROR(openssl not found.)])
453 PKG_CHECK_MODULES([CRYPTO], [libcrypto], [INCLUDES="$INCLUDES $CRYPTO_CFLAGS"; LIBS="$LIBS $CRYPTO_LIBS"], [AC_MSG_ERROR(libcrypto not found.)])
456 PKG_CHECK_MODULES([QT], [QtCore QtGui QtNetwork], [QT_INCLUDES="$QT_CFLAGS"; have_qt=yes],[
458 BITCOIN_QT_FAIL([Qt dependencies not found])
460 if test x$use_tests = xyes; then
461 PKG_CHECK_MODULES([QT_TEST], [QtTest], [QT_TEST_INCLUDES="$QT_TEST_CFLAGS"; have_qt_test=yes], [have_qt_test=no])
463 if test x$use_dbus != xno; then
464 PKG_CHECK_MODULES([QT_DBUS], [QtDBus], [QT_DBUS_INCLUDES="$QT_DBUS_CFLAGS"; have_qt_dbus=yes], [have_qt_dbus=no])
466 if test x$use_qr != xno; then
467 PKG_CHECK_MODULES([QR], [libqrencode], [have_qrencode=yes], [have_qrencode=no])
469 PKG_CHECK_MODULES([PROTOBUF], [protobuf], [have_protobuf=yes], [AC_MSG_ERROR(libprotobuf not found.)])
474 AC_CHECK_HEADER([openssl/crypto.h],,AC_MSG_ERROR(libcrypto headers missing))
475 AC_CHECK_LIB([crypto], [main],, AC_MSG_ERROR(libcrypto missing))
477 AC_CHECK_HEADER([openssl/ssl.h],, AC_MSG_ERROR(libssl headers missing),)
478 AC_CHECK_LIB([ssl], [main],, AC_MSG_ERROR(libssl missing))
483 if test x$qt_lib_path != x; then
484 QT_LIBS="$QT_LIBS -L$qt_lib_path"
487 if test x$qt_plugin_path != x; then
488 QT_LIBS="$QT_LIBS -L$qt_plugin_path/codecs"
492 if test x$TARGET_OS == xwindows; then
493 AC_CHECK_LIB([imm32], [main],, BITCOIN_QT_FAIL(libimm32 not found))
497 #TODO: These are only needed when they're linked directly to parent libs. It really has nothing to do with windows.
498 #Instead, check for missing functions in parent libs and assume static if they're absent.
499 if test x$TARGET_OS == xwindows; then
500 BITCOIN_QT_CHECK(AC_CHECK_LIB([qcncodecs],[main],,BITCOIN_QT_FAIL(libqcncodecs not found)))
501 BITCOIN_QT_CHECK(AC_CHECK_LIB([qjpcodecs],[main],,BITCOIN_QT_FAIL(libqjpcodecs not found)))
502 BITCOIN_QT_CHECK(AC_CHECK_LIB([qkrcodecs],[main],,BITCOIN_QT_FAIL(libqkrcodecs not found)))
503 BITCOIN_QT_CHECK(AC_CHECK_LIB([qtwcodecs],[main],,BITCOIN_QT_FAIL(libqtwcodecs not found)))
506 BITCOIN_QT_CHECK(AC_CHECK_LIB([QtCore] ,[main],,BITCOIN_QT_FAIL(libQtCore not found)))
507 BITCOIN_QT_CHECK(AC_CHECK_LIB([QtGui] ,[main],,BITCOIN_QT_FAIL(libQtGui not found)))
508 BITCOIN_QT_CHECK(AC_CHECK_LIB([QtNetwork],[main],,BITCOIN_QT_FAIL(libQtNetwork not found)))
509 BITCOIN_QT_CHECK(AC_CHECK_LIB([protobuf] ,[main],,BITCOIN_QT_FAIL(libprotobuf not found)))
515 TEMP_CPPFLAGS="$CPPFLAGS"
516 if test x$qt_include_path != x; then
517 QT_INCLUDES="-I$qt_include_path -I$qt_include_path/QtCore -I$qt_include_path/QtGui -I$qt_include_path/QtNetwork -I$qt_include_path/QtTest -I$qt_include_path/QtDBus"
518 CPPFLAGS="$CPPFLAGS $QT_INCLUDES"
522 BITCOIN_QT_CHECK(AC_CHECK_HEADER([QtPlugin],,BITCOIN_QT_FAIL(QtCore headers missing),))
523 BITCOIN_QT_CHECK(AC_CHECK_HEADER([QApplication],, BITCOIN_QT_FAIL(QtGui headers missing),))
524 BITCOIN_QT_CHECK(AC_CHECK_HEADER([QLocalSocket],, BITCOIN_QT_FAIL(QtNetwork headers missing),))
527 if test x$use_tests = xyes; then
530 if test x$qt_lib_path != x; then
531 LIBS="-L$qt_lib_path"
533 AC_CHECK_LIB([QtTest], [main],, have_qt_test=no)
534 AC_CHECK_HEADER([QTest],, have_qt_test=no)
538 if test x$use_dbus != xno; then
541 if test x$qt_lib_path != x; then
542 LIBS="-L$qt_lib_path"
544 AC_CHECK_LIB([QtDBus], [main],, have_qt_dbus=no)
545 AC_CHECK_HEADER([QtDBus],, have_qt_dbus=no)
549 CPPFLAGS="$TEMP_CPPFLAGS"
550 if test x$use_qr != xno; then
551 AC_CHECK_LIB([qrencode], [main],, [have_qrencode=no])
552 AC_CHECK_HEADER([qrencode.h],, have_qrencode=no)
557 if test x$use_ipv6 = xyes; then
558 dnl Check for ipv6 build requirements
559 AC_MSG_CHECKING(for IPV6 build support)
561 #if defined(_WINDOWS)
562 #include <winsock2.h>
564 #include <sys/types.h>
565 #include <sys/socket.h>
566 #include <netinet/in.h>
569 #if !defined(_WINDOWS)
570 struct in6_addr ipv6Addr;
571 struct sockaddr_in6 addr;
573 int temp = socket(AF_INET6, SOCK_STREAM, 0);],
574 [AC_MSG_RESULT(yes); have_ipv6=yes; AC_DEFINE(HAVE_IPV6, 1, [Define this symbol if you have ipv6 build support])],
575 [AC_MSG_RESULT(no)]; have_ipv6=no)
579 if test "x$use_ccache" != "xno"; then
580 AC_MSG_CHECKING(if ccache should be enabled)
581 if test x$CCACHE = x; then
582 if test "x$use_ccache" = "xyes"; then
583 AC_MSG_ERROR([ccache not found.]);
585 AC_MSG_NOTICE([ccache not found. Falling back to default CC])
590 CC="$ac_cv_path_CCACHE $CC"
591 CXX="$ac_cv_path_CCACHE $CXX"
593 AC_MSG_RESULT($use_ccache)
596 dnl enable ipv6 support
597 AC_MSG_CHECKING([if ipv6 should be enabled])
598 if test x$have_ipv6 = xno; then
599 if test x$use_ipv6 = xyes; then
600 AC_MSG_ERROR("ipv6 requested but cannot be built. use --disable-ipv6")
604 if test x$use_ipv6 = xyes; then
606 AC_DEFINE([USE_IPV6],[1],[Define if ipv6 support should be compiled in])
612 dnl enable upnp support
613 AC_MSG_CHECKING([if upnp should be enabled])
614 if test x$have_miniupnpc = xno; then
615 if test x$use_upnp = xyes; then
616 AC_MSG_ERROR("upnp requested but cannot be built. use --without-miniupnpc")
620 if test x$use_upnp != xno; then
622 AC_MSG_CHECKING([if upnp should be on by default])
625 if test x$use_upnp_default != xno; then
629 AC_MSG_RESULT($use_upnp_default)
630 AC_DEFINE_UNQUOTED([USE_UPNP],[$upnp_setting],[Define to 1 for upnp runtime support])
631 if test x$TARGET_OS = xwindows; then
632 CPPFLAGS="$CPPFLAGS -DSTATICLIB"
639 dnl enable qt support
640 AC_MSG_CHECKING([if qt should be enabled])
644 if test x$use_tests = xyes; then
645 if test x$have_qt_test = xno; then
646 AC_MSG_ERROR("libQtTest not found. Use --disable-tests or --without-qt.")
649 if test x$have_qt_dbus = xno; then
650 if test x$use_dbus = xyes; then
651 AC_MSG_ERROR("libQtDBus not found. Install libQtDBus or remove --with-qtdbus.")
655 if test x$XGETTEXT == x; then
656 AC_MSG_WARN("xgettext is required to update qt translations")
658 if test x$LUPDATE == x; then
659 AC_MSG_WARN("lupdate is required to update qt translations")
665 AC_MSG_RESULT($use_qt)
667 dnl these are only used when qt is enabled
668 if test x$use_qt = xyes; then
670 dnl enable dbus support
671 AC_MSG_CHECKING([if dbus should be enabled])
672 if test x$use_dbus != xno; then
674 AC_DEFINE([USE_DBUS],[1],[Define if dbus support should be compiled in])
678 AC_MSG_RESULT($use_dbus)
680 dnl enable qr support
681 AC_MSG_CHECKING([if qr should be enabled])
682 if test x$have_qrencode = xno; then
683 if test x$use_qr == xyes; then
684 AC_MSG_ERROR("QR support requested but cannot be built. use --without-qrencode")
688 if test x$use_qr != xno; then
690 AC_DEFINE([USE_QRCODE],[1],[Define if QR support should be compiled in])
697 if test x$use_tests$have_qt_test = xyesyes; then
702 if test x$use_tests = xyes; then
706 AM_CONDITIONAL([TARGET_DARWIN], [test x$TARGET_OS = xdarwin])
707 AM_CONDITIONAL([TARGET_WINDOWS], [test x$TARGET_OS = xwindows])
708 AM_CONDITIONAL([USE_QRCODE], [test x$use_qr = xyes])
709 AM_CONDITIONAL([USE_LCOV],[test x$use_lcov == xyes])
710 AM_CONDITIONAL([USE_COMPARISON_TOOL],[test x$use_comparison_tool != xno])
711 AM_CONDITIONAL([USE_COMPARISON_TOOL_REORG_TESTS],[test x$use_comparison_tool_reorg_test != xno])
713 AC_DEFINE(CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MAJOR, [Major version])
714 AC_DEFINE(CLIENT_VERSION_MINOR, _CLIENT_VERSION_MINOR, [Minor version])
715 AC_DEFINE(CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION, [Build revision])
716 AC_DEFINE(CLIENT_VERSION_BUILD, _CLIENT_VERSION_BUILD, [Version Build])
717 AC_DEFINE(CLIENT_VERSION_IS_RELEASE, _CLIENT_VERSION_IS_RELEASE, [Version is release])
718 AC_DEFINE(COPYRIGHT_YEAR, _COPYRIGHT_YEAR, [Version is release])
719 AC_SUBST(CLIENT_VERSION_MAJOR, _CLIENT_VERSION_MAJOR)
720 AC_SUBST(CLIENT_VERSION_MINOR, _CLIENT_VERSION_MINOR)
721 AC_SUBST(CLIENT_VERSION_REVISION, _CLIENT_VERSION_REVISION)
722 AC_SUBST(CLIENT_VERSION_BUILD, _CLIENT_VERSION_BUILD)
723 AC_SUBST(CLIENT_VERSION_IS_RELEASE, _CLIENT_VERSION_IS_RELEASE)
724 AC_SUBST(COPYRIGHT_YEAR, _COPYRIGHT_YEAR)
733 AC_SUBST(QT_INCLUDES)
734 AC_SUBST(QT_TEST_LIBS)
736 AC_SUBST(QT_DBUS_LIBS)
737 AC_SUBST(QT_DBUS_INCLUDES)
738 AC_SUBST(QT_TEST_INCLUDES)
740 AC_SUBST(LEVELDB_TARGET_FLAGS)
743 AC_SUBST(BUILD_TEST_QT)
744 AC_CONFIG_FILES([Makefile src/Makefile src/test/Makefile src/qt/Makefile src/qt/test/Makefile share/setup.nsi share/qt/Info.plist])
745 AC_CONFIG_FILES([qa/pull-tester/run-bitcoind-for-test.sh],[chmod +x qa/pull-tester/run-bitcoind-for-test.sh])
746 AC_CONFIG_FILES([qa/pull-tester/build-tests.sh],[chmod +x qa/pull-tester/build-tests.sh])