[Python-modules-commits] [billiard] 03/06: Add configuration for GNU/Hurd when building.
Michael Fladischer
fladi at moszumanska.debian.org
Thu Mar 31 09:35:13 UTC 2016
This is an automated email from the git hooks/post-receive script.
fladi pushed a commit to branch master
in repository billiard.
commit 8dd4d319a52be10c87df1ae0ce1d0bf2a873fbbc
Author: Michael Fladischer <fladi at debian.org>
Date: Thu Oct 8 08:33:15 2015 -0700
Add configuration for GNU/Hurd when building.
Last-Update: 2015-05-19
Forwarded: no
Patch-Name: hurd.patch
---
setup.py | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/setup.py b/setup.py
index 1ff65c9..68ed5e9 100644
--- a/setup.py
+++ b/setup.py
@@ -145,6 +145,13 @@ elif sys.platform.startswith('gnu'):
HAVE_FD_TRANSFER=1,
)
libraries = []
+elif sys.platform.startswith('gnu'):
+ macros = dict( # GNU/Hurd
+ HAVE_SEM_OPEN=0, # Not implemented
+ HAVE_SEM_TIMEDWAIT=0,
+ HAVE_FD_TRANSFER=1,
+ )
+ libraries = []
else: # Linux and other unices
macros = dict(
HAVE_SEM_OPEN=1,
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/billiard.git
More information about the Python-modules-commits
mailing list