summaryrefslogtreecommitdiff
path: root/lang/python22/patches/patch-aa
diff options
context:
space:
mode:
Diffstat (limited to 'lang/python22/patches/patch-aa')
-rw-r--r--lang/python22/patches/patch-aa22
1 files changed, 11 insertions, 11 deletions
diff --git a/lang/python22/patches/patch-aa b/lang/python22/patches/patch-aa
index c83e0ba56a8..25fa6519c6b 100644
--- a/lang/python22/patches/patch-aa
+++ b/lang/python22/patches/patch-aa
@@ -1,8 +1,8 @@
-$NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
+$NetBSD: patch-aa,v 1.5 2002/04/15 12:13:38 drochner Exp $
---- setup.py.orig Mon Dec 17 12:24:43 2001
-+++ setup.py
-@@ -192,11 +192,15 @@
+--- setup.py.orig Tue Mar 26 14:43:04 2002
++++ setup.py Mon Apr 15 11:13:53 2002
+@@ -197,11 +197,15 @@
return platform
def detect_modules(self):
@@ -23,7 +23,7 @@ $NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
try:
have_unicode = unicode
-@@ -256,7 +260,7 @@
+@@ -261,7 +265,7 @@
if have_unicode:
exts.append( Extension('unicodedata', ['unicodedata.c']) )
# access to ISO C locale support
@@ -32,7 +32,7 @@ $NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
# Modules with some UNIX dependencies -- on by default:
# (If you have a really backward UNIX, select and socket may not be
-@@ -314,13 +318,13 @@
+@@ -319,13 +323,13 @@
# These represent audio samples or images as strings:
# Disabled on 64-bit platforms
@@ -50,7 +50,7 @@ $NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
# readline
if self.compiler.find_library_file(lib_dirs, 'readline'):
-@@ -347,14 +351,10 @@
+@@ -352,14 +356,10 @@
# socket(2)
# Detect SSL support for the socket module
ssl_incs = find_file('openssl/ssl.h', inc_dirs,
@@ -67,7 +67,7 @@ $NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
if (ssl_incs is not None and
ssl_libs is not None):
-@@ -470,8 +470,8 @@
+@@ -475,8 +475,8 @@
if (self.compiler.find_library_file(lib_dirs, 'ncurses')):
curses_libs = ['ncurses']
@@ -77,8 +77,8 @@ $NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
+# libraries = curses_libs) )
elif (self.compiler.find_library_file(lib_dirs, 'curses')
and platform != 'darwin'):
- # OSX has an old Berkeley curses, not good enough for
-@@ -481,8 +481,8 @@
+ # OSX has an old Berkeley curses, not good enough for
+@@ -486,8 +486,8 @@
else:
curses_libs = ['curses', 'termcap']
@@ -89,7 +89,7 @@ $NetBSD: patch-aa,v 1.4 2002/04/09 04:33:20 jlam Exp $
# If the curses module is enabled, check for the panel module
if (module_enabled(exts, '_curses') and
-@@ -784,7 +784,7 @@
+@@ -793,7 +793,7 @@
ext_modules=[Extension('struct', ['structmodule.c'])],
# Scripts to install