mirror of
https://git.freebsd.org/ports.git
synced 2025-06-15 17:50:31 -04:00
23 lines
806 B
Python
23 lines
806 B
Python
|
|
$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
|
|
|
|
# This global variable is used to hold the list of modules to be disabled.
|
|
-disabled_module_list = []
|
|
+disabled_module_list = ["_bsddb", "_tkinter", "gdbm", "mpz", "pyexpat"]
|
|
|
|
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':
|