1. 16 Dec, 2016 4 commits
    • Luca Boccassi's avatar
      Problem: #2262 broke curve · 48e9e247
      Luca Boccassi authored
      Solution: Revert "Problem: Duplicated code"
      
      This reverts commit 022eeaf3.
      48e9e247
    • Constantin Rack's avatar
      Merge pull request #2262 from Cziken/master · 2aa09d34
      Constantin Rack authored
      Problem: Duplicated code
      2aa09d34
    • Wojciech Kula's avatar
      Problem: Duplicated code · 022eeaf3
      Wojciech Kula authored
      Solution: set_curve_key method in options_t struct with little
      improvement in switch-case block
      022eeaf3
    • Cziken's avatar
      Fixed handling of WSAEWOULDBLOCK to be generic (#2260) · d514bb59
      Cziken authored
      * Fixed handling of WSAEWOULDBLOCK to be generic
      
      I don't know what was the intention of this early if statement but
      now this is properly evaluated in wsa_error_no function if this is
      performance issue I suggest moving evaluating this error code to the
      beginning of wsa_error_no.
      
      * Fixed handling of WSAEWOULDBLOCK to be generic
      
      Introduced default pointer to const char * and overrides this as NULL
      if function is called by zmq::wsa_error()
      
      * Fixed handling of WSAEWOULDBLOCK to be generic
      
      Introduced default pointer to const char * and overrides this as NULL
      if function is called by zmq::wsa_error()
      d514bb59
  2. 15 Dec, 2016 6 commits
  3. 13 Dec, 2016 2 commits
  4. 11 Dec, 2016 1 commit
  5. 10 Dec, 2016 5 commits
  6. 09 Dec, 2016 4 commits
  7. 08 Dec, 2016 2 commits
  8. 07 Dec, 2016 1 commit
  9. 06 Dec, 2016 3 commits
  10. 05 Dec, 2016 3 commits
  11. 04 Dec, 2016 1 commit
  12. 03 Dec, 2016 2 commits
  13. 02 Dec, 2016 2 commits
  14. 01 Dec, 2016 2 commits
    • Luca Boccassi's avatar
      Problem: CMake build uses library version as the ABI version · abeaba15
      Luca Boccassi authored
      Solution: set SOVERSION in CMakeLists to match the SONAME generated
      by libtool so that there is no mismatch between the output of the
      *NIX build systems.
      
      Before:
      $ ls -l
      total 2696
      lrwxrwxrwx 1 luca luca      15 Dec  1 22:36 libzmq.so -> libzmq.so.4.2.0
      lrwxrwxrwx 1 luca luca      15 Dec  1 22:36 libzmq.so.4.2.0 -> libzmq.so.4.2.1
      -rwxr-xr-x 1 luca luca  906168 Dec  1 22:36 libzmq.so.4.2.1
      $ readelf -d libzmq.so.4.2.1 | grep SONAME
       0x000000000000000e (SONAME)    Library soname: [libzmq.so.4.2.0]
      
      After:
      $ ls -l
      total 2700
      lrwxrwxrwx 1 luca luca      15 Dec  1 22:31 libzmq.so -> libzmq.so.5.1.0
      -rwxr-xr-x 1 luca luca  906168 Dec  1 22:31 libzmq.so.4.2.1
      lrwxrwxrwx 1 luca luca      15 Dec  1 22:31 libzmq.so.5.1.0 -> libzmq.so.4.2.1
      $ readelf -d libzmq.so.4.2.1 | grep SONAME
       0x000000000000000e (SONAME)    Library soname: [libzmq.so.5.1.0]
      abeaba15
    • Laughing's avatar
      bug fix: AIX pollset error (#2233) · febf8015
      Laughing authored
      * bug fix: AIX pollset error
      
      buf fix:  AIX only, pollset 'rm_fd' set fd_table to null first then set pe->fd to retired_fd
      
      * remove extra spaces
      
      remove extra spaces
      febf8015
  15. 30 Nov, 2016 2 commits