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
936b1174
Commit
936b1174
authored
Nov 11, 2017
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ares is not optional on appveyor anymore either, it should always build
parent
5f4a9ef8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
_setupares.py
_setupares.py
+2
-2
_setuputils.py
_setuputils.py
+2
-0
No files found.
_setupares.py
View file @
936b1174
...
@@ -23,7 +23,7 @@ from _setuputils import LIBRARIES
...
@@ -23,7 +23,7 @@ from _setuputils import LIBRARIES
from
_setuputils
import
DEFINE_MACROS
from
_setuputils
import
DEFINE_MACROS
from
_setuputils
import
glob_many
from
_setuputils
import
glob_many
from
_setuputils
import
dep_abspath
from
_setuputils
import
dep_abspath
from
_setuputils
import
RUNNING_ON_
TRAVIS
from
_setuputils
import
RUNNING_ON_
CI
CARES_EMBED
=
should_embed
(
'c-ares'
)
CARES_EMBED
=
should_embed
(
'c-ares'
)
...
@@ -86,7 +86,7 @@ ARES = Extension(name='gevent.ares',
...
@@ -86,7 +86,7 @@ ARES = Extension(name='gevent.ares',
depends
=
glob_many
(
'src/gevent/dnshelper.c'
,
depends
=
glob_many
(
'src/gevent/dnshelper.c'
,
'src/gevent/cares_*.[ch]'
))
'src/gevent/cares_*.[ch]'
))
ARES
.
optional
=
not
RUNNING_ON_
TRAVIS
ARES
.
optional
=
not
RUNNING_ON_
CI
if
CARES_EMBED
:
if
CARES_EMBED
:
...
...
_setuputils.py
View file @
936b1174
...
@@ -23,6 +23,8 @@ PYPY = hasattr(sys, 'pypy_version_info')
...
@@ -23,6 +23,8 @@ PYPY = hasattr(sys, 'pypy_version_info')
WIN
=
sys
.
platform
.
startswith
(
'win'
)
WIN
=
sys
.
platform
.
startswith
(
'win'
)
CFFI_WIN_BUILD_ANYWAY
=
os
.
environ
.
get
(
"PYPY_WIN_BUILD_ANYWAY"
)
CFFI_WIN_BUILD_ANYWAY
=
os
.
environ
.
get
(
"PYPY_WIN_BUILD_ANYWAY"
)
RUNNING_ON_TRAVIS
=
os
.
environ
.
get
(
'TRAVIS'
)
RUNNING_ON_TRAVIS
=
os
.
environ
.
get
(
'TRAVIS'
)
RUNNING_ON_APPVEYOR
=
os
.
environ
.
get
(
'APPVEYOR'
)
RUNNING_ON_CI
=
RUNNING_ON_TRAVIS
or
RUNNING_ON_APPVEYOR
LIBRARIES
=
[]
LIBRARIES
=
[]
DEFINE_MACROS
=
[]
DEFINE_MACROS
=
[]
...
...
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