aboutsummaryrefslogtreecommitdiff
path: root/external/unbound (follow)
AgeCommit message (Collapse)AuthorFilesLines
2017-01-05Build wallet with Android NDKMoroccanMalinois1-0/+6
2016-09-18cmake: transitive deps and remove deprecated LINK_*redfish1-2/+2
Keep the immediate direct deps at the library that depends on them, declare deps as PUBLIC so that targets that link against that library get the library's deps as transitive deps. Break dep cycle between blockchain_db <-> crytonote_core. No code refactoring, just hide cycle from cmake so that it doesn't complain (cycles are allowed only between static libs, not shared libs). This is in preparation for supproting BUILD_SHARED_LIBS cmake built-in option for building internal libs as shared.
2016-09-03cmake: split BUILD_GUI_DEPS option into tworedfish1-1/+1
The split is to make this software more packageable. 'make install' is used by the package building scripts, and should not be installing vendored dependencies onto the system.
2016-09-03gui/libwallet_merged: libunbound is one more dependencyIlya Kitaev1-0/+6
2016-02-12cmake: Include OpenSSL libraries in static linkingwarptangent1-0/+6
2016-01-12There has never been any such function "fnctl"Howard Chu1-1/+0
It was only a typo of fcntl. Get rid of this test.
2016-01-11Cleanup symbol clashes, stdlib headerHoward Chu2-2/+5
2016-01-02Get rid of doubly-defined NDEBUGHoward Chu1-7/+0
2015-12-31updated copyright yearRiccardo Spagni16-4/+4
2015-12-31isblank doesn't need a special case testHoward Chu1-6/+1
2015-12-31Fix 3edbf57b62feeaba1f31683f24b9d76d75e03902Howard Chu1-1/+1
The test for isblank was being ignored
2015-12-30fix missing unbound testsRiccardo Spagni2-1/+9
2015-12-30update unbound, fix unbound openssl issue on OS XRiccardo Spagni101-3175/+4803
2015-10-05unbound: do not try to link against libeventmoneromooo-monero1-15/+1
It is now not needed anymore, as we use minievent instead
2015-08-30unbound: use the mini event fallback implementationmoneromooo-monero1-1/+2
Using libevent seems to have high peaks of file descriptor use, which can cause failure to create fds in other parts of bitmonerod. The fallback implementation seems to run fine in a significantly tighter file descriptor limit.
2015-08-18Revert "re-re-add Windows DNS bug fix, per c0de96f"Riccardo Spagni1-1/+0
This reverts commit f4ba92bcccd3e016c6b5fdced079bf17d1b3f371.
2015-08-14re-re-add Windows DNS bug fix, per c0de96fRiccardo Spagni1-0/+1
2015-08-14update unboundRiccardo Spagni45-3406/+2396
2015-06-02re-add Windows DNS bug fix, per c0de96f8bd2f64884255f9b0b61a4775ada5e3e6Riccardo Spagni1-1/+0
2015-05-31update libunboundRiccardo Spagni59-2575/+4559
2015-04-07Merge BlockchainDB into upstreamThomas Winget1-0/+28
2015-04-06updated unbound cmake for static buildsRiccardo Spagni3-2/+34
2015-04-05minor CMakeLists fix for Unbound, ldns -> sldnsRiccardo Spagni1-7/+7
2015-04-04reinstate accidentally removed CMakeListsRiccardo Spagni1-0/+201
2015-04-02Merge pull request #251Riccardo Spagni1-1/+0
c0de96f Fixed DNS resolution bug in Windows (Thomas Winget)
2015-04-02Fixed DNS resolution bug in WindowsThomas Winget1-1/+0
Due to a bug in unbound, we were passing a string containing a null character to ub_ctx_resolvconf and ub_ctx_hosts rather than a NULL pointer. On *nix this wasn't causing headache, but on Windows this was causing unbound to not correctly load DNS settings from the OS. Note on the bug: in a Windows-specific code branch in the function ub_ctx_hosts(), if the hosts file specified was a NULL pointer, a call to getenv() was stored in a local char* and later freed. This is incorrect, as we do not own that data, and caused the program to crash.
2015-04-02update unbound from upstreamRiccardo Spagni155-3514/+5556
2015-03-17fixed msys2 / mingw folders based on architecture, added license to unbound ↵Riccardo Spagni1-0/+28
CMakeList as that is not part of standard Unbound
2015-01-02year updated in licenseRiccardo Spagni13-2/+2
2014-12-04update unbound from upstreamRiccardo Spagni72-2655/+1261
2014-11-18mingw: copy required libraries to the build treeBen Boeckel1-0/+16
These are found as shared libraries and need to be copied so that PATH manipulation isn't necessary outside of an msys shell.
2014-10-24unbound: fix getaddrinfo detection for 32-bit windowsBen Boeckel1-1/+11
On Windows, getaddrinfo is part of the Windows API and as such is __stdcall, not __cdecl, so check_function_exists fails because the declaration doesn't match the mangling __stdcall has. Instead, use a header to include the symbol as declared on the system and use check_symbol_exists instead. Tested-By: greatwolf on IRC
2014-10-24unbound: fix type checkingBen Boeckel1-2/+2
2014-10-24unbound: plumb the libdir upBen Boeckel1-0/+5
This is necessary for static builds where the linking is passed around to dependent targets, but the library is lost.
2014-10-24cmake: support 2.8.7Ben Boeckel1-4/+4
Older versions of CMake support LINK_{PUBLIC,PRIVATE} while newer versions prefer PUBLIC and PRIVATE instead, but still support the LINK_ prefix.
2014-10-23unbound: import cmake build systemBen Boeckel3-0/+1422
2014-10-06fix for mingw not playing nicely with libunbound configure, fix for ↵Riccardo Spagni1-0/+3
correctly finding static libs on various operating systems
2014-10-05added unbound to external depsRiccardo Spagni394-0/+199264