commit 21e927fb5cd795783813b1468d34e98442d094f1 parent c97237ea0eae09c2a7efcf33fe35785e8d72d144 Author: finwo <finwo@pm.me> Date: Thu, 23 Feb 2023 18:33:15 +0100 Patch evio library's includes Diffstat:
| M | tidwall/evio/package.ini | | | 4 | ++++ |
| A | tidwall/evio/patch/00-deeper-header-include.patch | | | 17 | +++++++++++++++++ |
2 files changed, 21 insertions(+), 0 deletions(-)
diff --git a/tidwall/evio/package.ini b/tidwall/evio/package.ini @@ -8,6 +8,10 @@ tidwall/hashmap=https://raw.githubusercontent.com/finwo/dep-repository/main/tidw [fetch] config.mk=https://raw.githubusercontent.com/finwo/dep-repository/main/tidwall/evio/config.mk +patch/00-deeper-header-include.patch=https://raw.githubusercontent.com/finwo/dep-repository/main/tidwall/evio/patch/00-deeper-header-include.patch + +[build] +0000=patch -p1 < patch/00-deeper-header-include.patch [export] config.mk=config.mk diff --git a/tidwall/evio/patch/00-deeper-header-include.patch b/tidwall/evio/patch/00-deeper-header-include.patch @@ -0,0 +1,17 @@ +diff --git a/evio.c b/evio.c +index 7b3ecc0..262be61 100644 +--- a/evio.c ++++ b/evio.c +@@ -20,9 +20,10 @@ + #include <time.h> + #include <arpa/inet.h> + #include <pthread.h> ++ + #include "evio.h" +-#include "buf.h" +-#include "hashmap.h" ++#include "tidwall/buf.h" ++#include "tidwall/hashmap.h" + + static void *(*_malloc)(size_t) = NULL; + static void (*_free)(void *) = NULL;