diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-15 00:52:11 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-15 00:52:11 +0100 |
commit | 3709301b1559aabb3292e8c15bac14a85d8fc31e (patch) | |
tree | 94734a190720a6d0113fe3c8f69e3a24fde90035 | |
parent | 324c378cd2d3f208b000e1279d462665d163edb7 (diff) | |
parent | 83e2d3048639533acd1d56672dcb1ba76de65e36 (diff) |
Merging *BSD compatibility fix from Doug Luce (include sys/uio.h even
though the sendmsg() manpage says this isn't necessary).
-rw-r--r-- | ipc.c | 3 | ||||
-rw-r--r-- | ipc.h | 2 |
2 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,7 @@ /********************************************************************\ * BitlBee -- An IRC to other IM-networks gateway * * * - * Copyright 2002-2006 Wilmer van der Gaast and others * + * Copyright 2002-2010 Wilmer van der Gaast and others * \********************************************************************/ /* IPC - communication between BitlBee processes */ @@ -28,6 +28,7 @@ #include "ipc.h" #include "commands.h" #ifndef _WIN32 +#include <sys/uio.h> #include <sys/un.h> #endif @@ -1,7 +1,7 @@ /********************************************************************\ * BitlBee -- An IRC to other IM-networks gateway * * * - * Copyright 2002-2004 Wilmer van der Gaast and others * + * Copyright 2002-2010 Wilmer van der Gaast and others * \********************************************************************/ /* IPC - communication between BitlBee processes */ |