Commit 8a96d209 authored by Matthias Klose's avatar Matthias Klose

- Build the ossaudio extension on GNU/kFreeBSD.

parent ca6d9e92
...@@ -58,6 +58,11 @@ Library ...@@ -58,6 +58,11 @@ Library
- Issue #8374: Update the internal alias table in the :mod:`locale` module - Issue #8374: Update the internal alias table in the :mod:`locale` module
to cover recent locale changes and additions. to cover recent locale changes and additions.
Extension Modules
-----------------
- Build the ossaudio extension on GNU/kFreeBSD.
What's New in Python 2.7 beta 1? What's New in Python 2.7 beta 1?
================================ ================================
......
...@@ -1361,8 +1361,9 @@ class PyBuildExt(build_ext): ...@@ -1361,8 +1361,9 @@ class PyBuildExt(build_ext):
else: else:
missing.append('linuxaudiodev') missing.append('linuxaudiodev')
if platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6', if (platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6',
'freebsd7', 'freebsd8'): 'freebsd7', 'freebsd8')
or platform.startswith("gnukfreebsd")):
exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) ) exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) )
else: else:
missing.append('ossaudiodev') missing.append('ossaudiodev')
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment