diff options
-rw-r--r-- | games/frozenbubble/files/patch-server_net.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/games/frozenbubble/files/patch-server_net.h b/games/frozenbubble/files/patch-server_net.h new file mode 100644 index 000000000000..023884e71daa --- /dev/null +++ b/games/frozenbubble/files/patch-server_net.h @@ -0,0 +1,23 @@ +Index: server/net.h +=================================================================== +--- server/net.h (revision 741) ++++ server/net.h (revision 742) +@@ -17,11 +17,18 @@ + * + ******************************************************************************/ + ++#include <sys/types.h> ++#include <sys/socket.h> ++ + #include <stdlib.h> + #include <unistd.h> + + #include <glib.h> + ++#ifndef MSG_NOSIGNAL ++#define MSG_NOSIGNAL 0 ++#endif ++ + extern const int proto_major; + extern const int proto_minor; + |