| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Stores seed language in wallet file. added rapidjson. Yet to test backward ↵ | Oran Juice | 2014-10-18 | 1 | -0/+1 | |
| | | | | | | | | | compatibility | |||||
| * | | don't build tests unless we're building all-* or *-test builds | Riccardo Spagni | 2014-12-01 | 1 | -1/+4 | |
| | | | ||||||
| * | | cmake: work around a bug with implicit link directories | Ben Boeckel | 2014-11-18 | 1 | -0/+8 | |
| | | | | | | | | | | | | | Unfortunately, this is necessary because CMake doesn't detect whether mingw libraries are static or shared and doesn't put a -static flag around the -lfoo argument which then makes the shared library be linked to. | |||||
| * | | msys: don't use LTO | Ben Boeckel | 2014-11-17 | 1 | -0/+2 | |
| | | | | | | | | | This causes duplicate symbol errors on msys' mingw install. | |||||
| * | | msys: factor out -Werror on msys | Ben Boeckel | 2014-11-17 | 1 | -1/+4 | |
| | | | | | | | | | There are Windows-related warnings turned into errors here. | |||||
| * | | msys: look in msys' directory for files | Ben Boeckel | 2014-11-17 | 1 | -0/+5 | |
| | | | | | | | | | | | This tells find_path and find_library to look under this directory first which is what we want on msys2. | |||||
| * | | cmake: support 2.8.7 | Ben Boeckel | 2014-10-24 | 1 | -1/+1 | |
| | | | | | | | | | | | | | Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer versions prefer PUBLIC and PRIVATE instead, but still support the LINK_ prefix. | |||||
| * | | cmake: clean up EXTRA_LIBRARIES | Ben Boeckel | 2014-10-23 | 1 | -3/+1 | |
| | | | | | | | | | pthread is handled by CMAKE_THREAD_LIBS_INIT while libdl isn't needed. | |||||
| * | | cmake: set the project name | Ben Boeckel | 2014-10-23 | 1 | -0/+2 | |
| | | | ||||||
| * | | cmake: prepend to CMAKE_MODULE_PATH | Ben Boeckel | 2014-10-23 | 1 | -1/+2 | |
| | | | ||||||
| * | | unbound: import cmake build system | Ben Boeckel | 2014-10-23 | 1 | -0/+1 | |
| | | | ||||||
| * | | cmake: minor cleanups (indentation and typos) | Ben Boeckel | 2014-10-23 | 1 | -15/+15 | |
| | | | ||||||
| * | | cmake: use option() for STATIC | Ben Boeckel | 2014-10-23 | 1 | -1/+1 | |
| | | | ||||||
| * | | cmake: clean up if auto-dereferencing | Ben Boeckel | 2014-10-23 | 1 | -3/+3 | |
| | | | | | | | | | | | CMake will auto-dereference variable names in if statements, so there's no need to dereference them manually. | |||||
| * | | cmake: support git info in released tarballs | Ben Boeckel | 2014-10-23 | 1 | -11/+1 | |
| | | | ||||||
| * | | cmake: fix up BOOST_IGNORE_SYSTEM_PATHS | Ben Boeckel | 2014-10-23 | 1 | -2/+1 | |
| | | | | | | | | | | | The option was set twice when it only needs to be set once. Also fix a bogus dereference and spurious whitespace. | |||||
| * | | cmake: remove configuration variables | Ben Boeckel | 2014-10-23 | 1 | -1/+0 | |
| | | | | | | | | | | | | | | | CMAKE_BUILD_TYPE is meant for single-config build tools (e.g., make and ninja) while CMAKE_CONFIGURATION_TYPES is meant for multi-config build tools (e.g., Xcode and Visual Studio). They should not be mixed or manually set. | |||||
| * | | cmake: factor out error messages | Ben Boeckel | 2014-10-23 | 1 | -7/+14 | |
| |/ | | | | | Instead of using BoldRed and ColourReset everywhere, wrap it up in a function. | |||||
| * | mingw library tweaks | Riccardo Spagni | 2014-10-06 | 1 | -4/+1 | |
| | | ||||||
| * | fix for mingw not playing nicely with libunbound configure, fix for ↵ | Riccardo Spagni | 2014-10-06 | 1 | -4/+9 | |
| | | | | | correctly finding static libs on various operating systems | |||||
| * | need to link with -ldl on Linux when building statically | Riccardo Spagni | 2014-10-06 | 1 | -0/+1 | |
| | | ||||||
| * | quieten CMake when it can't find packages | Riccardo Spagni | 2014-10-06 | 1 | -1/+1 | |
| | | ||||||
| * | enforce static libraries when building statically | Riccardo Spagni | 2014-10-06 | 1 | -0/+8 | |
| | | ||||||
| * | build libunbound from external if no local libunbound or for static builds | Riccardo Spagni | 2014-10-06 | 1 | -12/+11 | |
| | | ||||||
| * | dependencies enforced, send que error message log level moved | Riccardo Spagni | 2014-09-29 | 1 | -3/+16 | |
| | | ||||||
| * | never use the baked-in miniupnpc on FreeBSD because explosions | Riccardo Spagni | 2014-09-24 | 1 | -2/+0 | |
| | | ||||||
| * | redo FindUnbound.cmake | Riccardo Spagni | 2014-09-24 | 1 | -0/+4 | |
| | | ||||||
| * | Fixed artifacts from cherry-picking devel->master | Thomas Winget | 2014-09-23 | 1 | -1/+2 | |
| | | ||||||
| * | Fixed CMake search for libunbound | Thomas Winget | 2014-09-23 | 1 | -5/+2 | |
| | | | | | | | | | | As it turns out, some of CMake's built-in modules for detecting headers and libraries don't work if you have certain compiler flags set, such as -Werror=old-style-definition, as they do "int main()" rather than "int main(void)". Having CMake search for libs before compiler flags are set alleviates this issue, and I believe the underlying issue will be fixed in future releases of CMake. | |||||
| * | Updated CMake files -- added libunbound linker flag | Thomas Winget | 2014-09-23 | 1 | -0/+5 | |
| | | | | | | | | CMake config file written, but was unable to test/get it working properly because of a bug in CMake with functions related to find_package. Simple "-lunbound" flag used in its stead for now. May not build on non-Linux systems, not sure yet. | |||||
| * | moved msys2 toolchain, boost libs fix | Riccardo Spagni | 2014-09-22 | 1 | -0/+4 | |
| | | ||||||
| * | added mikezackles' missing boost function in CMakeLists | Riccardo Spagni | 2014-09-22 | 1 | -0/+15 | |
| | | ||||||
| * | turns out we do need -static-libgcc etc. on Linux | Riccardo Spagni | 2014-09-15 | 1 | -1/+1 | |
| | | ||||||
| * | explicitly disable LTO for Clang | Riccardo Spagni | 2014-09-15 | 1 | -1/+5 | |
| | | ||||||
| * | Use LTO by default | Zachary Michaels | 2014-09-15 | 1 | -1/+4 | |
| | | | | | The mingw toolchains override this for now. | |||||
| * | User setting to turn LTO on and off | Zachary Michaels | 2014-09-15 | 1 | -9/+13 | |
| | | | | | This isn't currently working on mingw | |||||
| * | Remove unnecessary else | Zachary Michaels | 2014-09-15 | 1 | -2/+0 | |
| | | ||||||
| * | Hack to add pthread to link libraries on mingw | Zachary Michaels | 2014-09-15 | 1 | -2/+2 | |
| | | | | | | This should link winpthreads. We really shouldn't be passing these this way, but that seems to be the existing solution, and it works for now. | |||||
| * | Change to -static gcc flag | Zachary Michaels | 2014-09-15 | 1 | -1/+1 | |
| | | ||||||
| * | Set the boost thread api for mingw | Zachary Michaels | 2014-09-15 | 1 | -0/+1 | |
| | | ||||||
| * | Hack to allow toolchains to pass flags to mingw | Zachary Michaels | 2014-09-15 | 1 | -1/+1 | |
| | | ||||||
| * | Ignore another warning to make mingw happy | Zachary Michaels | 2014-09-15 | 1 | -1/+1 | |
| | | ||||||
| * | Remove unused CMake function | Zachary Michaels | 2014-09-15 | 1 | -6/+0 | |
| | | ||||||
| * | Default to static linking on both MSVC and MINGW | Zachary Michaels | 2014-09-15 | 1 | -1/+6 | |
| | | ||||||
| * | FreeBSD static linking fixes | Riccardo Spagni | 2014-09-15 | 1 | -3/+3 | |
| | | ||||||
| * | versioning now includes the commit hash, or -final for tagged releases | Riccardo Spagni | 2014-09-12 | 1 | -19/+7 | |
| | | ||||||
| * | always check git diff | Riccardo Spagni | 2014-09-12 | 1 | -6/+1 | |
| | | ||||||
| * | added license to CMake | fluffypony | 2014-09-11 | 1 | -0/+30 | |
| | | ||||||
| * | more CMake tweaks to allow detection on OS X | fluffypony | 2014-09-11 | 1 | -8/+9 | |
| | | ||||||
| * | more dynamic miniupnp fixes | fluffypony | 2014-09-10 | 1 | -0/+8 | |
| | | ||||||
