This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author djmdjm
Recipients djmdjm, jnoller
Date 2008-09-04.01:52:41
SpamBayes Score 0.028578898
Marked as misclassified No
Message-id <alpine.BSO.1.10.0809041133010.15327@fuyu.mindrot.org>
In-reply-to <9D30D656-DDDE-4BB8-A270-28B018646A61@gmail.com>
Content
On Thu, 4 Sep 2008, Jesse Noller wrote:

> 
> Jesse Noller <jnoller@gmail.com> added the comment:
> 
> Which platforms is this appearing on?

OpenBSD, with this section added to setup.py:

@@ -1269,6 +1268,14 @@ class PyBuildExt(build_ext):
                 )
             libraries = []

+        elif platform.startswith('openbsd'):
+            macros = dict(                  # OpenBSD
+                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,
History
Date User Action Args
2008-09-04 01:52:47djmdjmsetrecipients: + jnoller
2008-09-04 01:52:41djmdjmlinkissue3770 messages
2008-09-04 01:52:41djmdjmcreate