diff options
author | Hye-Shik Chang <perky@FreeBSD.org> | 2004-08-21 01:02:12 +0000 |
---|---|---|
committer | Hye-Shik Chang <perky@FreeBSD.org> | 2004-08-21 01:02:12 +0000 |
commit | adca4f9d0ed8ad2f5771aeb47ec40e4b54c0e6a3 (patch) | |
tree | 223ee776196f7f8d6fd858aadc26d63ebf424f3c /lang/python26/files/patch-setup.py | |
parent | Update to 0.5.3b (diff) |
- Add support for FreeBSD 6.
- Drop FreeBSD 2 support.
- Fix build on -stable.
Spotted by: marcus, kris
Obtained from: Python CVS
Notes
Notes:
svn path=/head/; revision=116864
Diffstat (limited to 'lang/python26/files/patch-setup.py')
-rw-r--r-- | lang/python26/files/patch-setup.py | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/lang/python26/files/patch-setup.py b/lang/python26/files/patch-setup.py index c66568db95e3..acb3015726b9 100644 --- a/lang/python26/files/patch-setup.py +++ b/lang/python26/files/patch-setup.py @@ -1,5 +1,5 @@ ---- setup.py.orig Sun Jun 27 07:29:42 2004 -+++ setup.py Thu Jul 8 23:55:04 2004 +--- setup.py.orig Fri Jul 23 11:50:10 2004 ++++ setup.py Sat Aug 21 09:04:58 2004 @@ -15,7 +15,7 @@ from distutils.command.install_lib import install_lib @@ -9,7 +9,16 @@ def add_dir_to_list(dirlist, dir): """Add the directory 'dir' to the list 'dirlist' (at the front) if -@@ -1160,8 +1160,7 @@ +@@ -782,7 +782,7 @@ + # Linux-specific modules + exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) ) + +- if platform in ('linux2', 'freebsd4', 'freebsd5'): ++ if platform in ('linux2', 'freebsd4', 'freebsd5', 'freebsd6'): + exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) ) + + if platform == 'sunos5': +@@ -1164,8 +1164,7 @@ ext_modules=[Extension('struct', ['structmodule.c'])], # Scripts to install |