- 12 Nov, 2019 2 commits
-
-
Victor Luchits authored
-
Victor Luchits authored
-
- 10 Nov, 2019 2 commits
-
-
Luca Boccassi authored
problem: test_wss_transport keys expired
-
Doron Somech authored
Solution: generate new keys that last for 100 years
-
- 02 Nov, 2019 1 commit
-
-
Luca Boccassi authored
Problem: test_pair_tcp_cap_net_admin requires sudo but is enabled by …
-
- 01 Nov, 2019 2 commits
-
-
Constantin Rack authored
Problem: WSAEventSelect checks for FD_OOB, but select does not
-
Luca Boccassi authored
WSAEventSelect is used on Windows (when select is the polling method) only if waiting for more than one socket family, excluding IPv4/6. It is then passed FD_OOB, which means it can be woken by OOB messages, but select later on never checks for it. Remove FD_OOB as it's not actually used for anything.
-
- 31 Oct, 2019 6 commits
-
-
Doron Somech authored
Fix typo in email address
-
Nathaniel J. Smith authored
-
Luca Boccassi authored
Problem: Poller example has wrong argument order
-
Dries Harnie authored
-
Dries Harnie authored
Solution: flipped arguments in example
-
Luca Boccassi authored
Solution: add an option to enable it, and default to false. Enable it in the CI so we don't lose coverage, as it works on Travis. Fixes #3725
-
- 29 Oct, 2019 3 commits
-
-
Luca Boccassi authored
Problem: ipc transport not supported under Windows
-
Simon Giesecke authored
Solution: call tune_socket only if connect was successful
-
Simon Giesecke authored
Solution: implement support
-
- 28 Oct, 2019 6 commits
-
-
Luca Boccassi authored
Add a few quality of life improvements to the Android build scripts
-
Benjamin Deroche authored
-
Benjamin Deroche authored
-
Benjamin Deroche authored
-
Benjamin Deroche authored
-
Benjamin Deroche authored
-
- 26 Oct, 2019 2 commits
-
-
Doron Somech authored
Problem: libzmq-dev not installable with libczmq-dev on Ubuntu 16.04
-
Luca Boccassi authored
Solution: add alternative dependency as libgnutls-dev | libgnutls28-dev, so that the resolver can break the tie, as libcurl4-nss-dev depends on libgnutls-dev which conflicts with libgnutls28-dev
-
- 25 Oct, 2019 3 commits
-
-
Luca Boccassi authored
Problem: Android build script is severely outdated
-
Benjamin Deroche authored
-
Benjamin Deroche authored
Solution: Migrate build scripts from Android NDK r11c to r20. - Standalone toolchain - Migration from GCC to Clang - Migration from libgnustl to libc++ - Dropped support for API level below 16 (Android 4.1), previously it was API level 9 (Android 2.3) - Dropped support for mips architecture - The build script now start the build of all 4 Android architectures (arm, arm64, x86, x86_64)
-
- 19 Oct, 2019 2 commits
-
-
Doron Somech authored
Problem: build targeting Windows XP is broken
-
Simon Giesecke authored
Solution: fix build issues
-
- 14 Oct, 2019 5 commits
-
-
Luca Boccassi authored
Revert "Problem: pkg-config file cannot be used for static linking on…
-
Michele Dionisio authored
This reverts commit 765c2474.
-
Luca Boccassi authored
avoid to use std::ceil
-
Michele Dionisio authored
ceil function is usually in math library that can be avoided as dependency
-
Michele Dionisio authored
Signed-off-by: Michele Dionisio <michele.dionisio@gmail.com>
-
- 12 Oct, 2019 3 commits
-
-
Luca Boccassi authored
Fix linking to libzmq.a statically on CentOS 7
-
Chih-Hsuan Yen authored
Based on RELICENSE/templates/relicense-template-mplv2.txt. MPLv2 is definitely fine, but I'm not sure if I'm OK with other licenses.
-
Chih-Hsuan Yen authored
Solution: add -lm to Libs.private of libzmq.pc so that the std::ceil usage in src/decoder_allocators.cpp is satisfied during static linking on CentOS 7. See https://github.com/zeromq/libzmq/issues/3710 for a reproducer.
-
- 07 Oct, 2019 3 commits
-
-
Doron Somech authored
Problem: test_wss_transport doesn't compile without DRAFT
-
Luca Boccassi authored
Solution: skip it
-
Luca Boccassi authored
WIP: problem: appveyor is failing
-