summaryrefslogtreecommitdiff
path: root/lang/python21/patches
diff options
context:
space:
mode:
authorminskim <minskim@pkgsrc.org>2005-05-29 06:39:11 +0000
committerminskim <minskim@pkgsrc.org>2005-05-29 06:39:11 +0000
commitbfe28d6d1493218f4b7de0d5cc71f8c524df15ed (patch)
tree921bbe3cf1e80fe6e2d0c60057d8ebbb31088806 /lang/python21/patches
parent78f44bb81309ccd137551b4cd0836038b2a23329 (diff)
downloadpkgsrc-bfe28d6d1493218f4b7de0d5cc71f8c524df15ed.tar.gz
Explicitly disable the tkinter module, which is provided by x11/py-Tk.
Diffstat (limited to 'lang/python21/patches')
-rw-r--r--lang/python21/patches/patch-ac11
1 files changed, 10 insertions, 1 deletions
diff --git a/lang/python21/patches/patch-ac b/lang/python21/patches/patch-ac
index 92eec8cc1c5..b2edb7a7b91 100644
--- a/lang/python21/patches/patch-ac
+++ b/lang/python21/patches/patch-ac
@@ -1,4 +1,4 @@
-$NetBSD: patch-ac,v 1.5 2004/05/16 20:01:59 minskim Exp $
+$NetBSD: patch-ac,v 1.6 2005/05/29 06:39:12 minskim Exp $
--- setup.py.orig 2001-12-27 15:51:02.000000000 -0600
+++ setup.py
@@ -106,6 +106,15 @@ $NetBSD: patch-ac,v 1.5 2004/05/16 20:01:59 minskim Exp $
# Interface to the Expat XML parser
#
+@@ -515,7 +500,7 @@ class PyBuildExt(build_ext):
+ self.extensions.extend(exts)
+
+ # Call the method for detecting whether _tkinter can be compiled
+- self.detect_tkinter(inc_dirs, lib_dirs)
++ #self.detect_tkinter(inc_dirs, lib_dirs)
+
+
+ def detect_tkinter(self, inc_dirs, lib_dirs):
@@ -609,7 +594,7 @@ def main():
ext_modules=[Extension('struct', ['structmodule.c'])],