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 christian.heimes
Recipients akitada, christian.heimes, loewis
Date 2008-10-26.14:30:35
SpamBayes Score 0.00625323
Marked as misclassified No
Message-id <1225031436.99.0.200444789975.issue4204@psf.upfronthosting.co.za>
In-reply-to
Content
The setup.py file in the root directory doesn't have a special case for
freebsd4, just for Free BSD 5 to 8. Apparently FreeBSD doesn't support
SEM_TIMEDWAIT at all.

        elif platform in ('freebsd5', 'freebsd6', 'freebsd7', 'freebsd8'):
            # FreeBSD's P1003.1b semaphore support is very experimental
            # and has many known problems. (as of June 2008)
            macros = dict(                  # FreeBSD
                HAVE_SEM_OPEN=0,
                HAVE_SEM_TIMEDWAIT=0,
                HAVE_FD_TRANSFER=1,
                )
            libraries = []
History
Date User Action Args
2008-10-26 14:30:37christian.heimessetrecipients: + christian.heimes, loewis, akitada
2008-10-26 14:30:36christian.heimessetmessageid: <1225031436.99.0.200444789975.issue4204@psf.upfronthosting.co.za>
2008-10-26 14:30:36christian.heimeslinkissue4204 messages
2008-10-26 14:30:35christian.heimescreate