diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2005-07-28 07:05:20 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2005-07-28 07:05:20 +0000 |
commit | 617982285bba8e797fd5b5b04689a955120c5fc8 (patch) | |
tree | bd6221dfb5e3a7a3383bf45eac957eca8eeb41f3 /lang/python23/files/patch-setup.py | |
parent | Add ezxml - lightweight C library for parsing XML. (diff) |
- Add support for FreeBSD 7
- Drop support for FreeBSD 3
- Fix fcntl.ioctl argument parsing to accept termios.TIOCGWINSZ. [1]
Submitted by: jkim [1]
Obtained from: Python CVS
Diffstat (limited to '')
-rw-r--r-- | lang/python23/files/patch-setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/python23/files/patch-setup.py b/lang/python23/files/patch-setup.py index c97c8ad2cadf..b0592b909021 100644 --- a/lang/python23/files/patch-setup.py +++ b/lang/python23/files/patch-setup.py @@ -14,7 +14,7 @@ exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) ) - if platform in ('linux2', 'freebsd4'): -+ if platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6'): ++ if platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6', 'freebsd7'): exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) ) if platform == 'sunos5': |