summaryrefslogtreecommitdiff
path: root/lang/python24/files
diff options
context:
space:
mode:
authorMaxim Sobolev <sobomax@FreeBSD.org>2003-10-29 20:52:32 +0000
committerMaxim Sobolev <sobomax@FreeBSD.org>2003-10-29 20:52:32 +0000
commit75fd45d40b66ac552b9dbd9208d3902059f1f32c (patch)
treef61d0aab6037586e60263d35a007e661679d725f /lang/python24/files
parent- Update to 0.24.10: (diff)
Add missed ossaudiodev.so into pkg-plist (only for x86, since I don't have
access to other arches yet), and enable it on freebsd5 (it's enabled on freebsd4 OOB).
Notes
Notes: svn path=/head/; revision=92591
Diffstat (limited to 'lang/python24/files')
-rw-r--r--lang/python24/files/patch-setup.py16
1 files changed, 14 insertions, 2 deletions
diff --git a/lang/python24/files/patch-setup.py b/lang/python24/files/patch-setup.py
index 139ea97743d5..4ed24bdb54d5 100644
--- a/lang/python24/files/patch-setup.py
+++ b/lang/python24/files/patch-setup.py
@@ -1,5 +1,8 @@
---- setup.py.orig Thu Jul 10 21:48:39 2003
-+++ setup.py Sat Jul 19 16:27:04 2003
+
+$FreeBSD$
+
+--- setup.py.orig Mon Sep 22 04:19:45 2003
++++ setup.py Wed Oct 29 22:47:51 2003
@@ -15,7 +15,7 @@
from distutils.command.install_lib import install_lib
@@ -9,3 +12,12 @@
def add_dir_to_list(dirlist, dir):
"""Add the directory 'dir' to the list 'dirlist' (at the front) if
+@@ -765,7 +765,7 @@
+ # Linux-specific modules
+ exts.append( Extension('linuxaudiodev', ['linuxaudiodev.c']) )
+
+- if platform in ('linux2', 'freebsd4'):
++ if platform in ('linux2', 'freebsd4', 'freebsd5'):
+ exts.append( Extension('ossaudiodev', ['ossaudiodev.c']) )
+
+ if platform == 'sunos5':