From 06aba27b04c5822cb88a69677382a0f053367143 Mon Sep 17 00:00:00 2001 From: sabotagebeats <27985126+sabotagebeats@users.noreply.github.com> Date: Thu, 22 Jul 2021 21:53:19 -0700 Subject: [PATCH 1/2] fix: building libzmq fails with error src/clock.cpp:131:16: error: unused variable 'nsecs_per_usec' --- src/clock.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/clock.cpp b/src/clock.cpp index 93da90a8..63c0100a 100644 --- a/src/clock.cpp +++ b/src/clock.cpp @@ -195,6 +195,7 @@ uint64_t zmq::clock_t::now_us () #else + LIBZMQ_UNUSED (nsecs_per_usec); // Use POSIX gettimeofday function to get precise time. struct timeval tv; int rc = gettimeofday (&tv, NULL); From 430ffe61b7cc5025bde51e7d8c296585366bd66e Mon Sep 17 00:00:00 2001 From: sabotagebeats <27985126+sabotagebeats@users.noreply.github.com> Date: Sat, 24 Jul 2021 01:36:58 -0700 Subject: [PATCH 2/2] fix: relicense --- RELICENSE/sabotagebeats.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 RELICENSE/sabotagebeats.md diff --git a/RELICENSE/sabotagebeats.md b/RELICENSE/sabotagebeats.md new file mode 100644 index 00000000..e62df117 --- /dev/null +++ b/RELICENSE/sabotagebeats.md @@ -0,0 +1,16 @@ + +# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL + +This is a statement by sabotagebeats +that grants permission to relicense its copyrights in the libzmq C++ +library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other +Open Source Initiative approved license chosen by the current ZeroMQ +BDFL (Benevolent Dictator for Life). + +A portion of the commits made by the Github handle "sabotagebeats", with +commit author "sabotagebeats", are copyright of sabotagebeats . +This document hereby grants the libzmq project team to relicense libzmq, +including all past, present and future contributions of the author listed above. + +sabotagebeats +2021/7/24 \ No newline at end of file