Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gevent
Commits
b1ca4268
Commit
b1ca4268
authored
Apr 15, 2019
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Restore missing file that configure.ac wants. Tested on linux non-embedded. [appveyor skip]
parent
4763354f
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
deps/README.rst
deps/README.rst
+2
-1
deps/libuv-win-binary.patch
deps/libuv-win-binary.patch
+2
-2
deps/libuv/test/fixtures/empty_file
deps/libuv/test/fixtures/empty_file
+0
-0
deps/libuv/test/fixtures/load_error.node
deps/libuv/test/fixtures/load_error.node
+1
-0
No files found.
deps/README.rst
View file @
b1ca4268
...
...
@@ -20,12 +20,13 @@ Updating libuv
cd deps/
wget https://dist.libuv.org/dist/$LIBUV_VER/libuv-$LIBUV_VER.tar.gz
tar -xf libuv-$LIBUV_VER.tar.gz
rm libuv-$LIBUV_VER.tar.gz
rm -rf libuv
mv libuv-$LIBUV_VER libuv
rm -rf libuv/.github
rm -rf libuv/docs
rm -rf libuv/samples
rm -rf libuv/test
rm -rf libuv/test
/*.[ch] libuv/test/test.gyp # must leave the fixtures/ dir
rm -rf libuv/tools
rm -f libuv/android-configure*
git apply libuv-win-binary.patch
...
...
deps/libuv-win-binary.patch
View file @
b1ca4268
...
...
@@ -2,14 +2,14 @@ diff --git a/deps/libuv/src/win/fs.c b/deps/libuv/src/win/fs.c
index 812c1a6d..f4d66628 100644
--- a/deps/libuv/src/win/fs.c
+++ b/deps/libuv/src/win/fs.c
@@ -135,
7 +135,14
@@
const WCHAR UNC_PATH_PREFIX_LEN = 8;
@@ -135,
5 +135,12
@@
const WCHAR UNC_PATH_PREFIX_LEN = 8;
static int uv__file_symlink_usermode_flag = SYMBOLIC_LINK_FLAG_ALLOW_UNPRIVILEGED_CREATE;
void uv_fs_init(void) {
- _fmode = _O_BINARY;
+/* gevent: This breaks `open()` on CPython 2 by changing
+ * the default mode for file operations. Python 3 and PyPy
+ * ar
e
unaffected. It was removed for the (unreleased) libuv 2.
+ * ar unaffected. It was removed for the (unreleased) libuv 2.
+ * See https://github.com/gevent/gevent/issues/1282
+ */
+/*
...
...
deps/libuv/test/fixtures/empty_file
0 → 100644
View file @
b1ca4268
deps/libuv/test/fixtures/load_error.node
0 → 100644
View file @
b1ca4268
foobar
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment