Changes between Version 2 and Version 3 of Ticket #53075, comment 2
- Timestamp:
- Dec 16, 2016, 12:09:03 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #53075, comment 2
v2 v3 1 That was one of the first things I tried... :-) The problem is the macro CLOCK_MONOTONICis ''' not defined''' for OS X 10.5.8.1 That was one of the first things I tried... :-) The problem is the macro `CLOCK_MONOTONIC` is ''' not defined''' for OS X 10.5.8. 2 2 3 3 The code for version 4.1.6 does something far more trivial. The method containing the offending line, 4 4 5 zmq::clock_t::rdsc()[[BR]] 5 {{{ 6 zmq::clock_t::rdsc() 7 }}} 6 8 7 returns 0 under OS X 10.5.8. [[BR]]9 returns 0 under OS X 10.5.8. 8 10 9 11 I am not sure what that means, or whether it is the right thing to do. If I make that change, zmq @4.2 builds. 10 12 11 For added amusement I then ran 'make check'. Of the 77 tests that ran, only 3 passed. The remaining 74 failed [illegal instruction: exit 132].13 For added amusement I then ran `make check`. Of the 77 tests that ran, only 3 passed. The remaining 74 failed [illegal instruction: exit 132]. 12 14 13 For comparison, I ran 'make check'on version 4.1.6. Of the 62 tests, 61 passed, and 1 failed [test_unbind_wildcard].15 For comparison, I ran `make check` on version 4.1.6. Of the 62 tests, 61 passed, and 1 failed [test_unbind_wildcard]. 14 16 15 17