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
54549d47
Commit
54549d47
authored
Mar 21, 2016
by
Jason Madden
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use -r not -e for old solaris. Fixes #777
parent
92eb5bd2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
changelog.rst
changelog.rst
+1
-0
setup.py
setup.py
+2
-1
No files found.
changelog.rst
View file @
54549d47
...
...
@@ -10,6 +10,7 @@
- Nested callbacks that set and clear an Event no longer cause
``wait`` to return prematurely. Reported in :issue:`771` by Sergey
Vasilyev.
- Fix build on Solaris 10. Reported in :issue:`777` by wiggin15.
1.1.0 (Mar 5, 2016)
===================
...
...
setup.py
View file @
54549d47
...
...
@@ -109,8 +109,9 @@ if _config_vars and "m32" in _config_vars:
else
:
_m32
=
''
# Use -r, not -e, for support of old solaris. See https://github.com/gevent/gevent/issues/777
ares_configure_command
=
' '
.
join
([
"(cd "
,
_quoted_abspath
(
'c-ares/'
),
" && if [ -
e
ares_build.h ]; then cp ares_build.h ares_build.h.orig; fi "
,
" && if [ -
r
ares_build.h ]; then cp ares_build.h ares_build.h.orig; fi "
,
" && /bin/sh ./configure "
+
_m32
+
"CONFIG_COMMANDS= CONFIG_FILES= "
,
" && cp ares_config.h ares_build.h
\
"
$OLDPWD
\
"
"
,
" && mv ares_build.h.orig ares_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