- 22 Feb, 2016 1 commit
-
-
Luca Boccassi authored
Solution: socket_base_t::in_event cannot do anything useful with return status of process_commands. Asserting is the wrong solution, as it is entirely valid to be interrupted or for the context to be terminated, so discard the value.
-
- 21 Feb, 2016 19 commits
-
-
Luca Boccassi authored
Solution: use NULL instead to avoid build failure with older compilers.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize to -1, since fd is a file descriptor (int).
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: initialize class variable in the same order as they are defined.
-
Luca Boccassi authored
Solution: don't store it in zmq::poller_base_t::adjust_load, as the build with Werror=unused=variable will fail otherwise.
-
Luca Boccassi authored
Solution: remove statc initialization to NULL of thread.hpp pthread_t descriptor. There is no portable way to statically initialize a pthread_t variable.
-
Luca Boccassi authored
Solution: initialise it inside an ifdef too
-
Luca Boccassi authored
Solution: fix it
-
Constantin Rack authored
Problem: Several problems found by Coverity Static Analyzer
-
Osiris authored
Solution: The Coverity Static Code Analyzer was used on libzmq code and found many issues with uninitialized member variables, some redefinition of variables hidding previous instances of same variable name and a couple of functions where return values were not checked, even though all other occurrences were checked (e.g. init_size() return).
-
Luca Boccassi authored
Problem: Visual Studio Toolset was incorrectly set in VCXPROJ files
-
Osiris authored
Solution: Corrected Toolset setting where needed and inprove compilation speed by adding defintion of WIN32_LEAN_AND_MEAN prior to any Windows specific include files, which skips non-essential definitions during compilation.
-
Pieter Hintjens authored
Bump C/C++ standard version support to C11/C++11
-
- 20 Feb, 2016 2 commits
-
-
Constantin Rack authored
-
OBATA Akio authored
-
- 19 Feb, 2016 7 commits
-
-
Luca Boccassi authored
Solution: remove it
-
Luca Boccassi authored
Solution: bump to C++11 and C11 in autoconf
-
Luca Boccassi authored
Solution: use CheckCXXCompilerFlag to check for support for -std=gnu++11
-
Luca Boccassi authored
Solution: import macros to check for compiler options from autoconf-archive into the m4 subdir.
-
Luca Boccassi authored
Precompiled
-
Luca Boccassi authored
Problem: tweetnacl gives many warnings on MSVC
-
Pieter Hintjens authored
Solution: disable the warnings on this file only We use pragmas wrapped in compiler conditionals. This will need extending to non-gcc/msvc compilers. We could also fix the warnings in the code, though I suspect it's not really possible.
-
- 18 Feb, 2016 6 commits
-
-
Osiris authored
Solution: Phase II - made compile using precompiled header
-
Osiris authored
Solution: Phase I - make precompiled.hpp be first file included in every source file
-
Luca Boccassi authored
Problem: VC++ gives warnings on inet_addr
-
Pieter Hintjens authored
Solution: in project.gyp, define _WINSOCK_DEPRECATED_NO_WARNINGS
-
Pieter Hintjens authored
Deprecate zmq_utils.h
-
Min RK authored
instead of removing it, which breaks downstream builds.
-
- 17 Feb, 2016 5 commits
-
-
Luca Boccassi authored
problem: dynamic cast is causing issue when compiling for nodejs
-
somdoron authored
-
Luca Boccassi authored
Problem: Windows build script requires edit for DevStudio version
-
Osiris authored
Solution: Use CMD.EXE environment variable to extract DevStudio version number and build using it. This even supports machines with multiple DevStudio versions installed, as long as the build for each version is done on a separate window with the correct environment. If multiple version builds are desired from a single CMD.EXE, edit the buildall.bat file to uncomment the build statements for each specific version desired.
-
Constantin Rack authored
Number of fixes for gyp builds
-