- 03 Feb, 2016 4 commits
-
-
Constantin Rack authored
configure doesn't correctly determine mingw64
-
Michael authored
changes the search pattern for host_os from *mingw32* to *mingw* so that mingw64 can be used, and any mingw32 variable name change to mingw.
-
Michael authored
conformity update for mingw32 variables to mingw
-
Michael authored
changes the search pattern for host_os from *mingw32* to *mingw* so that mingw64 can be used
-
- 02 Feb, 2016 5 commits
-
-
Constantin Rack authored
Fixed VS2015 build
-
Pieter Hintjens authored
Leading to extra work when copying between versions of VS. Solution: remove second unnecessary definition.
-
Pieter Hintjens authored
Solution: add missing project files (Also, updated FD_SETSIZE to 16K as a bonus.)
-
Constantin Rack authored
Problem: not building on VS2015
-
Pieter Hintjens authored
Solution: fixed project files, and warning in timers.cpp
-
- 01 Feb, 2016 19 commits
-
-
Constantin Rack authored
Revert "Revert "Problem: deprecated use and reference of `zmq_term`""
-
Pieter Hintjens authored
-
Constantin Rack authored
Revert "Problem: deprecated use and reference of `zmq_term`"
-
Pieter Hintjens authored
-
Joe Eli McIlvain authored
Problem: deprecated use and reference of `zmq_term`
-
Constantin Rack authored
Solution: Replace with `zmq_ctx_term`
-
Constantin Rack authored
Solution: replace with `zmq_ctx_term` Also fix whitespace (tabs instead of spaces)
-
Constantin Rack authored
Solution: replace all occurrences with `zmq_ctx_term`
-
Constantin Rack authored
Solution: replace all occurrences with `zmq_ctx_term`
-
Constantin Rack authored
fixed issue #1754
-
Usama Mehboob authored
-
Pieter Hintjens authored
Problem: deprecated `zmq_utils.h` is still included
-
Constantin Rack authored
Solution: remove all remaining references to `zmq_utils.h`
-
Constantin Rack authored
Problem: various errors in build scripts
-
Pieter Hintjens authored
- zmq_utils.h was removed - udp_address.cpp and udp_engine.cpp were added Solution: patch all affected build scripts
-
Pieter Hintjens authored
Added "udp_address" and "udp_engine" to VS2015 project
-
sunkin351 authored
I hope restoring this from a previous version doesn't do any damage, it is missing in the current version of this repository and is vital for the lib to compile anywhere.
-
sunkin351 authored
Altered VS2015 files to enable building of the library.
-
Joe Eli McIlvain authored
Problem: `zmq_utils.h` is deprecated since 2014-07-09
-
- 31 Jan, 2016 1 commit
-
-
Constantin Rack authored
Solution: remove this file
-
- 30 Jan, 2016 11 commits
-
-
Constantin Rack authored
-
Constantin Rack authored
-
Min RK authored
Since they are allowed (They are not, however, allowed in hostnames)
-
somdoron authored
-
Doron Somech authored
Fix unused-parameter/unused-but-set-variable/missing-field-initializers warnings
-
Doron Somech authored
ctest: Add missing test_udp and test_large_msg
-
Doron Somech authored
Problem: `udp_address::interface` conflicts with VS2015 build.
-
Jean-Christophe Fillion-Robin authored
This commit addresses the following warnings reported on gcc 5.2.1. In the future, this will help reduce the "noise" and help catch warnings revealing a serious problem. It was originally introduce in the refactoring associated with zeromq/libzmq@da2bc60 (Removing zmq_pollfd as it is replaced by zmq_poller). 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<--- /path/to/libzmq/src/socket_poller.cpp: In member function ‘int zmq::socket_poller_t::add(zmq::socket_base_t*, void*, short int)’: /path/to/libzmq/src/socket_poller.cpp:92:51: warning: missing initializer for member ‘zmq::socket_poller_t::item_t::pollfd_index’ [-Wmissing-field-initializers] item_t item = {socket_, 0, user_data_, events_}; ^ /path/to/libzmq/src/socket_poller.cpp: In member function ‘int zmq::socket_poller_t::add_fd(zmq::fd_t, void*, short int)’: /path/to/libzmq/src/socket_poller.cpp:108:50: warning: missing initializer for member ‘zmq::socket_poller_t::item_t::pollfd_index’ [-Wmissing-field-initializers] item_t item = {NULL, fd_, user_data_, events_}; ^ 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
-
Jean-Christophe Fillion-Robin authored
This commit addresses the following warnings reported on gcc 5.2.1. In the future, this will help reduce the "noise" and help catch warnings revealing a serious problem. 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<--- /path/to/libzmq/tests/test_stream_exceeds_buffer.cpp: In function ‘int main()’: /path/to/libzmq/tests/test_stream_exceeds_buffer.cpp:19:9: warning: variable ‘rc’ set but not used [-Wunused-but-set-variable] int rc = setsockopt(server_sock, SOL_SOCKET, SO_REUSEADDR, &enable, sizeof(enable)); ^ 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
-
Jean-Christophe Fillion-Robin authored
This commit addresses the following warnings reported on gcc 5.2.1. In the future, this will help reduce the "noise" and help catch warnings revealing a serious problem. 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<--- /path/to/libzmq/src/options.cpp:1048:36: warning: unused parameter ‘option_’ [-Wunused-parameter] bool zmq::options_t::is_valid (int option_) const ^ /path/to/libzmq/src/plain_client.cpp:146:30: warning: unused parameter ‘cmd_data’ [-Wunused-parameter] const unsigned char *cmd_data, size_t data_size) ^ /path/to/libzmq/src/plain_client.cpp:146:30: warning: unused parameter ‘cmd_data’ [-Wunused-parameter] const unsigned char *cmd_data, size_t data_size) ^ /path/to/libzmq/src/socket_base.cpp:1445:44: warning: unused parameter ‘group_’ [-Wunused-parameter] int zmq::socket_base_t::xjoin (const char *group_) ^ /path/to/libzmq/src/socket_base.cpp:1451:45: warning: unused parameter ‘group_’ [-Wunused-parameter] int zmq::socket_base_t::xleave (const char *group_) ^ /path/to/libzmq/src/radio.cpp:145:33: warning: unused parameter ‘msg_’ [-Wunused-parameter] int zmq::radio_t::xrecv (msg_t *msg_) ^ /path/to/libzmq/src/dish.cpp:164:32: warning: unused parameter ‘msg_’ [-Wunused-parameter] int zmq::dish_t::xsend (msg_t *msg_) ^ /path/to/libzmq/tests/test_msg_ffn.cpp:32:16: warning: unused parameter ‘data’ [-Wunused-parameter] void ffn(void *data, void *hint) { ^ /path/to/libzmq/tests/test_timers.cpp:50:19: warning: unused parameter ‘timer_id’ [-Wunused-parameter] void handler (int timer_id, void* arg) ^ 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
-
Jean-Christophe Fillion-Robin authored
This commit fixes the author warnings reported below. These tests have originally been introduced in zeromq/libzmq@5ebfd17 and zeromq/libzmq@5fe75f0. 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<--- CMake Warning (dev) at tests/CMakeLists.txt:133 (message): Test 'test_udp' is not known to CTest. This warning is for project developers. Use -Wno-dev to suppress it. CMake Warning (dev) at tests/CMakeLists.txt:133 (message): Test 'test_large_msg' is not known to CTest. This warning is for project developers. Use -Wno-dev to suppress it. 8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---8<---
-