1. 25 Apr, 2014 1 commit
  2. 15 Apr, 2014 3 commits
  3. 14 Apr, 2014 2 commits
  4. 09 Apr, 2014 1 commit
  5. 08 Apr, 2014 1 commit
  6. 06 Apr, 2014 1 commit
  7. 04 Apr, 2014 2 commits
  8. 30 Mar, 2014 3 commits
  9. 18 Mar, 2014 1 commit
  10. 17 Mar, 2014 1 commit
  11. 25 Feb, 2014 1 commit
    • Olaf Mandel's avatar
      Fix MSVC8 build · e7a0c548
      Olaf Mandel authored
      The extra semicolons were introduced in 48b50cef together with the
      defintion of the ZMQ_USE_SELECT macros.
      e7a0c548
  12. 17 Feb, 2014 1 commit
    • Olaf Mandel's avatar
      Remove duplicate poller decision making · 48b50cef
      Olaf Mandel authored
      The decision about the poller mechanism to use (select, poll, ...)
      was done twice: once by the build system and once by the code in
      poller.hpp. As the build-system can actually detect the mechanisms
      available, prefer that result to the hard coded defaults in
      poller.hpp.
      
      At the same time, remove the duplicate detection of select() vs.
      poll()-variant from proxy.cpp, signaler.cpp and zmq.cpp.
      
      This patch has not been tested on many build platforms: especially
      the cmake build needs testing / patching. For the other builds,
      hard code the result as these these are all Windows platforms.
      48b50cef
  13. 11 Nov, 2013 1 commit
  14. 07 Nov, 2013 1 commit
  15. 04 Sep, 2013 2 commits
  16. 24 Aug, 2013 1 commit
    • Evan Burkitt's avatar
      get to clean compile under vs2012 · eaf227d4
      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.
      eaf227d4
  17. 07 May, 2013 1 commit
  18. 12 Apr, 2013 2 commits
  19. 07 Apr, 2013 2 commits
  20. 31 Mar, 2013 2 commits
  21. 24 Feb, 2013 2 commits
    • Sebastien Rombauts's avatar
      Adding missing new ZeroMQ_Static.props and Static.props files · 0ecc96bf
      Sebastien Rombauts authored
      + ignore StaticRelease & StaticDebug intermediate files
      0ecc96bf
    • Sebastien Rombauts's avatar
      Static Library Linking for Windows · b3bcd8e3
      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.
      b3bcd8e3
  22. 20 Feb, 2013 1 commit
  23. 19 Feb, 2013 5 commits
  24. 05 Feb, 2013 1 commit
    • mjasperse's avatar
      Corrected linking error in MSVC build · ec04ccba
      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)
      ec04ccba
  25. 02 Nov, 2012 1 commit
    • mjasperse's avatar
      Update builds/msvc/libzmq/libzmq.vcproj · 1e60d17a
      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
      1e60d17a