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
8af3a352
Commit
8af3a352
authored
Nov 11, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Re-enable all Travis builds and try a fix for appveyor
parent
db5bdb72
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
9 deletions
+20
-9
.travis.yml
.travis.yml
+7
-7
_setupares.py
_setupares.py
+0
-2
deps/c-ares/ares_build.h.dist
deps/c-ares/ares_build.h.dist
+13
-0
No files found.
.travis.yml
View file @
8af3a352
...
...
@@ -10,16 +10,16 @@ env:
matrix
:
# These are ordered to get as much diversity in the
# first group of parallel runs (4) as posible
#
- TASK=test-py27-noembed
#
- TASK=test-pypy
#
- TASK=test-py36
-
TASK=test-py27-noembed
-
TASK=test-pypy
-
TASK=test-py36
-
TASK=lint-py27
#
- TASK=test-pypy3
-
TASK=test-pypy3
-
TASK=test-py35
#
- TASK=test-py278
-
TASK=test-py278
-
TASK=test-py27
#
- TASK=test-py34
#
- TASK=test-py27-cffi
-
TASK=test-py34
-
TASK=test-py27-cffi
matrix
:
fast_finish
:
true
...
...
_setupares.py
View file @
8af3a352
...
...
@@ -71,8 +71,6 @@ def configure_ares(bext, ext):
with
open
(
'configure-output.txt'
,
'r'
)
as
t
:
print
(
t
.
read
(),
file
=
sys
.
stderr
)
raise
with
open
(
'configure-output.txt'
,
'r'
)
as
t
:
print
(
t
.
read
(),
file
=
sys
.
stderr
)
if
sys
.
platform
==
'darwin'
:
make_universal_header
(
'ares_build.h'
,
'CARES_SIZEOF_LONG'
)
make_universal_header
(
'ares_config.h'
,
'SIZEOF_LONG'
,
'SIZEOF_SIZE_T'
,
'SIZEOF_TIME_T'
)
...
...
deps/c-ares/ares_build.h.dist
View file @
8af3a352
...
...
@@ -251,4 +251,17 @@
typedef CARES_TYPEOF_ARES_SOCKLEN_T ares_socklen_t;
#endif
/* Data type definition of ares_ssize_t. */
#ifdef _WIN32
# ifdef _WIN64
# define CARES_TYPEOF_ARES_SSIZE_T __int64
# else
# define CARES_TYPEOF_ARES_SSIZE_T long
# endif
#else
# define CARES_TYPEOF_ARES_SSIZE_T ssize_t;
#endif
typedef CARES_TYPEOF_ARES_SSIZE_T ares_ssize_t;
#endif /* __CARES_BUILD_H */
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