aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
AgeCommit message (Collapse)Author
2013-11-22Remove '/': prefix always starts with '/'Florin
brew --prefix retruns a fully qualified path, so using -L/$prefix results in a path with two leading '/'.
2013-11-14configure: lupdate is not needed for Qt buildWladimir J. van der Laan
Don't require lupdate to build with Qt. Like xgettext it is only needed to update translations, not for normal builds. This fixes the gitian build (broken by fcfbf547d).
2013-11-13Use C99 printf statements in mingwWladimir J. van der Laan
Otherwise, format specifiers such as %llu will not work on XP or earlier. This bug was introduced with 51ed9ec9. http://sourceforge.net/apps/trac/mingw-w64/wiki/gnu%20printf
2013-11-11configure: Automatically disable bitcoin-qt by default, if dependencies are ↵Luke Dashjr
not met
2013-11-10Cleanup code using forward declarations.Brandon Dahler
Use misc methods of avoiding unnecesary header includes. Replace int typedefs with int##_t from stdint.h. Replace PRI64[xdu] with PRI[xdu]64 from inttypes.h. Normalize QT_VERSION ifs where possible. Resolve some indirect dependencies as direct ones. Remove extern declarations from .cpp files.
2013-10-28Make large-reorg tests optional in block-testerMatt Corallo
2013-10-15misc spelling / space / style fixesPhilip Kaufmann
2013-09-29Merge pull request #3015 from theuni/win32-version-infoPieter Wuille
Win32 version info
2013-09-25build: add libcrypt32 dep for new mingw. Also ensure that libgcc/libstdc++ ↵Cory Fields
are static-linked regardless of the toolchain config
2013-09-18win32: only check for windres for win32, and fail if missingCory Fields
2013-09-18configure.ac: remove unneeded OSX flagsJeff Garzik
2013-09-18configure.ac: remove debug/release concept, prefer autotools default CXXFLAGSJeff Garzik
2013-09-16included-tests: generate binary data from test files for inclusion into test ↵Cory Fields
binaries This change moves test data into the binaries rather than reading them from the disk at runtime. Advantages: - Tests become distributable - Cross-compile friendly. Build on one machine and execute in an arbitrary location on another. - Easier testing for backports. Users can verify that tests pass without having to track down corresponding test data. - More trustworthy test results and easier quality assurance as tests make fewer assumptions about their environment. - Tests could theoretically run at client/daemon startup and exit on failure. Disadvantages: - Required 'hexdump' build-dependency. This is a standard bsd tool that should be usable everywhere. It is likely already installed on all build-machines. - Tests can no longer be fudged after build by altering test-data.
2013-09-14autotools: check for lupdate/xgettextCory Fields
2013-09-10configure: Prefer specific known-good versions of Qt metacompiler toolsLuke Dashjr
2013-09-10configure: Check common include subdirectories for bdb headers, and refuse ↵Luke Dashjr
to use any version other than 4.8 by default
2013-09-07configure.ac: remove superfluous bracketJeff Garzik
Reported-by: Cory Fields
2013-09-05autotools: switch to autotools buildsystemCory Fields