diff options
| author | Bob Jamison <ishmalius@gmail.com> | 2006-04-12 14:38:20 +0000 |
|---|---|---|
| committer | ishmal <ishmal@users.sourceforge.net> | 2006-04-12 14:38:20 +0000 |
| commit | 282f765498b0bdcd34af3551e2977ede8f36b13c (patch) | |
| tree | 0e5723b12611af2b3347b6f829c284c129066240 /src/dom/io/socket.cpp | |
| parent | add new files (diff) | |
| download | inkscape-282f765498b0bdcd34af3551e2977ede8f36b13c.tar.gz inkscape-282f765498b0bdcd34af3551e2977ede8f36b13c.zip | |
add proper unix socket includes
(bzr r491)
Diffstat (limited to 'src/dom/io/socket.cpp')
| -rw-r--r-- | src/dom/io/socket.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/dom/io/socket.cpp b/src/dom/io/socket.cpp index 220ecd004..555d0ce5f 100644 --- a/src/dom/io/socket.cpp +++ b/src/dom/io/socket.cpp @@ -32,6 +32,20 @@ #ifdef __WIN32__ #include <windows.h> +#else /* unix */ +#include <sys/types.h> +#include <sys/socket.h> +#include <netinet/in.h> +#include <netdb.h> +#include <unistd.h> +#include <sys/ioctl.h> + +#endif + +#ifdef HAVE_SSL +#include <openssl/ssl.h> +#include <openssl/err.h> +#endif #endif |
