-
Notifications
You must be signed in to change notification settings - Fork 515
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply IXWebSocket patch automatically
- Loading branch information
1 parent
f933bb6
commit f6e0cb8
Showing
5 changed files
with
35 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/ixwebsocket/IXNetSystem.h b/ixwebsocket/IXNetSystem.h | ||
index 21131b4..7ca58f4 100644 | ||
--- a/ixwebsocket/IXNetSystem.h | ||
+++ b/ixwebsocket/IXNetSystem.h | ||
@@ -17,6 +17,7 @@ | ||
#include <basetsd.h> | ||
#include <io.h> | ||
#include <ws2def.h> | ||
+#include <cerrno> | ||
|
||
#undef EWOULDBLOCK | ||
#undef EAGAIN |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/bash | ||
|
||
PREVDIR=$(pwd) | ||
SCRIPT=$(readlink -f $0) | ||
ROOT=`dirname $SCRIPT` | ||
|
||
cd $ROOT/IXWebSocket | ||
git reset --hard 8c15405 | ||
patch -s -p1 < ../cerrno_include.patch | ||
git -c user.name='CryptoManiac' -c user.email='[email protected]' commit -a -m 'Fix cerrno' | ||
cd $PREVDIR |