You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
95 lines
3.3 KiB
95 lines
3.3 KiB
# --- T2-COPYRIGHT-NOTE-BEGIN --- |
|
# This copyright note is auto-generated by ./scripts/Create-CopyPatch. |
|
# |
|
# T2 SDE: package/.../python/python-setup.patch |
|
# Copyright (C) 2004 - 2006 The T2 SDE Project |
|
# |
|
# More information can be found in the files COPYING and README. |
|
# |
|
# This patch file is dual-licensed. It is available under the license the |
|
# patched project is licensed under, as long as it is an OpenSource license |
|
# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms |
|
# of the GNU General Public License as published by the Free Software |
|
# Foundation; either version 2 of the License, or (at your option) any later |
|
# version. |
|
# --- T2-COPYRIGHT-NOTE-END --- |
|
--- ./Modules/Setup.dist.orig 2005-04-20 09:18:35.000000000 +0200 |
|
+++ ./Modules/Setup.dist 2005-04-20 09:24:02.000000000 +0200 |
|
@@ -147,7 +147,7 @@ |
|
# modules are to be built as shared libraries (see above for more |
|
# detail; also note that *static* reverses this effect): |
|
|
|
-#*shared* |
|
+*shared* |
|
|
|
# GNU readline. Unlike previous Python incarnations, GNU readline is |
|
# now incorporated in an optional module, configured in the Setup file |
|
@@ -157,7 +157,7 @@ |
|
# it, depending on your system -- see the GNU readline instructions. |
|
# It's okay for this to be a shared library, too. |
|
|
|
-#readline readline.c -lreadline -ltermcap |
|
+readline readline.c -lreadline -ltermcap |
|
|
|
|
|
# Modules that should always be present (non UNIX dependent): |
|
@@ -201,25 +201,25 @@ |
|
|
|
# Socket module helper for SSL support; you must comment out the other |
|
# socket line above, and possibly edit the SSL variable: |
|
-#SSL=/usr/local/ssl |
|
-#_ssl _ssl.c \ |
|
-# -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ |
|
-# -L$(SSL)/lib -lssl -lcrypto |
|
+SSL=/usr |
|
+_ssl _ssl.c \ |
|
+ -DUSE_SSL -I$(SSL)/include -I$(SSL)/include/openssl \ |
|
+ -L$(SSL)/lib -lssl -lcrypto |
|
|
|
# The crypt module is now disabled by default because it breaks builds |
|
# on many systems (where -lcrypt is needed), e.g. Linux (I believe). |
|
# |
|
# First, look at Setup.config; configure may have set this for you. |
|
|
|
-#crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems |
|
+crypt cryptmodule.c # -lcrypt # crypt(3); needs -lcrypt on some systems |
|
|
|
|
|
# Some more UNIX dependent modules -- off by default, since these |
|
# are not supported by all UNIX systems: |
|
|
|
#nis nismodule.c -lnsl # Sun yellow pages -- not everywhere |
|
-#termios termios.c # Steen Lumholt's termios module |
|
-#resource resource.c # Jeremy Hylton's rlimit interface |
|
+termios termios.c # Steen Lumholt's termios module |
|
+resource resource.c # Jeremy Hylton's rlimit interface |
|
|
|
|
|
# Multimedia modules -- off by default. |
|
@@ -340,7 +340,7 @@ |
|
# -lX11 |
|
|
|
# Lance Ellinghaus's syslog module |
|
-#syslog syslogmodule.c # syslog daemon interface |
|
+syslog syslogmodule.c # syslog daemon interface |
|
|
|
|
|
# Curses support, requring the System V version of curses, often |
|
@@ -382,7 +382,7 @@ |
|
# |
|
# First, look at Setup.config; configure may have set this for you. |
|
|
|
-#gdbm gdbmmodule.c -I/usr/local/include -L/usr/local/lib -lgdbm |
|
+gdbm gdbmmodule.c -I/usr/include -L/usr/lib -lgdbm |
|
|
|
|
|
# Sleepycat Berkeley DB interface. |
|
@@ -446,7 +446,7 @@ |
|
# Andrew Kuchling's zlib module. |
|
# This require zlib 1.1.3 (or later). |
|
# See http://www.gzip.org/zlib/ |
|
-#zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz |
|
+zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz |
|
|
|
# Interface to the Expat XML parser |
|
#
|
|
|