diff options
author | Vincent Richard <[email protected]> | 2017-07-14 04:32:58 +0000 |
---|---|---|
committer | Vincent Richard <[email protected]> | 2017-07-14 04:32:58 +0000 |
commit | 5ea19601d565f5a5367dab797e1878498304262f (patch) | |
tree | d91e93f835b234865faa82cb6f2c0dabce83c930 | |
parent | Issue #175: use CMake macros for installation dir. (diff) | |
download | vmime-5ea19601d565f5a5367dab797e1878498304262f.tar.gz vmime-5ea19601d565f5a5367dab797e1878498304262f.zip |
Fixed #176: fixed missing definition of AF_UNSPEC and SOCK_STREAM on OpenBSD systems.
-rw-r--r-- | src/vmime/platforms/posix/posixHandler.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/vmime/platforms/posix/posixHandler.cpp b/src/vmime/platforms/posix/posixHandler.cpp index c031aecf..14877403 100644 --- a/src/vmime/platforms/posix/posixHandler.cpp +++ b/src/vmime/platforms/posix/posixHandler.cpp @@ -43,6 +43,7 @@ #include <sys/types.h> #include <sys/stat.h> +#include <sys/socket.h> #if VMIME_HAVE_SYSCALL # include <sys/syscall.h> |