diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-07 19:24:57 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-21 10:41:07 +0000 |
commit | be82c40703d267184ee07bf7be71002122c86656 (patch) | |
tree | 7c303ad3712e12b753a7bac878430003d8524a8d /contrib/epee/src/CMakeLists.txt | |
parent | Merge pull request #5939 (diff) | |
download | monero-be82c40703d267184ee07bf7be71002122c86656.tar.xz |
Support median block size > 4 GB
add a 128/64 division routine so we can use a > 32 bit median block
size in calculations
Diffstat (limited to 'contrib/epee/src/CMakeLists.txt')
-rw-r--r-- | contrib/epee/src/CMakeLists.txt | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/epee/src/CMakeLists.txt b/contrib/epee/src/CMakeLists.txt index 5c92e32bd..00bdcd38c 100644 --- a/contrib/epee/src/CMakeLists.txt +++ b/contrib/epee/src/CMakeLists.txt @@ -27,7 +27,8 @@ # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. add_library(epee STATIC byte_slice.cpp hex.cpp http_auth.cpp mlog.cpp net_helper.cpp net_utils_base.cpp string_tools.cpp wipeable_string.cpp - levin_base.cpp memwipe.c connection_basic.cpp network_throttle.cpp network_throttle-detail.cpp mlocker.cpp buffer.cpp net_ssl.cpp) + levin_base.cpp memwipe.c connection_basic.cpp network_throttle.cpp network_throttle-detail.cpp mlocker.cpp buffer.cpp net_ssl.cpp + int-util.cpp) if (USE_READLINE AND (GNU_READLINE_FOUND OR DEPENDS AND NOT MINGW)) add_library(epee_readline STATIC readline_buffer.cpp) |