diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2019-11-17 09:45:56 +0100 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2019-11-18 17:16:12 -0500 |
commit | dc1960aaf6a039fa143e6cc2ac5a0b3e5c3c1db1 (patch) | |
tree | dbde30eba927e9db0a994cf43e774f746530f2fc /net-libs/zeromq | |
parent | media-gfx/flam3: remove unused patch(es) (diff) | |
download | gentoo-dc1960aaf6a039fa143e6cc2ac5a0b3e5c3c1db1.tar.gz gentoo-dc1960aaf6a039fa143e6cc2ac5a0b3e5c3c1db1.tar.bz2 gentoo-dc1960aaf6a039fa143e6cc2ac5a0b3e5c3c1db1.zip |
net-libs/zeromq: remove unused patch(es)
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13683
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'net-libs/zeromq')
-rw-r--r-- | net-libs/zeromq/files/zeromq-4.3.1-fix-test_security_zap.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/net-libs/zeromq/files/zeromq-4.3.1-fix-test_security_zap.patch b/net-libs/zeromq/files/zeromq-4.3.1-fix-test_security_zap.patch deleted file mode 100644 index 3c89024b84bd..000000000000 --- a/net-libs/zeromq/files/zeromq-4.3.1-fix-test_security_zap.patch +++ /dev/null @@ -1,25 +0,0 @@ -From 4147957a5eec57ec7a2a416dca74c3c0299a3432 Mon Sep 17 00:00:00 2001 -From: Luca Boccassi <bluca@debian.org> -Date: Sun, 13 Jan 2019 13:08:10 +0000 -Subject: [PATCH] Problem: test_security_zap fails on architectures that - disallow unaligned pointer access - -Solution: use memcpy instead of doing pointer arithmetics with casting -and dereferencing to fix the error on sparc64 ---- - tests/testutil_security.hpp | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/tests/testutil_security.hpp b/tests/testutil_security.hpp -index 90999118c..437bfb298 100644 ---- a/tests/testutil_security.hpp -+++ b/tests/testutil_security.hpp -@@ -345,7 +345,7 @@ static int get_monitor_event_internal (void *monitor_, - uint8_t *data = (uint8_t *) zmq_msg_data (&msg); - uint16_t event = *(uint16_t *) (data); - if (value_) -- *value_ = *(uint32_t *) (data + 2); -+ memcpy (value_, data + 2, sizeof (uint32_t)); - - // Second frame in message contains event address - zmq_msg_init (&msg); |