- 04 Sep, 2013 2 commits
-
-
Ivan Pechorin authored
-
Ivan Pechorin authored
-
- 24 Aug, 2013 1 commit
-
-
Evan Burkitt authored
Added some missing (but existing in branch) files to libzmq11 project needed to compile as static library by VS2012 (at least), and fixed some warnings. One warning remains in raw_decoder.cpp, which I'm leaving for now because I'm not sure how project owners would like to fix it.
-
- 14 Jul, 2013 1 commit
-
-
Steven McCoy authored
-
- 13 Jul, 2013 1 commit
-
-
KIU Shueng Chuan authored
-
- 07 May, 2013 1 commit
-
-
Pieter Hintjens authored
-
- 12 Apr, 2013 2 commits
-
-
Steven McCoy authored
-
Steven McCoy authored
Add platform.hpp as project dependency to vc100 and vc110 projects for local & remote throughput tests.
-
- 07 Apr, 2013 2 commits
-
-
Timothee "TTimo" Besset authored
-
Timothee "TTimo" Besset authored
-
- 31 Mar, 2013 2 commits
-
-
Timothee "TTimo" Besset authored
Use Multithreaded DLL Runtime, Debug/Release accordingly - need consistency for the czmq configurations
-
Timothee "TTimo" Besset authored
-
- 24 Mar, 2013 1 commit
-
-
Timothee Besset authored
-
- 03 Mar, 2013 1 commit
-
-
KIU Shueng Chuan authored
-
- 24 Feb, 2013 2 commits
-
-
Sebastien Rombauts authored
+ ignore StaticRelease & StaticDebug intermediate files
-
Sebastien Rombauts authored
- New ZMQ_STATIC flag to enable "libzmq.lib" Windows static library (or "libzmq_d.lib" in Debug mode). - ZMQ_STATIC needs also to be defined by projects using static linking against "libzmq.lib" - New StaticDebug & StaticRelease configurations for libzmq Win32 projects under MSVC 2008 & 2010 - Tested with Visual Studio 2008 Express under Windows 7, and Visual Studio 2010 Express under Windows 8.
-
- 20 Feb, 2013 1 commit
-
-
Sébastien Rombauts authored
VS2008 & VS2010: adding the pre-build command to copy platform.hpp in perf/ directory to the two appropriate projects, for each MSVC version
-
- 19 Feb, 2013 5 commits
-
-
Sébastien Rombauts authored
-
Sébastien Rombauts authored
- raw_encoder.cpp and raw_decoder.cpp where missing in Visual Studio 2010 project
-
Sébastien Rombauts authored
- tested for Windows CE 5.0 under Visual Studio 2008 Pro - tested for Windows XP under Visual Studio 2008 Pro
-
Sébastien Rombauts authored
- when compiling for Windows CE, a C++ project must define the preprocessor definitions: UNDER_CE=$(CEVersion),_WIN32_WCE=$(CEVersion) - choosing the "_WIN32_CE" form for uniformization with "_WIN32" and "_WIN32_WINNT" already used in libzmq (boost is using both forms) - see http://msdn.microsoft.com/en-us/library/ee479161(v=winembedded.60).aspx
-
Sébastien Rombauts authored
- raw_encoder.cpp and raw_decoder.cpp in missing in MSVC project
-
- 05 Feb, 2013 1 commit
-
-
mjasperse authored
MSVC build fails with linking errors for unresolved symbols SetSecurityDescriptorDacl and InitializeSecurityDescriptor in signaler.obj Adding the relevant link library (Advapi32.lib) to VCLinkerTool fixes this (tested MSVC2010 on XP and Win7)
-
- 27 Jan, 2013 1 commit
-
-
Matt Arsenault authored
-
- 17 Jan, 2013 1 commit
-
-
MinRK authored
in order to avoid logical collisions with pre-existing notions of context destruction in bindings (czmq, pyzmq).
-
- 12 Jan, 2013 1 commit
-
-
Adrian Muraru authored
-
- 02 Jan, 2013 3 commits
-
-
Matt Arsenault authored
Fix link errors when using -m32 with MinGW
-
Matt Arsenault authored
Fix warnings with ICC.
-
Matt Arsenault authored
Make doc building option dependent on asciidoc being installed Fix MSVC build requiring cygwin. Don't use try_run to get the version
-
- 26 Nov, 2012 1 commit
-
-
Ian Barber authored
Update the RPM spec file with Justin Cook's changes to fix the build for 3.2.2. (https://zeromq.jira.com/browse/LIBZMQ-473)
-
- 02 Nov, 2012 1 commit
-
-
mjasperse authored
Without the LinkDLL statement, command-line compile using vcbuild attempts to compile EXE and complains about entrypoint The LinkDLL statement forces the linker to produce desired output
-
- 26 Sep, 2012 2 commits
-
-
Ivan Pechorin authored
This patch updates MSVC2008 project after device was renamed to proxy and new files were added (tcp.cpp, v1_encoder.cpp and v1_decoder.cpp).
-
Ivan Pechorin authored
This patch updates MSVC2010 project after device was renamed to proxy and new files were added (v1_encoder.cpp and v1_decoder.cpp).
-
- 19 Jun, 2012 1 commit
-
-
Jos Decoster authored
-
- 05 May, 2012 2 commits
-
-
Jos Decoster authored
File decoder.cpp does not compile with Visual C++ 2008: 1>c:\tmp\libzmq\src\decoder.cpp(117) : warning C4003: not enough actual parameters for macro 'max' 1>c:\tmp\libzmq\src\decoder.cpp(117) : error C2589: '(' : illegal token on right side of '::' 1>c:\tmp\libzmq\src\decoder.cpp(117) : error C2059: syntax error : '::' 1>c:\tmp\libzmq\src\decoder.cpp(117) : error C2143: syntax error : missing ';' before '{' This error is caused by the precense of a macro 'max' when including 'windows.h'. To solve this problem, the preprocessor macro /DNOMINMAX must be specified.
-
Jos Decoster authored
Fix for issue 355. Added missing source files dealer.cpp, device,cpp and router.cpp. Removed source files no longer present: xrep.cpp and xreq.cpp
-
- 26 Mar, 2012 1 commit
-
-
Pieter Hintjens authored
-
- 16 Mar, 2012 1 commit
-
-
Pieter Hintjens authored
- reverted commit 941be8d2. - fixed zmq_device implementation for latest socket_base class - added back zmq_device.3 man page
-
- 14 Mar, 2012 1 commit
-
-
boris@boressoft.ru authored
* Added two new files: errno.hpp and errno.cpp. They are required to use errno functionality on WM. * zmq.cpp, msg.h: removed inclusion of errno.h because it is included in zmq.h that is also included by .cpp. * windows.hpp: process.h is included only for desktop builds. * thread.cpp: on CE CreateThread is used instead of __beginthreadex * socket_base.cpp, clock.cpp: on CE include cmnintrin.h instead on intrin.h * signaler.cpp: on Windows should use special macro around event name (for unicode builds) * err.hpp: make it include errno.hpp (my file) instead on errno.h when building for CE * err.cpp: use FormatMessage when building for CE (because CE does not have ANSI API functions) * zmq.h: do not include errno.h whe building for CE * libzmq.vcproj: add tro new files
-
- 06 Mar, 2012 1 commit
-
-
boris@boressoft.ru authored
Name of the file in the project does not match actual file name: adress.cpp VS. address.cpp
-