From 4f2d7949f03e1c198bc888f2d05f421d35c57e21 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 9 Oct 2017 18:53:29 +0100 Subject: reinit the tree, so we can have metadata --- net-libs/onion/files/protos.patch | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 net-libs/onion/files/protos.patch (limited to 'net-libs/onion/files') diff --git a/net-libs/onion/files/protos.patch b/net-libs/onion/files/protos.patch new file mode 100644 index 000000000000..59050a95c4e6 --- /dev/null +++ b/net-libs/onion/files/protos.patch @@ -0,0 +1,28 @@ +Prototypes do not match, fixes some build failures. + +Index: onion-0.8/src/onion/poller_libev.c +=================================================================== +--- onion-0.8.orig/src/onion/poller_libev.c ++++ onion-0.8/src/onion/poller_libev.c +@@ -75,7 +75,7 @@ void onion_poller_slot_set_timeout(onion + el->timeout=timeout_ms; + } + /// Sets the polling type: read/write/other. O_POLL_READ | O_POLL_WRITE | O_POLL_OTHER +-void onion_poller_slot_set_type(onion_poller_slot *el, int type){ ++void onion_poller_slot_set_type(onion_poller_slot *el, onion_poller_slot_type_e type){ + el->type=0; + if (type&O_POLL_READ) + el->type|=EV_READ; +Index: onion-0.8/src/onion/poller_libevent.c +=================================================================== +--- onion-0.8.orig/src/onion/poller_libevent.c ++++ onion-0.8/src/onion/poller_libevent.c +@@ -77,7 +77,7 @@ void onion_poller_slot_set_timeout(onion + el->timeout=timeout_ms; + } + /// Sets the polling type: read/write/other. O_POLL_READ | O_POLL_WRITE | O_POLL_OTHER +-void onion_poller_slot_set_type(onion_poller_slot *el, int type){ ++void onion_poller_slot_set_type(onion_poller_slot *el, onion_poller_slot_type_e type){ + el->type=EV_PERSIST; + if (type&O_POLL_READ) + el->type|=EV_READ; -- cgit v1.2.3