diff options
author | Rosen Penev <rosenp@gmail.com> | 2021-07-06 20:48:54 -0700 |
---|---|---|
committer | Rosen Penev <rosenp@gmail.com> | 2021-07-07 14:51:09 -0700 |
commit | d45965e22d8cb1bcc1d49c7c0f67f9b6a78fe3fc (patch) | |
tree | fadaae8a854c2440580101e986a74e120746685e /mail/emailrelay | |
parent | e38c5e48bd35358cd3a9ac8773e1b2d98e6e864a (diff) |
emailrelay: fix compilation with GCC11
Missing header.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'mail/emailrelay')
-rw-r--r-- | mail/emailrelay/patches/010-gcc11.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/mail/emailrelay/patches/010-gcc11.patch b/mail/emailrelay/patches/010-gcc11.patch new file mode 100644 index 000000000..29ad358e8 --- /dev/null +++ b/mail/emailrelay/patches/010-gcc11.patch @@ -0,0 +1,20 @@ +--- a/src/gnet/gsocket.h ++++ b/src/gnet/gsocket.h +@@ -27,6 +27,7 @@ + #include "gevent.h" + #include "gdescriptor.h" + #include "greadwrite.h" ++#include <memory> + #include <string> + #include <new> + +--- a/src/gssl/gssl.h ++++ b/src/gssl/gssl.h +@@ -26,6 +26,7 @@ + #include "gdef.h" + #include "gstrings.h" + #include "greadwrite.h" ++#include <memory> + #include <string> + #include <utility> + |