summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authortsarna <tsarna>1999-04-14 04:51:27 +0000
committertsarna <tsarna>1999-04-14 04:51:27 +0000
commit68572c44df12a172cb3f7c3a2103688977e51525 (patch)
tree2a6ffa07cf6b2a5c1333b58838e519bffa265a0b /lang
parent7f0447590e06a9f965102f5ccd58cdc8aebde5e0 (diff)
downloadpkgsrc-68572c44df12a172cb3f7c3a2103688977e51525.tar.gz
Upgrade to 1.5.2
Diffstat (limited to 'lang')
-rw-r--r--lang/python/Makefile45
-rw-r--r--lang/python/files/Setup37
-rw-r--r--lang/python/files/md533
-rw-r--r--lang/python/patches/patch-ba1153
-rw-r--r--lang/python/patches/patch-bb15
-rw-r--r--lang/python/pkg/PLIST-md.shared35
-rw-r--r--lang/python/pkg/PLIST-md.static2
-rw-r--r--lang/python/pkg/PLIST-mi874
-rw-r--r--lang/python/pkg/PLIST.pre4
9 files changed, 57 insertions, 2141 deletions
diff --git a/lang/python/Makefile b/lang/python/Makefile
index 5645486ab78..f4c2af9bcbc 100644
--- a/lang/python/Makefile
+++ b/lang/python/Makefile
@@ -1,31 +1,27 @@
-# $NetBSD: Makefile,v 1.14 1999/01/17 00:23:40 frueauf Exp $
+# $NetBSD: Makefile,v 1.15 1999/04/14 04:51:27 tsarna Exp $
#
-DISTNAME= pyth151
-PKGNAME= python-1.5.1
-WRKSRC= ${WRKDIR}/Python-1.5.1
+DISTNAME= py152
+PKGNAME= python-1.5.2
CATEGORIES= lang
MASTER_SITES= ftp://ftp.python.org/pub/python/src/
EXTRACT_SUFX= .tgz
-DIST_SUBDIR= python
-
-PATCH_SITES= http://www.python.org/1.5/patches-1.5.1/
-PATCHFILES= freeze.1.txt _tkinter.1.txt configure.1.txt \
- object.1.txt parsermodule.1.txt zlibmodule.1.txt \
- string.1.txt bltinmodule.1.txt timemodule.1.txt \
- fileobject.1.txt urllib.1.txt pcre.1.txt \
- configure.2.txt imaplib.1.txt urllib.2.txt \
- sgmllib.1.txt bltinmodule.2.txt ceval.1.txt gzip.1.txt \
- imaplib.2.txt import.1.txt imaplib.3.txt \
- stringobject.1.txt sgmllib.2.txt classobject.1.txt \
- SocketServer.1.txt bltinmodule.3.txt longobject.1.txt \
- stropmodule.1.txt
MAINTAINER= tsarna@netbsd.org
HOMEPAGE= http://www.python.org/
+PLIST_SRC= ${WRKDIR}/.PLIST_SRC
+
+DIST_SUBDIR= python
+
+WRKSRC= ${WRKDIR}/Python-1.5.2
GNU_CONFIGURE= yes
-MAKE_FLAGS+= 'OPT=${CFLAGS}'
+
+# Make sure having environment variable OPT doesn't affect the
+# installed module-building Makefile
+MAKE_ENV+= 'OPT=${CFLAGS}'
+CONFIGURE_ENV+= 'OPT=${CFLAGS}'
+SCRIPTS_ENV+= 'OPT=${CFLAGS}'
# Handle the module setup file:
# - disable a few broken modules on 64 bit platforms (nothing important)
@@ -34,7 +30,7 @@ MAKE_FLAGS+= 'OPT=${CFLAGS}'
.if ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sparc64"
NO64BIT=\#
.endif
-.if ${MACHINE_ARCH} == "powerpc" || ${MACHINE_ARCH} == "vax"
+.if ${MACHINE_ARCH} == "sparc64"
NOSHARED=\#
.endif
@@ -43,6 +39,15 @@ post-configure:
${FILESDIR}/Setup >${WRKSRC}/Modules/Setup
post-install:
- strip ${PREFIX}/bin/python
+ ${CAT} ${PKGDIR}/PLIST.pre >${PLIST_SRC}
+ (cd ${PREFIX}; find lib/python1.5 -type f -print >>${PLIST_SRC})
+ (cd ${PREFIX}; find include/python1.5 -type f -print >>${PLIST_SRC})
+ (cd ${PREFIX}; find -d include/python1.5 -type d -print | \
+ ${SED} -e "s/^/@dirrm /" >>${PLIST_SRC})
+ ${ECHO} "@unexec ${RM} -rf %D/lib/python1.5" >>${PLIST_SRC}
+ # Reinstall Python binary to get it stripped
+ ${RM} ${PREFIX}/bin/python ${PREFIX}/bin/python1.5
+ ${INSTALL_PROGRAM} ${WRKSRC}/python ${PREFIX}/bin
+ ${LN} ${PREFIX}/bin/python ${PREFIX}/bin/python1.5
.include "../../mk/bsd.pkg.mk"
diff --git a/lang/python/files/Setup b/lang/python/files/Setup
index 3c6e80e1ec4..15f53f4a0a4 100644
--- a/lang/python/files/Setup
+++ b/lang/python/files/Setup
@@ -1,6 +1,6 @@
# -*- makefile -*-
#
-# $NetBSD: Setup,v 1.4 1998/08/07 11:09:24 agc Exp $
+# $NetBSD: Setup,v 1.5 1999/04/14 04:51:27 tsarna Exp $
#
# The file Setup is used by the makesetup script to construct the files
# Makefile and config.c, from Makefile.pre and config.c.in,
@@ -42,9 +42,13 @@
# added to the linker options, but rules to create their .o files and
# their shared libraries will still be added to the Makefile, and
# their names will be collected in the Make variable SHAREDMODS. This
-# is used to build modules as shared libraries. (They must be
-# installed using "make sharedinstall".) (For compatibility,
+# is used to build modules as shared libraries. (They can be
+# installed using "make sharedinstall", which is implied by the
+# toplevel "make install" target.) (For compatibility,
# *noconfig* has the same effect as *shared*.)
+#
+# In addition, *static* reverses this effect (negating a previous
+# *shared* line).
# NOTE: As a standard policy, as many modules as can be supported by a
# platform should be present. The distribution comes with all modules
@@ -73,7 +77,7 @@ DESTPATH=
SITEPATH=
# Standard path components for test modules
-TESTPATH=:test
+TESTPATH=
# Path components for machine- or system-dependent modules and shared libraries
MACHDEPPATH=:plat-$(MACHDEP)
@@ -95,7 +99,8 @@ signal signalmodule.c # signal(2)
# The SGI specific GL module:
-#gl glmodule.c cgensupport.c -I$(srcdir) -lgl -lX11
+GLHACK=-Dclear=__GLclear
+#gl glmodule.c cgensupport.c -I$(srcdir) $(GLHACK) -lgl -lX11
# The thread module is now automatically enabled, see Setup.thread.
@@ -108,7 +113,7 @@ signal signalmodule.c # signal(2)
# Uncommenting the following line tells makesetup that all following
# modules are to be built as shared libraries (see above for more
-# detail):
+# detail; also note that *static* reverses this effect):
@NOSHARED@*shared*
@@ -145,6 +150,7 @@ pwd pwdmodule.c # pwd(3)
grp grpmodule.c # grp(3)
select selectmodule.c # select(2); not on ancient System V
socket socketmodule.c # socket(2); not on ancient System V
+#_socket socketmodule.c # socket(2); use this one for BeOS sockets
errno errnomodule.c # posix (UNIX) errno values
# The crypt module is now disabled by default because it breaks builds
@@ -196,6 +202,11 @@ resource resource.c # Jeremy Hylton's rlimit interface
md5 md5module.c md5c.c
+# The sha module implements the SHA checksum algorithm.
+# (NIST's Secure Hash Algorithm.)
+sha shamodule.c
+
+
# The mpz module interfaces to the GNU Multiple Precision library.
# You need to ftp the GNU MP library.
# The GMP variable must point to the GMP source directory.
@@ -217,7 +228,7 @@ md5 md5module.c md5c.c
# These module work on any SGI machine:
# *** gl must be enabled higher up in this file ***
-#fm fmmodule.c -lfm -lgl # Font Manager
+#fm fmmodule.c $(GLHACK) -lfm -lgl # Font Manager
#sgi sgimodule.c # sgi.nap() and a few more
# This module requires the header file
@@ -237,11 +248,15 @@ md5 md5module.c md5c.c
# components such as dialogs and buttons using SGI's GL and FM
# libraries. You must ftp the FORMS library separately from
# ftp://ftp.cs.ruu.nl/pub/SGI/FORMS. It was tested with FORMS 2.2a.
+# NOTE: if you want to be able to use FORMS and curses simultaneously
+# (or both link them statically into the same binary), you must
+# compile all of FORMS with the cc option "-Dclear=__GLclear".
+
# The FORMS variable must point to the FORMS subdirectory of the forms
# toplevel directory:
#FORMS=/ufs/guido/src/forms/FORMS
-#fl flmodule.c -I$(FORMS) $(FORMS)/libforms.a -lfm -lgl
+#fl flmodule.c -I$(FORMS) $(GLHACK) $(FORMS)/libforms.a -lfm -lgl
# SunOS specific modules -- off by default:
@@ -270,12 +285,12 @@ TKPATH=:lib-tk
# *** Always uncomment this (leave the leading underscore in!):
# _tkinter _tkinter.c tkappinit.c -DWITH_APPINIT \
+# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
+# -I/usr/local/include \
# *** Uncomment and edit to reflect where your X11 header files are:
# -I/usr/X11R6/include \
# *** Or uncomment this for Solaris:
# -I/usr/openwin/include \
-# *** Uncomment and edit to reflect where your Tcl/Tk headers are:
-# -I/usr/local/include \
# *** Uncomment and edit for Tix extension only:
# -DWITH_TIX -ltix4.1.8.0 \
# *** Uncomment and edit for BLT extension only:
@@ -392,7 +407,7 @@ cPickle cPickle.c
#fpetest fpetestmodule.c
# Andrew Kuchling's zlib module.
-# This require zlib 1.0.4 (or later). See http://quest.jpl.nasa.gov/zlib/
+# This require zlib 1.1.3 (or later).
# See http://www.cdrom.com/pub/infozip/zlib/
zlib zlibmodule.c -I$(prefix)/include -L$(exec_prefix)/lib -lz
diff --git a/lang/python/files/md5 b/lang/python/files/md5
index 4dbdb8e144d..a34d654fdc5 100644
--- a/lang/python/files/md5
+++ b/lang/python/files/md5
@@ -1,32 +1,3 @@
-$NetBSD: md5,v 1.7 1999/03/03 19:47:45 tsarna Exp $
+$NetBSD: md5,v 1.8 1999/04/14 04:51:27 tsarna Exp $
-MD5 (python/pyth151.tgz) = 485f5febc1d2865abea2adc72a345827
-MD5 (python/freeze.1.txt) = 7cb9266ba6db670cd019cf27c77468ef
-MD5 (python/_tkinter.1.txt) = 7298bfd731a613a28e2cb72ad8e3e266
-MD5 (python/configure.1.txt) = 8d525b80d2442021dc29fbd328b8f87d
-MD5 (python/object.1.txt) = f03bad9c3d67190232fce407b0c0fa51
-MD5 (python/parsermodule.1.txt) = 24e41667e705fbe310e8d8dd85da706d
-MD5 (python/zlibmodule.1.txt) = 7d8dfda5f91fd370e001d1f544afd279
-MD5 (python/string.1.txt) = 581f5dc5c173e8f9927a5a71f7c2b0cc
-MD5 (python/bltinmodule.1.txt) = c1edf803162860802d45c32d9799daaa
-MD5 (python/timemodule.1.txt) = 7f53c69797c03c7db56f117514790e0d
-MD5 (python/fileobject.1.txt) = 20ebd260276bdf6c3723c62a370e1c8c
-MD5 (python/urllib.1.txt) = d8b46f39d521d5d6738fe4c6e905a313
-MD5 (python/pcre.1.txt) = f3776741849f1be9fc1cd55dc0faeadd
-MD5 (python/configure.2.txt) = a51d521cf899a74b234f5b0fc1a2207c
-MD5 (python/imaplib.1.txt) = ece2e50e69e7ec86c1a9cc310d5ae220
-MD5 (python/urllib.2.txt) = e0189571f5b40a87be4c20ad13a02e62
-MD5 (python/sgmllib.1.txt) = e5ef0538266ff97efd830dfdcc2fcdd5
-MD5 (python/bltinmodule.2.txt) = 07ba49023b28437733ec611ddf4558fb
-MD5 (python/ceval.1.txt) = 1d062f62a16189df9832defd22aa9735
-MD5 (python/gzip.1.txt) = 55140b037c55b19795ed4543986c2fd4
-MD5 (python/imaplib.2.txt) = f8cb53849055badd3037545a92d1a123
-MD5 (python/import.1.txt) = 15ab480458410b0450b07f3eedb15cda
-MD5 (python/imaplib.3.txt) = 3a8180096777c690c5ffd8c4fbd6c38b
-MD5 (python/stringobject.1.txt) = d1ccf56c0db0ba1df715ce55a5788ed3
-MD5 (python/sgmllib.2.txt) = 0ad52d457fbc84fbffe5b7b984e3d8d4
-MD5 (python/classobject.1.txt) = f65618df540a8819299b65eafe775e6a
-MD5 (python/SocketServer.1.txt) = 7ad43e38616efa28b28710e686462494
-MD5 (python/bltinmodule.3.txt) = 7ebef8ec99284c743ae4804638780bd7
-MD5 (python/longobject.1.txt) = 069fe0a8fdeaa60a8cf5ff68877a66a3
-MD5 (python/stropmodule.1.txt) = 0f7729796b64cfdf7ad63d74e95fac9d
+MD5 (python/py152.tgz) = e9d677ae6d5a3efc6937627ed8a3e752
diff --git a/lang/python/patches/patch-ba b/lang/python/patches/patch-ba
deleted file mode 100644
index 74aebdc0147..00000000000
--- a/lang/python/patches/patch-ba
+++ /dev/null
@@ -1,1153 +0,0 @@
-$NetBSD: patch-ba,v 1.2 1998/09/20 20:28:12 tsarna Exp $
-
---- configure.in.orig Thu Aug 27 12:30:44 1998
-+++ configure.in Thu Aug 27 12:34:01 1998
-@@ -293,7 +293,14 @@
- next/*) LDSHARED='$(CC) $(CFLAGS) -nostdlib -r';;
- Linux*) LDSHARED="gcc -shared";;
- dgux*) LDSHARED="ld -G";;
-- FreeBSD*|NetBSD*|OpenBSD*) LDSHARED="ld -Bshareable";;
-+ FreeBSD*|OpenBSD*) LDSHARED="ld -Bshareable";;
-+ NetBSD*)
-+ if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
-+ then
-+ LDSHARED="cc -shared"
-+ else
-+ LDSHARED="ld -Bshareable"
-+ fi;;
- SCO_SV*) LDSHARED="cc -G -KPIC -Ki486 -belf -Wl,-Bexport";;
- *) LDSHARED="ld";;
- esac
-@@ -310,7 +317,8 @@
- else CCSHARED="+z";
- fi;;
- Linux*) CCSHARED="-fpic";;
-- FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fpic";;
-+ FreeBSD*|OpenBSD*) CCSHARED="-fpic";;
-+ NetBSD*) CCSHARED="-fPIC";;
- SCO_SV*) CCSHARED="-KPIC -dy -Bdynamic";;
- IRIX*/6*) case $CC in
- *gcc*) CCSHARED="-shared";;
-@@ -331,6 +339,11 @@
- Linux*) LINKFORSHARED="-Xlinker -export-dynamic";;
- next/*) LINKFORSHARED="-u libsys_s";;
- SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
-+ NetBSD*)
-+ if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
-+ then
-+ LINKFORSHARED="-Wl,--export-dynamic"
-+ fi;;
- SunOS/5*) case $CC in
- *gcc*)
- if $CC -Xlinker -V 2>/dev/null | grep BFD >/dev/null
---- configure.orig Thu Aug 27 12:30:44 1998
-+++ configure Thu Aug 27 12:34:06 1998
-@@ -1843,7 +1843,14 @@
- next/*) LDSHARED='$(CC) $(CFLAGS) -nostdlib -r';;
- Linux*) LDSHARED="gcc -shared";;
- dgux*) LDSHARED="ld -G";;
-- FreeBSD*|NetBSD*|OpenBSD*) LDSHARED="ld -Bshareable";;
-+ FreeBSD*|OpenBSD*) LDSHARED="ld -Bshareable";;
-+ NetBSD*)
-+ if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
-+ then
-+ LDSHARED="cc -shared"
-+ else
-+ LDSHARED="ld -Bshareable"
-+ fi;;
- SCO_SV*) LDSHARED="cc -G -KPIC -Ki486 -belf -Wl,-Bexport";;
- *) LDSHARED="ld";;
- esac
-@@ -1852,7 +1859,7 @@
- # CCSHARED are the C *flags* used to create objects to go into a shared
- # library -- this is only needed for a few systems
- echo $ac_n "checking CCSHARED""... $ac_c" 1>&6
--echo "configure:1856: checking CCSHARED" >&5
-+echo "configure:1863: checking CCSHARED" >&5
- if test -z "$CCSHARED"
- then
- case $ac_sys_system/$ac_sys_release in
-@@ -1861,7 +1868,8 @@
- else CCSHARED="+z";
- fi;;
- Linux*) CCSHARED="-fpic";;
-- FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fpic";;
-+ FreeBSD*|OpenBSD*) CCSHARED="-fpic";;
-+ NetBSD*) CCSHARED="-fPIC";;
- SCO_SV*) CCSHARED="-KPIC -dy -Bdynamic";;
- IRIX*/6*) case $CC in
- *gcc*) CCSHARED="-shared";;
-@@ -1873,7 +1881,7 @@
- # LINKFORSHARED are the flags passed to the $(CC) command that links
- # the python executable -- this is only needed for a few systems
- echo $ac_n "checking LINKFORSHARED""... $ac_c" 1>&6
--echo "configure:1877: checking LINKFORSHARED" >&5
-+echo "configure:1885: checking LINKFORSHARED" >&5
- if test -z "$LINKFORSHARED"
- then
- case $ac_sys_system/$ac_sys_release in
-@@ -1883,6 +1891,11 @@
- Linux*) LINKFORSHARED="-Xlinker -export-dynamic";;
- next/*) LINKFORSHARED="-u libsys_s";;
- SCO_SV*) LINKFORSHARED="-Bdynamic -dy -Wl,-Bexport";;
-+ NetBSD*)
-+ if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
-+ then
-+ LINKFORSHARED="-Wl,--export-dynamic"
-+ fi;;
- SunOS/5*) case $CC in
- *gcc*)
- if $CC -Xlinker -V 2>/dev/null | grep BFD >/dev/null
-@@ -1896,7 +1909,7 @@
-
- # checks for libraries
- echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
--echo "configure:1900: checking for dlopen in -ldl" >&5
-+echo "configure:1913: checking for dlopen in -ldl" >&5
- ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -1904,7 +1917,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-ldl $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 1908 "configure"
-+#line 1921 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -1915,7 +1928,7 @@
- dlopen()
- ; return 0; }
- EOF
--if { (eval echo configure:1919: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:1932: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -1943,7 +1956,7 @@
- fi
- # Dynamic linking for SunOS/Solaris and SYSV
- echo $ac_n "checking for shl_load in -ldld""... $ac_c" 1>&6
--echo "configure:1947: checking for shl_load in -ldld" >&5
-+echo "configure:1960: checking for shl_load in -ldld" >&5
- ac_lib_var=`echo dld'_'shl_load | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -1951,7 +1964,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-ldld $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 1955 "configure"
-+#line 1968 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -1962,7 +1975,7 @@
- shl_load()
- ; return 0; }
- EOF
--if { (eval echo configure:1966: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:1979: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -1990,7 +2003,7 @@
- fi
- # Dynamic linking for HP-UX
- echo $ac_n "checking for pow in -lm""... $ac_c" 1>&6
--echo "configure:1994: checking for pow in -lm" >&5
-+echo "configure:2007: checking for pow in -lm" >&5
- ac_lib_var=`echo m'_'pow | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -1998,7 +2011,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lm $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2002 "configure"
-+#line 2015 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2009,7 +2022,7 @@
- pow()
- ; return 0; }
- EOF
--if { (eval echo configure:2013: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2026: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2041,7 +2054,7 @@
- if test "$ac_sys_system" != IRIX
- then
- echo $ac_n "checking for t_open in -lnsl""... $ac_c" 1>&6
--echo "configure:2045: checking for t_open in -lnsl" >&5
-+echo "configure:2058: checking for t_open in -lnsl" >&5
- ac_lib_var=`echo nsl'_'t_open | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2049,7 +2062,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lnsl $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2053 "configure"
-+#line 2066 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2060,7 +2073,7 @@
- t_open()
- ; return 0; }
- EOF
--if { (eval echo configure:2064: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2077: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2081,7 +2094,7 @@
- fi
- # SVR4
- echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6
--echo "configure:2085: checking for socket in -lsocket" >&5
-+echo "configure:2098: checking for socket in -lsocket" >&5
- ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2089,7 +2102,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lsocket $LIBS $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2093 "configure"
-+#line 2106 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2100,7 +2113,7 @@
- socket()
- ; return 0; }
- EOF
--if { (eval echo configure:2104: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2117: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2123,7 +2136,7 @@
- fi
-
- echo $ac_n "checking for --with-libs""... $ac_c" 1>&6
--echo "configure:2127: checking for --with-libs" >&5
-+echo "configure:2140: checking for --with-libs" >&5
- # Check whether --with-libs or --without-libs was given.
- if test "${with_libs+set}" = set; then
- withval="$with_libs"
-@@ -2137,7 +2150,7 @@
-
-
- echo $ac_n "checking for --with(out)-readline""... $ac_c" 1>&6
--echo "configure:2141: checking for --with(out)-readline" >&5
-+echo "configure:2154: checking for --with(out)-readline" >&5
- # Check whether --with-readline or --without-readline was given.
- if test "${with_readline+set}" = set; then
- withval="$with_readline"
-@@ -2152,7 +2165,7 @@
- USE_THREAD_MODULE="#"
-
- echo $ac_n "checking for --with-dec-threads""... $ac_c" 1>&6
--echo "configure:2156: checking for --with-dec-threads" >&5
-+echo "configure:2169: checking for --with-dec-threads" >&5
-
- # Check whether --with-dec-threads or --without-dec-threads was given.
- if test "${with_dec_threads+set}" = set; then
-@@ -2168,7 +2181,7 @@
-
-
- echo $ac_n "checking for --with-threads""... $ac_c" 1>&6
--echo "configure:2172: checking for --with-threads" >&5
-+echo "configure:2185: checking for --with-threads" >&5
- # Check whether --with-threads or --without-threads was given.
- if test "${with_threads+set}" = set; then
- withval="$with_threads"
-@@ -2182,7 +2195,7 @@
-
-
- echo $ac_n "checking for --with-thread""... $ac_c" 1>&6
--echo "configure:2186: checking for --with-thread" >&5
-+echo "configure:2199: checking for --with-thread" >&5
- # Check whether --with-thread or --without-thread was given.
- if test "${with_thread+set}" = set; then
- withval="$with_thread"
-@@ -2198,17 +2211,17 @@
-
- ac_safe=`echo "mach/cthreads.h" | sed 'y%./+-%__p_%'`
- echo $ac_n "checking for mach/cthreads.h""... $ac_c" 1>&6
--echo "configure:2202: checking for mach/cthreads.h" >&5
-+echo "configure:2215: checking for mach/cthreads.h" >&5
- if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2207 "configure"
-+#line 2220 "configure"
- #include "confdefs.h"
- #include <mach/cthreads.h>
- EOF
- ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
--{ (eval echo configure:2212: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
-+{ (eval echo configure:2225: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
- ac_err=`grep -v '^ *+' conftest.out`
- if test -z "$ac_err"; then
- rm -rf conftest*
-@@ -2237,7 +2250,7 @@
- echo "$ac_t""no" 1>&6
-
- echo $ac_n "checking for pthread_create in -lpthreads""... $ac_c" 1>&6
--echo "configure:2241: checking for pthread_create in -lpthreads" >&5
-+echo "configure:2254: checking for pthread_create in -lpthreads" >&5
- ac_lib_var=`echo pthreads'_'pthread_create | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2245,7 +2258,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lpthreads $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2249 "configure"
-+#line 2262 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2256,7 +2269,7 @@
- pthread_create()
- ; return 0; }
- EOF
--if { (eval echo configure:2260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2273: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2285,7 +2298,7 @@
- echo "$ac_t""no" 1>&6
-
- echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6
--echo "configure:2289: checking for pthread_create in -lpthread" >&5
-+echo "configure:2302: checking for pthread_create in -lpthread" >&5
- ac_lib_var=`echo pthread'_'pthread_create | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2293,7 +2306,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lpthread $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2297 "configure"
-+#line 2310 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2304,7 +2317,7 @@
- pthread_create()
- ; return 0; }
- EOF
--if { (eval echo configure:2308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2321: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2333,7 +2346,7 @@
- echo "$ac_t""no" 1>&6
-
- echo $ac_n "checking for pthread_create in -lc_r""... $ac_c" 1>&6
--echo "configure:2337: checking for pthread_create in -lc_r" >&5
-+echo "configure:2350: checking for pthread_create in -lc_r" >&5
- ac_lib_var=`echo c_r'_'pthread_create | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2341,7 +2354,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lc_r $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2345 "configure"
-+#line 2358 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2352,7 +2365,7 @@
- pthread_create()
- ; return 0; }
- EOF
--if { (eval echo configure:2356: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2369: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2381,7 +2394,7 @@
- echo "$ac_t""no" 1>&6
-
- echo $ac_n "checking for __d6_pthread_create in -lthread""... $ac_c" 1>&6
--echo "configure:2385: checking for __d6_pthread_create in -lthread" >&5
-+echo "configure:2398: checking for __d6_pthread_create in -lthread" >&5
- ac_lib_var=`echo thread'_'__d6_pthread_create | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2389,7 +2402,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lthread $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2393 "configure"
-+#line 2406 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2400,7 +2413,7 @@
- __d6_pthread_create()
- ; return 0; }
- EOF
--if { (eval echo configure:2404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2417: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2440,7 +2453,7 @@
-
-
- echo $ac_n "checking for usconfig in -lmpc""... $ac_c" 1>&6
--echo "configure:2444: checking for usconfig in -lmpc" >&5
-+echo "configure:2457: checking for usconfig in -lmpc" >&5
- ac_lib_var=`echo mpc'_'usconfig | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2448,7 +2461,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lmpc $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2452 "configure"
-+#line 2465 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2459,7 +2472,7 @@
- usconfig()
- ; return 0; }
- EOF
--if { (eval echo configure:2463: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2476: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2485,7 +2498,7 @@
- fi
-
- echo $ac_n "checking for thr_create in -lthread""... $ac_c" 1>&6
--echo "configure:2489: checking for thr_create in -lthread" >&5
-+echo "configure:2502: checking for thr_create in -lthread" >&5
- ac_lib_var=`echo thread'_'thr_create | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -2493,7 +2506,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lthread $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 2497 "configure"
-+#line 2510 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -2504,7 +2517,7 @@
- thr_create()
- ; return 0; }
- EOF
--if { (eval echo configure:2508: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2521: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -2540,7 +2553,7 @@
- DLINCLDIR=/
-
- echo $ac_n "checking for --with-sgi-dl""... $ac_c" 1>&6
--echo "configure:2544: checking for --with-sgi-dl" >&5
-+echo "configure:2557: checking for --with-sgi-dl" >&5
- # Check whether --with-sgi-dl or --without-sgi-dl was given.
- if test "${with_sgi_dl+set}" = set; then
- withval="$with_sgi_dl"
-@@ -2563,7 +2576,7 @@
-
-
- echo $ac_n "checking for --with-dl-dld""... $ac_c" 1>&6
--echo "configure:2567: checking for --with-dl-dld" >&5
-+echo "configure:2580: checking for --with-dl-dld" >&5
- # Check whether --with-dl-dld or --without-dl-dld was given.
- if test "${with_dl_dld+set}" = set; then
- withval="$with_dl_dld"
-@@ -2595,12 +2608,12 @@
- tcgetpgrp tcsetpgrp times truncate uname waitpid
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--echo "configure:2599: checking for $ac_func" >&5
-+echo "configure:2612: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2604 "configure"
-+#line 2617 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
-@@ -2623,7 +2636,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:2627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
-@@ -2650,12 +2663,12 @@
- for ac_func in dup2 getcwd strdup strerror memmove
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--echo "configure:2654: checking for $ac_func" >&5
-+echo "configure:2667: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2659 "configure"
-+#line 2672 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
-@@ -2678,7 +2691,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:2682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2695: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
-@@ -2705,12 +2718,12 @@
-
-
- echo $ac_n "checking for getpgrp""... $ac_c" 1>&6
--echo "configure:2709: checking for getpgrp" >&5
-+echo "configure:2722: checking for getpgrp" >&5
- if eval "test \"`echo '$''{'ac_cv_func_getpgrp'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2714 "configure"
-+#line 2727 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char getpgrp(); below. */
-@@ -2733,7 +2746,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:2737: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_getpgrp=yes"
- else
-@@ -2748,14 +2761,14 @@
- if eval "test \"`echo '$ac_cv_func_'getpgrp`\" = yes"; then
- echo "$ac_t""yes" 1>&6
- cat > conftest.$ac_ext <<EOF
--#line 2752 "configure"
-+#line 2765 "configure"
- #include "confdefs.h"
- #include <unistd.h>
- int main() {
- getpgrp(0);
- ; return 0; }
- EOF
--if { (eval echo configure:2759: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:2772: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- cat >> confdefs.h <<\EOF
- #define GETPGRP_HAVE_ARG 1
-@@ -2771,12 +2784,12 @@
- fi
-
- echo $ac_n "checking for setpgrp""... $ac_c" 1>&6
--echo "configure:2775: checking for setpgrp" >&5
-+echo "configure:2788: checking for setpgrp" >&5
- if eval "test \"`echo '$''{'ac_cv_func_setpgrp'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2780 "configure"
-+#line 2793 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char setpgrp(); below. */
-@@ -2799,7 +2812,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:2803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_setpgrp=yes"
- else
-@@ -2814,14 +2827,14 @@
- if eval "test \"`echo '$ac_cv_func_'setpgrp`\" = yes"; then
- echo "$ac_t""yes" 1>&6
- cat > conftest.$ac_ext <<EOF
--#line 2818 "configure"
-+#line 2831 "configure"
- #include "confdefs.h"
- #include <unistd.h>
- int main() {
- setpgrp(0,0);
- ; return 0; }
- EOF
--if { (eval echo configure:2825: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:2838: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- cat >> confdefs.h <<\EOF
- #define SETPGRP_HAVE_ARG 1
-@@ -2837,12 +2850,12 @@
- fi
-
- echo $ac_n "checking for gettimeofday""... $ac_c" 1>&6
--echo "configure:2841: checking for gettimeofday" >&5
-+echo "configure:2854: checking for gettimeofday" >&5
- if eval "test \"`echo '$''{'ac_cv_func_gettimeofday'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2846 "configure"
-+#line 2859 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char gettimeofday(); below. */
-@@ -2865,7 +2878,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:2869: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:2882: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_gettimeofday=yes"
- else
-@@ -2880,14 +2893,14 @@
- if eval "test \"`echo '$ac_cv_func_'gettimeofday`\" = yes"; then
- echo "$ac_t""yes" 1>&6
- cat > conftest.$ac_ext <<EOF
--#line 2884 "configure"
-+#line 2897 "configure"
- #include "confdefs.h"
- #include <sys/time.h>
- int main() {
- gettimeofday((struct timeval*)0,(struct timezone*)0);
- ; return 0; }
- EOF
--if { (eval echo configure:2891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:2904: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- :
- else
- echo "configure: failed program was:" >&5
-@@ -2906,12 +2919,12 @@
-
- # checks for structures
- echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
--echo "configure:2910: checking whether time.h and sys/time.h may both be included" >&5
-+echo "configure:2923: checking whether time.h and sys/time.h may both be included" >&5
- if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2915 "configure"
-+#line 2928 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <sys/time.h>
-@@ -2920,7 +2933,7 @@
- struct tm *tp;
- ; return 0; }
- EOF
--if { (eval echo configure:2924: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:2937: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_header_time=yes
- else
-@@ -2941,12 +2954,12 @@
- fi
-
- echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
--echo "configure:2945: checking whether struct tm is in sys/time.h or time.h" >&5
-+echo "configure:2958: checking whether struct tm is in sys/time.h or time.h" >&5
- if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2950 "configure"
-+#line 2963 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <time.h>
-@@ -2954,7 +2967,7 @@
- struct tm *tp; tp->tm_sec;
- ; return 0; }
- EOF
--if { (eval echo configure:2958: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:2971: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_struct_tm=time.h
- else
-@@ -2975,12 +2988,12 @@
- fi
-
- echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6
--echo "configure:2979: checking for tm_zone in struct tm" >&5
-+echo "configure:2992: checking for tm_zone in struct tm" >&5
- if eval "test \"`echo '$''{'ac_cv_struct_tm_zone'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 2984 "configure"
-+#line 2997 "configure"
- #include "confdefs.h"
- #include <sys/types.h>
- #include <$ac_cv_struct_tm>
-@@ -2988,7 +3001,7 @@
- struct tm tm; tm.tm_zone;
- ; return 0; }
- EOF
--if { (eval echo configure:2992: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3005: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_struct_tm_zone=yes
- else
-@@ -3008,12 +3021,12 @@
-
- else
- echo $ac_n "checking for tzname""... $ac_c" 1>&6
--echo "configure:3012: checking for tzname" >&5
-+echo "configure:3025: checking for tzname" >&5
- if eval "test \"`echo '$''{'ac_cv_var_tzname'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 3017 "configure"
-+#line 3030 "configure"
- #include "confdefs.h"
- #include <time.h>
- #ifndef tzname /* For SGI. */
-@@ -3023,7 +3036,7 @@
- atoi(*tzname);
- ; return 0; }
- EOF
--if { (eval echo configure:3027: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:3040: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- ac_cv_var_tzname=yes
- else
-@@ -3046,19 +3059,19 @@
-
-
- echo $ac_n "checking for time.h that defines altzone""... $ac_c" 1>&6
--echo "configure:3050: checking for time.h that defines altzone" >&5
-+echo "configure:3063: checking for time.h that defines altzone" >&5
- if eval "test \"`echo '$''{'ac_cv_header_time_altzone'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 3055 "configure"
-+#line 3068 "configure"
- #include "confdefs.h"
- #include <time.h>
- int main() {
- return altzone;
- ; return 0; }
- EOF
--if { (eval echo configure:3062: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3075: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_header_time_altzone=yes
- else
-@@ -3080,9 +3093,9 @@
-
- was_it_defined=no
- echo $ac_n "checking whether sys/select.h and sys/time.h may both be included""... $ac_c" 1>&6
--echo "configure:3084: checking whether sys/select.h and sys/time.h may both be included" >&5
-+echo "configure:3097: checking whether sys/select.h and sys/time.h may both be included" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3086 "configure"
-+#line 3099 "configure"
- #include "confdefs.h"
-
- #include <sys/types.h>
-@@ -3093,7 +3106,7 @@
- ;
- ; return 0; }
- EOF
--if { (eval echo configure:3097: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- cat >> confdefs.h <<\EOF
- #define SYS_SELECT_WITH_SYS_TIME 1
-@@ -3109,14 +3122,14 @@
- # checks for compiler characteristics
-
- echo $ac_n "checking whether char is unsigned""... $ac_c" 1>&6
--echo "configure:3113: checking whether char is unsigned" >&5
-+echo "configure:3126: checking whether char is unsigned" >&5
- if eval "test \"`echo '$''{'ac_cv_c_char_unsigned'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- if test "$GCC" = yes; then
- # GCC predefines this symbol on systems where it applies.
- cat > conftest.$ac_ext <<EOF
--#line 3120 "configure"
-+#line 3133 "configure"
- #include "confdefs.h"
- #ifdef __CHAR_UNSIGNED__
- yes
-@@ -3138,7 +3151,7 @@
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
- else
- cat > conftest.$ac_ext <<EOF
--#line 3142 "configure"
-+#line 3155 "configure"
- #include "confdefs.h"
- /* volatile prevents gcc2 from optimizing the test away on sparcs. */
- #if !defined(__STDC__) || __STDC__ != 1
-@@ -3148,7 +3161,7 @@
- volatile char c = 255; exit(c < 0);
- }
- EOF
--if { (eval echo configure:3152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:3165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
- then
- ac_cv_c_char_unsigned=yes
- else
-@@ -3173,12 +3186,12 @@
-
-
- echo $ac_n "checking for working const""... $ac_c" 1>&6
--echo "configure:3177: checking for working const" >&5
-+echo "configure:3190: checking for working const" >&5
- if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 3182 "configure"
-+#line 3195 "configure"
- #include "confdefs.h"
-
- int main() {
-@@ -3227,7 +3240,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:3231: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3244: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- ac_cv_c_const=yes
- else
-@@ -3250,16 +3263,16 @@
-
- works=no
- echo $ac_n "checking for working volatile""... $ac_c" 1>&6
--echo "configure:3254: checking for working volatile" >&5
-+echo "configure:3267: checking for working volatile" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3256 "configure"
-+#line 3269 "configure"
- #include "confdefs.h"
-
- int main() {
- volatile int x; x = 0;
- ; return 0; }
- EOF
--if { (eval echo configure:3263: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3276: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- works=yes
- else
-@@ -3276,16 +3289,16 @@
-
- works=no
- echo $ac_n "checking for working signed char""... $ac_c" 1>&6
--echo "configure:3280: checking for working signed char" >&5
-+echo "configure:3293: checking for working signed char" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3282 "configure"
-+#line 3295 "configure"
- #include "confdefs.h"
-
- int main() {
- signed char c;
- ; return 0; }
- EOF
--if { (eval echo configure:3289: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3302: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- works=yes
- else
-@@ -3302,16 +3315,16 @@
-
- have_prototypes=no
- echo $ac_n "checking for prototypes""... $ac_c" 1>&6
--echo "configure:3306: checking for prototypes" >&5
-+echo "configure:3319: checking for prototypes" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3308 "configure"
-+#line 3321 "configure"
- #include "confdefs.h"
- int foo(int x) { return 0; }
- int main() {
- return foo(10);
- ; return 0; }
- EOF
--if { (eval echo configure:3315: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3328: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- cat >> confdefs.h <<\EOF
- #define HAVE_PROTOTYPES 1
-@@ -3326,9 +3339,9 @@
-
- works=no
- echo $ac_n "checking for variable length prototypes and stdarg.h""... $ac_c" 1>&6
--echo "configure:3330: checking for variable length prototypes and stdarg.h" >&5
-+echo "configure:3343: checking for variable length prototypes and stdarg.h" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3332 "configure"
-+#line 3345 "configure"
- #include "confdefs.h"
-
- #include <stdarg.h>
-@@ -3345,7 +3358,7 @@
- return foo(10, "", 3.14);
- ; return 0; }
- EOF
--if { (eval echo configure:3349: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3362: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
- cat >> confdefs.h <<\EOF
- #define HAVE_STDARG_PROTOTYPES 1
-@@ -3361,16 +3374,16 @@
- if test "$have_prototypes" = yes; then
- bad_prototypes=no
- echo $ac_n "checking for bad exec* prototypes""... $ac_c" 1>&6
--echo "configure:3365: checking for bad exec* prototypes" >&5
-+echo "configure:3378: checking for bad exec* prototypes" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3367 "configure"
-+#line 3380 "configure"
- #include "confdefs.h"
- #include <unistd.h>
- int main() {
- char **t;execve("@",t,t);
- ; return 0; }
- EOF
--if { (eval echo configure:3374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3387: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- :
- else
- echo "configure: failed program was:" >&5
-@@ -3387,12 +3400,12 @@
-
- bad_forward=no
- echo $ac_n "checking for bad static forward""... $ac_c" 1>&6
--echo "configure:3391: checking for bad static forward" >&5
-+echo "configure:3404: checking for bad static forward" >&5
- if test "$cross_compiling" = yes; then
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
- else
- cat > conftest.$ac_ext <<EOF
--#line 3396 "configure"
-+#line 3409 "configure"
- #include "confdefs.h"
-
- struct s { int a; int b; };
-@@ -3408,7 +3421,7 @@
- }
-
- EOF
--if { (eval echo configure:3412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:3425: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
- then
- :
- else
-@@ -3427,9 +3440,9 @@
-
- va_list_is_array=no
- echo $ac_n "checking whether va_list is an array""... $ac_c" 1>&6
--echo "configure:3431: checking whether va_list is an array" >&5
-+echo "configure:3444: checking whether va_list is an array" >&5
- cat > conftest.$ac_ext <<EOF
--#line 3433 "configure"
-+#line 3446 "configure"
- #include "confdefs.h"
-
- #ifdef HAVE_STDARG_PROTOTYPES
-@@ -3442,7 +3455,7 @@
- va_list list1, list2; list1 = list2;
- ; return 0; }
- EOF
--if { (eval echo configure:3446: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
-+if { (eval echo configure:3459: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- :
- else
- echo "configure: failed program was:" >&5
-@@ -3461,7 +3474,7 @@
-
- # Linux requires this for correct f.p. operations
- echo $ac_n "checking for __fpu_control in -lieee""... $ac_c" 1>&6
--echo "configure:3465: checking for __fpu_control in -lieee" >&5
-+echo "configure:3478: checking for __fpu_control in -lieee" >&5
- ac_lib_var=`echo ieee'_'__fpu_control | sed 'y%./+-%__p_%'`
- if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-@@ -3469,7 +3482,7 @@
- ac_save_LIBS="$LIBS"
- LIBS="-lieee $LIBS"
- cat > conftest.$ac_ext <<EOF
--#line 3473 "configure"
-+#line 3486 "configure"
- #include "confdefs.h"
- /* Override any gcc2 internal prototype to avoid an error. */
- /* We use char because int might match the return type of a gcc2
-@@ -3480,7 +3493,7 @@
- __fpu_control()
- ; return 0; }
- EOF
--if { (eval echo configure:3484: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:3497: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_lib_$ac_lib_var=yes"
- else
-@@ -3510,7 +3523,7 @@
-
- # Check for --with-fpectl
- echo $ac_n "checking for --with-fpectl""... $ac_c" 1>&6
--echo "configure:3514: checking for --with-fpectl" >&5
-+echo "configure:3527: checking for --with-fpectl" >&5
- # Check whether --with-fpectl or --without-fpectl was given.
- if test "${with_fpectl+set}" = set; then
- withval="$with_fpectl"
-@@ -3532,7 +3545,7 @@
- *) LIBM=-lm
- esac
- echo $ac_n "checking for --with-libm=STRING""... $ac_c" 1>&6
--echo "configure:3536: checking for --with-libm=STRING" >&5
-+echo "configure:3549: checking for --with-libm=STRING" >&5
- # Check whether --with-libm or --without-libm was given.
- if test "${with_libm+set}" = set; then
- withval="$with_libm"
-@@ -3553,7 +3566,7 @@
- # check for --with-libc=...
-
- echo $ac_n "checking for --with-libc=STRING""... $ac_c" 1>&6
--echo "configure:3557: checking for --with-libc=STRING" >&5
-+echo "configure:3570: checking for --with-libc=STRING" >&5
- # Check whether --with-libc or --without-libc was given.
- if test "${with_libc+set}" = set; then
- withval="$with_libc"
-@@ -3577,12 +3590,12 @@
- for ac_func in hypot
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--echo "configure:3581: checking for $ac_func" >&5
-+echo "configure:3594: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 3586 "configure"
-+#line 3599 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
-@@ -3605,7 +3618,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:3609: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:3622: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
-@@ -3632,12 +3645,12 @@
- for ac_func in hypot
- do
- echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
--echo "configure:3636: checking for $ac_func" >&5
-+echo "configure:3649: checking for $ac_func" >&5
- if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
- cat > conftest.$ac_ext <<EOF
--#line 3641 "configure"
-+#line 3654 "configure"
- #include "confdefs.h"
- /* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $ac_func(); below. */
-@@ -3660,7 +3673,7 @@
-
- ; return 0; }
- EOF
--if { (eval echo configure:3664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
-+if { (eval echo configure:3677: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
- rm -rf conftest*
- eval "ac_cv_func_$ac_func=yes"
- else
-@@ -3690,7 +3703,7 @@
-
- # check for getopt
- echo $ac_n "checking for genuine getopt""... $ac_c" 1>&6
--echo "configure:3694: checking for genuine getopt" >&5
-+echo "configure:3707: checking for genuine getopt" >&5
- if eval "test \"`echo '$''{'ac_cv_func_getopt'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
-@@ -3698,7 +3711,7 @@
- ac_cv_func_getopt=no
- else
- cat > conftest.$ac_ext <<EOF
--#line 3702 "configure"
-+#line 3715 "configure"
- #include "confdefs.h"
- #include <stdio.h>
- extern int optind, opterr, getopt();
-@@ -3710,7 +3723,7 @@
- exit(0);
- }
- EOF
--if { (eval echo configure:3714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:3727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
- then
- ac_cv_func_getopt=yes
- else
-@@ -3728,7 +3741,7 @@
-
- # check whether malloc(0) returns NULL or not
- echo $ac_n "checking what malloc(0) returns""... $ac_c" 1>&6
--echo "configure:3732: checking what malloc(0) returns" >&5
-+echo "configure:3745: checking what malloc(0) returns" >&5
- if eval "test \"`echo '$''{'ac_cv_malloc_zero'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
- else
-@@ -3736,7 +3749,7 @@
- { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
- else
- cat > conftest.$ac_ext <<EOF
--#line 3740 "configure"
-+#line 3753 "configure"
- #include "confdefs.h"
- #include <stdio.h>
- #ifdef HAVE_STDLIB
-@@ -3755,7 +3768,7 @@
- exit(0);
- }
- EOF
--if { (eval echo configure:3759: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
-+if { (eval echo configure:3772: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
- then
- ac_cv_malloc_zero=nonnull
- else
diff --git a/lang/python/patches/patch-bb b/lang/python/patches/patch-bb
deleted file mode 100644
index d41c35edf75..00000000000
--- a/lang/python/patches/patch-bb
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-bb,v 1.1 1998/12/16 22:44:07 tsarna Exp $
-
-NetBSD ELF platform support
-
---- Python/importdl.c.orig Wed Dec 16 15:09:49 1998
-+++ Python/importdl.c Wed Dec 16 15:11:20 1998
-@@ -211,7 +211,7 @@
- extern char *Py_GetProgramName();
-
- #ifndef FUNCNAME_PATTERN
--#if defined(__hp9000s300) || defined(__NetBSD__) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__BORLANDC__)
-+#if defined(__hp9000s300) || (defined(__NetBSD__) && !defined(__ELF__)) || defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__BORLANDC__)
- #define FUNCNAME_PATTERN "_init%.200s"
- #else
- #define FUNCNAME_PATTERN "init%.200s"
diff --git a/lang/python/pkg/PLIST-md.shared b/lang/python/pkg/PLIST-md.shared
deleted file mode 100644
index 4c0830180c7..00000000000
--- a/lang/python/pkg/PLIST-md.shared
+++ /dev/null
@@ -1,35 +0,0 @@
-@comment $NetBSD: PLIST-md.shared,v 1.1 1998/02/01 01:48:54 tron Exp $
-lib/python1.5/lib-dynload/arraymodule.so
-lib/python1.5/lib-dynload/audioop.so
-lib/python1.5/lib-dynload/binascii.so
-lib/python1.5/lib-dynload/bsddbmodule.so
-lib/python1.5/lib-dynload/cPickle.so
-lib/python1.5/lib-dynload/cStringIO.so
-lib/python1.5/lib-dynload/cmathmodule.so
-lib/python1.5/lib-dynload/cryptmodule.so
-lib/python1.5/lib-dynload/dbmmodule.so
-lib/python1.5/lib-dynload/errnomodule.so
-lib/python1.5/lib-dynload/fcntlmodule.so
-lib/python1.5/lib-dynload/grpmodule.so
-lib/python1.5/lib-dynload/imageop.so
-lib/python1.5/lib-dynload/mathmodule.so
-lib/python1.5/lib-dynload/md5module.so
-lib/python1.5/lib-dynload/newmodule.so
-lib/python1.5/lib-dynload/nismodule.so
-lib/python1.5/lib-dynload/operator.so
-lib/python1.5/lib-dynload/parsermodule.so
-lib/python1.5/lib-dynload/pwdmodule.so
-lib/python1.5/lib-dynload/resource.so
-lib/python1.5/lib-dynload/rgbimgmodule.so
-lib/python1.5/lib-dynload/rotormodule.so
-lib/python1.5/lib-dynload/selectmodule.so
-lib/python1.5/lib-dynload/socketmodule.so
-lib/python1.5/lib-dynload/soundex.so
-lib/python1.5/lib-dynload/stropmodule.so
-lib/python1.5/lib-dynload/structmodule.so
-lib/python1.5/lib-dynload/syslogmodule.so
-lib/python1.5/lib-dynload/termios.so
-lib/python1.5/lib-dynload/timemodule.so
-lib/python1.5/lib-dynload/timingmodule.so
-lib/python1.5/lib-dynload/zlibmodule.so
-@unexec rm -rf %D/lib/python1.5
diff --git a/lang/python/pkg/PLIST-md.static b/lang/python/pkg/PLIST-md.static
deleted file mode 100644
index a9bbf6d15be..00000000000
--- a/lang/python/pkg/PLIST-md.static
+++ /dev/null
@@ -1,2 +0,0 @@
-@comment $NetBSD: PLIST-md.static,v 1.1 1998/02/01 01:48:54 tron Exp $
-@unexec rm -rf %D/lib/python1.5
diff --git a/lang/python/pkg/PLIST-mi b/lang/python/pkg/PLIST-mi
deleted file mode 100644
index dbdff6dfaa3..00000000000
--- a/lang/python/pkg/PLIST-mi
+++ /dev/null
@@ -1,874 +0,0 @@
-@comment $NetBSD: PLIST-mi,v 1.2 1998/05/04 19:29:23 tron Exp $
-bin/python
-bin/python1.5
-include/python1.5/Python.h
-include/python1.5/abstract.h
-include/python1.5/bitset.h
-include/python1.5/cStringIO.h
-include/python1.5/ceval.h
-include/python1.5/classobject.h
-include/python1.5/cobject.h
-include/python1.5/compile.h
-include/python1.5/complexobject.h
-include/python1.5/config.h
-include/python1.5/dictobject.h
-include/python1.5/errcode.h
-include/python1.5/eval.h
-include/python1.5/fileobject.h
-include/python1.5/floatobject.h
-include/python1.5/frameobject.h
-include/python1.5/funcobject.h
-include/python1.5/graminit.h
-include/python1.5/grammar.h
-include/python1.5/import.h
-include/python1.5/intobject.h
-include/python1.5/intrcheck.h
-include/python1.5/listobject.h
-include/python1.5/longintrepr.h
-include/python1.5/longobject.h
-include/python1.5/marshal.h
-include/python1.5/metagrammar.h
-include/python1.5/methodobject.h
-include/python1.5/modsupport.h
-include/python1.5/moduleobject.h
-include/python1.5/mymalloc.h
-include/python1.5/mymath.h
-include/python1.5/myproto.h
-include/python1.5/myselect.h
-include/python1.5/mytime.h
-include/python1.5/node.h
-include/python1.5/object.h
-include/python1.5/objimpl.h
-include/python1.5/opcode.h
-include/python1.5/osdefs.h
-include/python1.5/parsetok.h
-include/python1.5/patchlevel.h
-include/python1.5/pgenheaders.h
-include/python1.5/pydebug.h
-include/python1.5/pyerrors.h
-include/python1.5/pyfpe.h
-include/python1.5/pystate.h
-include/python1.5/pythonrun.h
-include/python1.5/rangeobject.h
-include/python1.5/rename2.h
-include/python1.5/sliceobject.h
-include/python1.5/stringobject.h
-include/python1.5/structmember.h
-include/python1.5/sysmodule.h
-include/python1.5/thread.h
-include/python1.5/token.h
-include/python1.5/traceback.h
-include/python1.5/tupleobject.h
-@dirrm include/python1.5
-lib/python1.5/BaseHTTPServer.py
-lib/python1.5/BaseHTTPServer.pyc
-lib/python1.5/BaseHTTPServer.pyo
-lib/python1.5/Bastion.py
-lib/python1.5/Bastion.pyc
-lib/python1.5/Bastion.pyo
-lib/python1.5/CGIHTTPServer.py
-lib/python1.5/CGIHTTPServer.pyc
-lib/python1.5/CGIHTTPServer.pyo
-lib/python1.5/ConfigParser.py
-lib/python1.5/ConfigParser.pyc
-lib/python1.5/ConfigParser.pyo
-lib/python1.5/MimeWriter.py
-lib/python1.5/MimeWriter.pyc
-lib/python1.5/MimeWriter.pyo
-lib/python1.5/Queue.py
-lib/python1.5/Queue.pyc
-lib/python1.5/Queue.pyo
-lib/python1.5/SimpleHTTPServer.py
-lib/python1.5/SimpleHTTPServer.pyc
-lib/python1.5/SimpleHTTPServer.pyo
-lib/python1.5/SocketServer.py
-lib/python1.5/SocketServer.pyc
-lib/python1.5/SocketServer.pyo
-lib/python1.5/StringIO.py
-lib/python1.5/StringIO.pyc
-lib/python1.5/StringIO.pyo
-lib/python1.5/UserDict.py
-lib/python1.5/UserDict.pyc
-lib/python1.5/UserDict.pyo
-lib/python1.5/UserList.py
-lib/python1.5/UserList.pyc
-lib/python1.5/UserList.pyo
-lib/python1.5/aifc.py
-lib/python1.5/aifc.pyc
-lib/python1.5/aifc.pyo
-lib/python1.5/anydbm.py
-lib/python1.5/anydbm.pyc
-lib/python1.5/anydbm.pyo
-lib/python1.5/audiodev.py
-lib/python1.5/audiodev.pyc
-lib/python1.5/audiodev.pyo
-lib/python1.5/base64.py
-lib/python1.5/base64.pyc
-lib/python1.5/base64.pyo
-lib/python1.5/bdb.py
-lib/python1.5/bdb.pyc
-lib/python1.5/bdb.pyo
-lib/python1.5/binhex.py
-lib/python1.5/binhex.pyc
-lib/python1.5/binhex.pyo
-lib/python1.5/bisect.py
-lib/python1.5/bisect.pyc
-lib/python1.5/bisect.pyo
-lib/python1.5/calendar.py
-lib/python1.5/calendar.pyc
-lib/python1.5/calendar.pyo
-lib/python1.5/cgi.py
-lib/python1.5/cgi.pyc
-lib/python1.5/cgi.pyo
-lib/python1.5/cmd.py
-lib/python1.5/cmd.pyc
-lib/python1.5/cmd.pyo
-lib/python1.5/cmp.py
-lib/python1.5/cmp.pyc
-lib/python1.5/cmp.pyo
-lib/python1.5/cmpcache.py
-lib/python1.5/cmpcache.pyc
-lib/python1.5/cmpcache.pyo
-lib/python1.5/code.py
-lib/python1.5/code.pyc
-lib/python1.5/code.pyo
-lib/python1.5/colorsys.py
-lib/python1.5/colorsys.pyc
-lib/python1.5/colorsys.pyo
-lib/python1.5/commands.py
-lib/python1.5/commands.pyc
-lib/python1.5/commands.pyo
-lib/python1.5/compileall.py
-lib/python1.5/compileall.pyc
-lib/python1.5/compileall.pyo
-lib/python1.5/config/Makefile
-lib/python1.5/config/Makefile.pre.in
-lib/python1.5/config/Setup
-lib/python1.5/config/Setup.local
-lib/python1.5/config/Setup.thread
-lib/python1.5/config/config.c
-lib/python1.5/config/config.c.in
-lib/python1.5/config/install-sh
-lib/python1.5/config/libpython1.5.a
-lib/python1.5/config/makesetup
-lib/python1.5/config/python.o
-@comment dirrm lib/python1.5/config
-lib/python1.5/copy.py
-lib/python1.5/copy.pyc
-lib/python1.5/copy.pyo
-lib/python1.5/copy_reg.py
-lib/python1.5/copy_reg.pyc
-lib/python1.5/copy_reg.pyo
-lib/python1.5/dbhash.py
-lib/python1.5/dbhash.pyc
-lib/python1.5/dbhash.pyo
-lib/python1.5/dircache.py
-lib/python1.5/dircache.pyc
-lib/python1.5/dircache.pyo
-lib/python1.5/dircmp.py
-lib/python1.5/dircmp.pyc
-lib/python1.5/dircmp.pyo
-lib/python1.5/dis.py
-lib/python1.5/dis.pyc
-lib/python1.5/dis.pyo
-lib/python1.5/dospath.py
-lib/python1.5/dospath.pyc
-lib/python1.5/dospath.pyo
-lib/python1.5/dumbdbm.py
-lib/python1.5/dumbdbm.pyc
-lib/python1.5/dumbdbm.pyo
-lib/python1.5/dump.py
-lib/python1.5/dump.pyc
-lib/python1.5/dump.pyo
-lib/python1.5/exceptions.py
-lib/python1.5/exceptions.pyc
-lib/python1.5/exceptions.pyo
-lib/python1.5/fileinput.py
-lib/python1.5/fileinput.pyc
-lib/python1.5/fileinput.pyo
-lib/python1.5/find.py
-lib/python1.5/find.pyc
-lib/python1.5/find.pyo
-lib/python1.5/fnmatch.py
-lib/python1.5/fnmatch.pyc
-lib/python1.5/fnmatch.pyo
-lib/python1.5/formatter.py
-lib/python1.5/formatter.pyc
-lib/python1.5/formatter.pyo
-lib/python1.5/fpformat.py
-lib/python1.5/fpformat.pyc
-lib/python1.5/fpformat.pyo
-lib/python1.5/ftplib.py
-lib/python1.5/ftplib.pyc
-lib/python1.5/ftplib.pyo
-lib/python1.5/getopt.py
-lib/python1.5/getopt.pyc
-lib/python1.5/getopt.pyo
-lib/python1.5/getpass.py
-lib/python1.5/getpass.pyc
-lib/python1.5/getpass.pyo
-lib/python1.5/glob.py
-lib/python1.5/glob.pyc
-lib/python1.5/glob.pyo
-lib/python1.5/gopherlib.py
-lib/python1.5/gopherlib.pyc
-lib/python1.5/gopherlib.pyo
-lib/python1.5/grep.py
-lib/python1.5/grep.pyc
-lib/python1.5/grep.pyo
-lib/python1.5/gzip.py
-lib/python1.5/gzip.pyc
-lib/python1.5/gzip.pyo
-lib/python1.5/htmlentitydefs.py
-lib/python1.5/htmlentitydefs.pyc
-lib/python1.5/htmlentitydefs.pyo
-lib/python1.5/htmllib.py
-lib/python1.5/htmllib.pyc
-lib/python1.5/htmllib.pyo
-lib/python1.5/httplib.py
-lib/python1.5/httplib.pyc
-lib/python1.5/httplib.pyo
-lib/python1.5/ihooks.py
-lib/python1.5/ihooks.pyc
-lib/python1.5/ihooks.pyo
-lib/python1.5/imaplib.py
-lib/python1.5/imaplib.pyc
-lib/python1.5/imaplib.pyo
-lib/python1.5/imghdr.py
-lib/python1.5/imghdr.pyc
-lib/python1.5/imghdr.pyo
-lib/python1.5/keyword.py
-lib/python1.5/keyword.pyc
-lib/python1.5/keyword.pyo
-lib/python1.5/knee.py
-lib/python1.5/knee.pyc
-lib/python1.5/knee.pyo
-lib/python1.5/lib-stdwin/Abstract.py
-lib/python1.5/lib-stdwin/Abstract.pyc
-lib/python1.5/lib-stdwin/Abstract.pyo
-lib/python1.5/lib-stdwin/BoxParent.py
-lib/python1.5/lib-stdwin/BoxParent.pyc
-lib/python1.5/lib-stdwin/BoxParent.pyo
-lib/python1.5/lib-stdwin/Buttons.py
-lib/python1.5/lib-stdwin/Buttons.pyc
-lib/python1.5/lib-stdwin/Buttons.pyo
-lib/python1.5/lib-stdwin/CSplit.py
-lib/python1.5/lib-stdwin/CSplit.pyc
-lib/python1.5/lib-stdwin/CSplit.pyo
-lib/python1.5/lib-stdwin/DirList.py
-lib/python1.5/lib-stdwin/DirList.pyc
-lib/python1.5/lib-stdwin/DirList.pyo
-lib/python1.5/lib-stdwin/FormSplit.py
-lib/python1.5/lib-stdwin/FormSplit.pyc
-lib/python1.5/lib-stdwin/FormSplit.pyo
-lib/python1.5/lib-stdwin/HVSplit.py
-lib/python1.5/lib-stdwin/HVSplit.pyc
-lib/python1.5/lib-stdwin/HVSplit.pyo
-lib/python1.5/lib-stdwin/Histogram.py
-lib/python1.5/lib-stdwin/Histogram.pyc
-lib/python1.5/lib-stdwin/Histogram.pyo
-lib/python1.5/lib-stdwin/Sliders.py
-lib/python1.5/lib-stdwin/Sliders.pyc
-lib/python1.5/lib-stdwin/Sliders.pyo
-lib/python1.5/lib-stdwin/Soundogram.py
-lib/python1.5/lib-stdwin/Soundogram.pyc
-lib/python1.5/lib-stdwin/Soundogram.pyo
-lib/python1.5/lib-stdwin/Split.py
-lib/python1.5/lib-stdwin/Split.pyc
-lib/python1.5/lib-stdwin/Split.pyo
-lib/python1.5/lib-stdwin/StripChart.py
-lib/python1.5/lib-stdwin/StripChart.pyc
-lib/python1.5/lib-stdwin/StripChart.pyo
-lib/python1.5/lib-stdwin/TextEdit.py
-lib/python1.5/lib-stdwin/TextEdit.pyc
-lib/python1.5/lib-stdwin/TextEdit.pyo
-lib/python1.5/lib-stdwin/TransParent.py
-lib/python1.5/lib-stdwin/TransParent.pyc
-lib/python1.5/lib-stdwin/TransParent.pyo
-lib/python1.5/lib-stdwin/VUMeter.py
-lib/python1.5/lib-stdwin/VUMeter.pyc
-lib/python1.5/lib-stdwin/VUMeter.pyo
-lib/python1.5/lib-stdwin/WindowParent.py
-lib/python1.5/lib-stdwin/WindowParent.pyc
-lib/python1.5/lib-stdwin/WindowParent.pyo
-lib/python1.5/lib-stdwin/WindowSched.py
-lib/python1.5/lib-stdwin/WindowSched.pyc
-lib/python1.5/lib-stdwin/WindowSched.pyo
-lib/python1.5/lib-stdwin/anywin.py
-lib/python1.5/lib-stdwin/anywin.pyc
-lib/python1.5/lib-stdwin/anywin.pyo
-lib/python1.5/lib-stdwin/basewin.py
-lib/python1.5/lib-stdwin/basewin.pyc
-lib/python1.5/lib-stdwin/basewin.pyo
-lib/python1.5/lib-stdwin/dirwin.py
-lib/python1.5/lib-stdwin/dirwin.pyc
-lib/python1.5/lib-stdwin/dirwin.pyo
-lib/python1.5/lib-stdwin/filewin.py
-lib/python1.5/lib-stdwin/filewin.pyc
-lib/python1.5/lib-stdwin/filewin.pyo
-lib/python1.5/lib-stdwin/formatter.py
-lib/python1.5/lib-stdwin/formatter.pyc
-lib/python1.5/lib-stdwin/formatter.pyo
-lib/python1.5/lib-stdwin/gwin.py
-lib/python1.5/lib-stdwin/gwin.pyc
-lib/python1.5/lib-stdwin/gwin.pyo
-lib/python1.5/lib-stdwin/listwin.py
-lib/python1.5/lib-stdwin/listwin.pyc
-lib/python1.5/lib-stdwin/listwin.pyo
-lib/python1.5/lib-stdwin/mainloop.py
-lib/python1.5/lib-stdwin/mainloop.pyc
-lib/python1.5/lib-stdwin/mainloop.pyo
-lib/python1.5/lib-stdwin/rect.py
-lib/python1.5/lib-stdwin/rect.pyc
-lib/python1.5/lib-stdwin/rect.pyo
-lib/python1.5/lib-stdwin/srcwin.py
-lib/python1.5/lib-stdwin/srcwin.pyc
-lib/python1.5/lib-stdwin/srcwin.pyo
-lib/python1.5/lib-stdwin/stdwinevents.py
-lib/python1.5/lib-stdwin/stdwinevents.pyc
-lib/python1.5/lib-stdwin/stdwinevents.pyo
-lib/python1.5/lib-stdwin/stdwinq.py
-lib/python1.5/lib-stdwin/stdwinq.pyc
-lib/python1.5/lib-stdwin/stdwinq.pyo
-lib/python1.5/lib-stdwin/tablewin.py
-lib/python1.5/lib-stdwin/tablewin.pyc
-lib/python1.5/lib-stdwin/tablewin.pyo
-lib/python1.5/lib-stdwin/textwin.py
-lib/python1.5/lib-stdwin/textwin.pyc
-lib/python1.5/lib-stdwin/textwin.pyo
-lib/python1.5/lib-stdwin/wdb.py
-lib/python1.5/lib-stdwin/wdb.pyc
-lib/python1.5/lib-stdwin/wdb.pyo
-lib/python1.5/lib-stdwin/wdbframewin.py
-lib/python1.5/lib-stdwin/wdbframewin.pyc
-lib/python1.5/lib-stdwin/wdbframewin.pyo
-lib/python1.5/lib-stdwin/wdbsrcwin.py
-lib/python1.5/lib-stdwin/wdbsrcwin.pyc
-lib/python1.5/lib-stdwin/wdbsrcwin.pyo
-@comment dirrm lib/python1.5/lib-stdwin
-lib/python1.5/lib-tk/Canvas.py
-lib/python1.5/lib-tk/Canvas.pyc
-lib/python1.5/lib-tk/Canvas.pyo
-lib/python1.5/lib-tk/Dialog.py
-lib/python1.5/lib-tk/Dialog.pyc
-lib/python1.5/lib-tk/Dialog.pyo
-lib/python1.5/lib-tk/FileDialog.py
-lib/python1.5/lib-tk/FileDialog.pyc
-lib/python1.5/lib-tk/FileDialog.pyo
-lib/python1.5/lib-tk/ScrolledText.py
-lib/python1.5/lib-tk/ScrolledText.pyc
-lib/python1.5/lib-tk/ScrolledText.pyo
-lib/python1.5/lib-tk/SimpleDialog.py
-lib/python1.5/lib-tk/SimpleDialog.pyc
-lib/python1.5/lib-tk/SimpleDialog.pyo
-lib/python1.5/lib-tk/Tkconstants.py
-lib/python1.5/lib-tk/Tkconstants.pyc
-lib/python1.5/lib-tk/Tkconstants.pyo
-lib/python1.5/lib-tk/Tkdnd.py
-lib/python1.5/lib-tk/Tkdnd.pyc
-lib/python1.5/lib-tk/Tkdnd.pyo
-lib/python1.5/lib-tk/Tkinter.py
-lib/python1.5/lib-tk/Tkinter.pyc
-lib/python1.5/lib-tk/Tkinter.pyo
-lib/python1.5/lib-tk/tkColorChooser.py
-lib/python1.5/lib-tk/tkColorChooser.pyc
-lib/python1.5/lib-tk/tkColorChooser.pyo
-lib/python1.5/lib-tk/tkCommonDialog.py
-lib/python1.5/lib-tk/tkCommonDialog.pyc
-lib/python1.5/lib-tk/tkCommonDialog.pyo
-lib/python1.5/lib-tk/tkFileDialog.py
-lib/python1.5/lib-tk/tkFileDialog.pyc
-lib/python1.5/lib-tk/tkFileDialog.pyo
-lib/python1.5/lib-tk/tkMessageBox.py
-lib/python1.5/lib-tk/tkMessageBox.pyc
-lib/python1.5/lib-tk/tkMessageBox.pyo
-lib/python1.5/lib-tk/tkSimpleDialog.py
-lib/python1.5/lib-tk/tkSimpleDialog.pyc
-lib/python1.5/lib-tk/tkSimpleDialog.pyo
-@comment dirrm lib/python1.5/lib-tk
-lib/python1.5/linecache.py
-lib/python1.5/linecache.pyc
-lib/python1.5/linecache.pyo
-lib/python1.5/locale.py
-lib/python1.5/locale.pyc
-lib/python1.5/locale.pyo
-lib/python1.5/macpath.py
-lib/python1.5/macpath.pyc
-lib/python1.5/macpath.pyo
-lib/python1.5/macurl2path.py
-lib/python1.5/macurl2path.pyc
-lib/python1.5/macurl2path.pyo
-lib/python1.5/mailbox.py
-lib/python1.5/mailbox.pyc
-lib/python1.5/mailbox.pyo
-lib/python1.5/mailcap.py
-lib/python1.5/mailcap.pyc
-lib/python1.5/mailcap.pyo
-lib/python1.5/mhlib.py
-lib/python1.5/mhlib.pyc
-lib/python1.5/mhlib.pyo
-lib/python1.5/mimetools.py
-lib/python1.5/mimetools.pyc
-lib/python1.5/mimetools.pyo
-lib/python1.5/mimetypes.py
-lib/python1.5/mimetypes.pyc
-lib/python1.5/mimetypes.pyo
-lib/python1.5/mimify.py
-lib/python1.5/mimify.pyc
-lib/python1.5/mimify.pyo
-lib/python1.5/multifile.py
-lib/python1.5/multifile.pyc
-lib/python1.5/multifile.pyo
-lib/python1.5/mutex.py
-lib/python1.5/mutex.pyc
-lib/python1.5/mutex.pyo
-lib/python1.5/nntplib.py
-lib/python1.5/nntplib.pyc
-lib/python1.5/nntplib.pyo
-lib/python1.5/ntpath.py
-lib/python1.5/ntpath.pyc
-lib/python1.5/ntpath.pyo
-lib/python1.5/nturl2path.py
-lib/python1.5/nturl2path.pyc
-lib/python1.5/nturl2path.pyo
-lib/python1.5/os.py
-lib/python1.5/os.pyc
-lib/python1.5/os.pyo
-lib/python1.5/packmail.py
-lib/python1.5/packmail.pyc
-lib/python1.5/packmail.pyo
-lib/python1.5/pdb.doc
-lib/python1.5/pdb.py
-lib/python1.5/pdb.pyc
-lib/python1.5/pdb.pyo
-lib/python1.5/pickle.py
-lib/python1.5/pickle.pyc
-lib/python1.5/pickle.pyo
-lib/python1.5/pipes.py
-lib/python1.5/pipes.pyc
-lib/python1.5/pipes.pyo
-lib/python1.5/plat-netbsd1/FCNTL.py
-lib/python1.5/plat-netbsd1/FCNTL.pyc
-lib/python1.5/plat-netbsd1/FCNTL.pyo
-lib/python1.5/plat-netbsd1/IN.py
-lib/python1.5/plat-netbsd1/IN.pyc
-lib/python1.5/plat-netbsd1/IN.pyo
-lib/python1.5/plat-netbsd1/SOCKET.py
-lib/python1.5/plat-netbsd1/SOCKET.pyc
-lib/python1.5/plat-netbsd1/SOCKET.pyo
-lib/python1.5/plat-netbsd1/TERMIOS.py
-lib/python1.5/plat-netbsd1/TERMIOS.pyc
-lib/python1.5/plat-netbsd1/TERMIOS.pyo
-lib/python1.5/plat-netbsd1/regen
-@comment dirrm lib/python1.5/plat-netbsd1
-lib/python1.5/poly.py
-lib/python1.5/poly.pyc
-lib/python1.5/poly.pyo
-lib/python1.5/popen2.py
-lib/python1.5/popen2.pyc
-lib/python1.5/popen2.pyo
-lib/python1.5/poplib.py
-lib/python1.5/poplib.pyc
-lib/python1.5/poplib.pyo
-lib/python1.5/posixfile.py
-lib/python1.5/posixfile.pyc
-lib/python1.5/posixfile.pyo
-lib/python1.5/posixpath.py
-lib/python1.5/posixpath.pyc
-lib/python1.5/posixpath.pyo
-lib/python1.5/pprint.py
-lib/python1.5/pprint.pyc
-lib/python1.5/pprint.pyo
-lib/python1.5/profile.doc
-lib/python1.5/profile.py
-lib/python1.5/profile.pyc
-lib/python1.5/profile.pyo
-lib/python1.5/pstats.py
-lib/python1.5/pstats.pyc
-lib/python1.5/pstats.pyo
-lib/python1.5/pty.py
-lib/python1.5/pty.pyc
-lib/python1.5/pty.pyo
-lib/python1.5/py_compile.py
-lib/python1.5/py_compile.pyc
-lib/python1.5/py_compile.pyo
-lib/python1.5/pyclbr.py
-lib/python1.5/pyclbr.pyc
-lib/python1.5/pyclbr.pyo
-lib/python1.5/quopri.py
-lib/python1.5/quopri.pyc
-lib/python1.5/quopri.pyo
-lib/python1.5/random.py
-lib/python1.5/random.pyc
-lib/python1.5/random.pyo
-lib/python1.5/re.py
-lib/python1.5/re.pyc
-lib/python1.5/re.pyo
-lib/python1.5/reconvert.py
-lib/python1.5/reconvert.pyc
-lib/python1.5/reconvert.pyo
-lib/python1.5/regex_syntax.py
-lib/python1.5/regex_syntax.pyc
-lib/python1.5/regex_syntax.pyo
-lib/python1.5/regsub.py
-lib/python1.5/regsub.pyc
-lib/python1.5/regsub.pyo
-lib/python1.5/repr.py
-lib/python1.5/repr.pyc
-lib/python1.5/repr.pyo
-lib/python1.5/rexec.py
-lib/python1.5/rexec.pyc
-lib/python1.5/rexec.pyo
-lib/python1.5/rfc822.py
-lib/python1.5/rfc822.pyc
-lib/python1.5/rfc822.pyo
-lib/python1.5/rlcompleter.py
-lib/python1.5/rlcompleter.pyc
-lib/python1.5/rlcompleter.pyo
-lib/python1.5/sched.py
-lib/python1.5/sched.pyc
-lib/python1.5/sched.pyo
-lib/python1.5/sgmllib.py
-lib/python1.5/sgmllib.pyc
-lib/python1.5/sgmllib.pyo
-lib/python1.5/shelve.py
-lib/python1.5/shelve.pyc
-lib/python1.5/shelve.pyo
-lib/python1.5/shutil.py
-lib/python1.5/shutil.pyc
-lib/python1.5/shutil.pyo
-lib/python1.5/site.py
-lib/python1.5/site.pyc
-lib/python1.5/site.pyo
-lib/python1.5/smtplib.py
-lib/python1.5/smtplib.pyc
-lib/python1.5/smtplib.pyo
-lib/python1.5/sndhdr.py
-lib/python1.5/sndhdr.pyc
-lib/python1.5/sndhdr.pyo
-lib/python1.5/stat.py
-lib/python1.5/stat.pyc
-lib/python1.5/stat.pyo
-lib/python1.5/statcache.py
-lib/python1.5/statcache.pyc
-lib/python1.5/statcache.pyo
-lib/python1.5/string.py
-lib/python1.5/string.pyc
-lib/python1.5/string.pyo
-lib/python1.5/sunau.py
-lib/python1.5/sunau.pyc
-lib/python1.5/sunau.pyo
-lib/python1.5/sunaudio.py
-lib/python1.5/sunaudio.pyc
-lib/python1.5/sunaudio.pyo
-lib/python1.5/symbol.py
-lib/python1.5/symbol.pyc
-lib/python1.5/symbol.pyo
-lib/python1.5/telnetlib.py
-lib/python1.5/telnetlib.pyc
-lib/python1.5/telnetlib.pyo
-lib/python1.5/tempfile.py
-lib/python1.5/tempfile.pyc
-lib/python1.5/tempfile.pyo
-lib/python1.5/test/__init__.py
-lib/python1.5/test/__init__.pyc
-lib/python1.5/test/__init__.pyo
-lib/python1.5/test/audiotest.au
-lib/python1.5/test/autotest.py
-lib/python1.5/test/autotest.pyc
-lib/python1.5/test/autotest.pyo
-lib/python1.5/test/greyrgb.uue
-lib/python1.5/test/output/test_al
-lib/python1.5/test/output/test_array
-lib/python1.5/test/output/test_audioop
-lib/python1.5/test/output/test_binascii
-lib/python1.5/test/output/test_bsddb
-lib/python1.5/test/output/test_builtin
-lib/python1.5/test/output/test_cd
-lib/python1.5/test/output/test_cl
-lib/python1.5/test/output/test_cmath
-lib/python1.5/test/output/test_crypt
-lib/python1.5/test/output/test_dbm
-lib/python1.5/test/output/test_dl
-lib/python1.5/test/output/test_errno
-lib/python1.5/test/output/test_exceptions
-lib/python1.5/test/output/test_fcntl
-lib/python1.5/test/output/test_gdbm
-lib/python1.5/test/output/test_gl
-lib/python1.5/test/output/test_grammar
-lib/python1.5/test/output/test_grp
-lib/python1.5/test/output/test_imageop
-lib/python1.5/test/output/test_imgfile
-lib/python1.5/test/output/test_math
-lib/python1.5/test/output/test_md5
-lib/python1.5/test/output/test_new
-lib/python1.5/test/output/test_nis
-lib/python1.5/test/output/test_opcodes
-lib/python1.5/test/output/test_operations
-lib/python1.5/test/output/test_operator
-lib/python1.5/test/output/test_pkg
-lib/python1.5/test/output/test_pow
-lib/python1.5/test/output/test_pwd
-lib/python1.5/test/output/test_re
-lib/python1.5/test/output/test_regex
-lib/python1.5/test/output/test_rgbimg
-lib/python1.5/test/output/test_rotor
-lib/python1.5/test/output/test_select
-lib/python1.5/test/output/test_signal
-lib/python1.5/test/output/test_socket
-lib/python1.5/test/output/test_strftime
-lib/python1.5/test/output/test_strop
-lib/python1.5/test/output/test_struct
-lib/python1.5/test/output/test_sunaudiodev
-lib/python1.5/test/output/test_thread
-lib/python1.5/test/output/test_time
-lib/python1.5/test/output/test_timing
-lib/python1.5/test/output/test_tokenize
-lib/python1.5/test/output/test_types
-lib/python1.5/test/output/test_unpack
-lib/python1.5/test/output/test_xmllib
-lib/python1.5/test/output/test_zlib
-lib/python1.5/test/pystone.py
-lib/python1.5/test/pystone.pyc
-lib/python1.5/test/pystone.pyo
-lib/python1.5/test/re_tests.py
-lib/python1.5/test/re_tests.pyc
-lib/python1.5/test/re_tests.pyo
-lib/python1.5/test/regex_tests.py
-lib/python1.5/test/regex_tests.pyc
-lib/python1.5/test/regex_tests.pyo
-lib/python1.5/test/regrtest.py
-lib/python1.5/test/regrtest.pyc
-lib/python1.5/test/regrtest.pyo
-lib/python1.5/test/test_al.py
-lib/python1.5/test/test_al.pyc
-lib/python1.5/test/test_al.pyo
-lib/python1.5/test/test_array.py
-lib/python1.5/test/test_array.pyc
-lib/python1.5/test/test_array.pyo
-lib/python1.5/test/test_audioop.py
-lib/python1.5/test/test_audioop.pyc
-lib/python1.5/test/test_audioop.pyo
-lib/python1.5/test/test_b1.py
-lib/python1.5/test/test_b1.pyc
-lib/python1.5/test/test_b1.pyo
-lib/python1.5/test/test_b2.py
-lib/python1.5/test/test_b2.pyc
-lib/python1.5/test/test_b2.pyo
-lib/python1.5/test/test_binascii.py
-lib/python1.5/test/test_binascii.pyc
-lib/python1.5/test/test_binascii.pyo
-lib/python1.5/test/test_bsddb.py
-lib/python1.5/test/test_bsddb.pyc
-lib/python1.5/test/test_bsddb.pyo
-lib/python1.5/test/test_builtin.py
-lib/python1.5/test/test_builtin.pyc
-lib/python1.5/test/test_builtin.pyo
-lib/python1.5/test/test_cd.py
-lib/python1.5/test/test_cd.pyc
-lib/python1.5/test/test_cd.pyo
-lib/python1.5/test/test_cl.py
-lib/python1.5/test/test_cl.pyc
-lib/python1.5/test/test_cl.pyo
-lib/python1.5/test/test_cmath.py
-lib/python1.5/test/test_cmath.pyc
-lib/python1.5/test/test_cmath.pyo
-lib/python1.5/test/test_crypt.py
-lib/python1.5/test/test_crypt.pyc
-lib/python1.5/test/test_crypt.pyo
-lib/python1.5/test/test_dbm.py
-lib/python1.5/test/test_dbm.pyc
-lib/python1.5/test/test_dbm.pyo
-lib/python1.5/test/test_dl.py
-lib/python1.5/test/test_dl.pyc
-lib/python1.5/test/test_dl.pyo
-lib/python1.5/test/test_errno.py
-lib/python1.5/test/test_errno.pyc
-lib/python1.5/test/test_errno.pyo
-lib/python1.5/test/test_exceptions.py
-lib/python1.5/test/test_exceptions.pyc
-lib/python1.5/test/test_exceptions.pyo
-lib/python1.5/test/test_fcntl.py
-lib/python1.5/test/test_fcntl.pyc
-lib/python1.5/test/test_fcntl.pyo
-lib/python1.5/test/test_gdbm.py
-lib/python1.5/test/test_gdbm.pyc
-lib/python1.5/test/test_gdbm.pyo
-lib/python1.5/test/test_gl.py
-lib/python1.5/test/test_gl.pyc
-lib/python1.5/test/test_gl.pyo
-lib/python1.5/test/test_grammar.py
-lib/python1.5/test/test_grammar.pyc
-lib/python1.5/test/test_grammar.pyo
-lib/python1.5/test/test_grp.py
-lib/python1.5/test/test_grp.pyc
-lib/python1.5/test/test_grp.pyo
-lib/python1.5/test/test_imageop.py
-lib/python1.5/test/test_imageop.pyc
-lib/python1.5/test/test_imageop.pyo
-lib/python1.5/test/test_imgfile.py
-lib/python1.5/test/test_imgfile.pyc
-lib/python1.5/test/test_imgfile.pyo
-lib/python1.5/test/test_math.py
-lib/python1.5/test/test_math.pyc
-lib/python1.5/test/test_math.pyo
-lib/python1.5/test/test_md5.py
-lib/python1.5/test/test_md5.pyc
-lib/python1.5/test/test_md5.pyo
-lib/python1.5/test/test_new.py
-lib/python1.5/test/test_new.pyc
-lib/python1.5/test/test_new.pyo
-lib/python1.5/test/test_nis.py
-lib/python1.5/test/test_nis.pyc
-lib/python1.5/test/test_nis.pyo
-lib/python1.5/test/test_opcodes.py
-lib/python1.5/test/test_opcodes.pyc
-lib/python1.5/test/test_opcodes.pyo
-lib/python1.5/test/test_operations.py
-lib/python1.5/test/test_operations.pyc
-lib/python1.5/test/test_operations.pyo
-lib/python1.5/test/test_operator.py
-lib/python1.5/test/test_operator.pyc
-lib/python1.5/test/test_operator.pyo
-lib/python1.5/test/test_pkg.py
-lib/python1.5/test/test_pkg.pyc
-lib/python1.5/test/test_pkg.pyo
-lib/python1.5/test/test_pow.py
-lib/python1.5/test/test_pow.pyc
-lib/python1.5/test/test_pow.pyo
-lib/python1.5/test/test_pwd.py
-lib/python1.5/test/test_pwd.pyc
-lib/python1.5/test/test_pwd.pyo
-lib/python1.5/test/test_re.py
-lib/python1.5/test/test_re.pyc
-lib/python1.5/test/test_re.pyo
-lib/python1.5/test/test_regex.py
-lib/python1.5/test/test_regex.pyc
-lib/python1.5/test/test_regex.pyo
-lib/python1.5/test/test_rgbimg.py
-lib/python1.5/test/test_rgbimg.pyc
-lib/python1.5/test/test_rgbimg.pyo
-lib/python1.5/test/test_rotor.py
-lib/python1.5/test/test_rotor.pyc
-lib/python1.5/test/test_rotor.pyo
-lib/python1.5/test/test_select.py
-lib/python1.5/test/test_select.pyc
-lib/python1.5/test/test_select.pyo
-lib/python1.5/test/test_signal.py
-lib/python1.5/test/test_signal.pyc
-lib/python1.5/test/test_signal.pyo
-lib/python1.5/test/test_socket.py
-lib/python1.5/test/test_socket.pyc
-lib/python1.5/test/test_socket.pyo
-lib/python1.5/test/test_strftime.py
-lib/python1.5/test/test_strftime.pyc
-lib/python1.5/test/test_strftime.pyo
-lib/python1.5/test/test_strop.py
-lib/python1.5/test/test_strop.pyc
-lib/python1.5/test/test_strop.pyo
-lib/python1.5/test/test_struct.py
-lib/python1.5/test/test_struct.pyc
-lib/python1.5/test/test_struct.pyo
-lib/python1.5/test/test_sunaudiodev.py
-lib/python1.5/test/test_sunaudiodev.pyc
-lib/python1.5/test/test_sunaudiodev.pyo
-lib/python1.5/test/test_support.py
-lib/python1.5/test/test_support.pyc
-lib/python1.5/test/test_support.pyo
-lib/python1.5/test/test_thread.py
-lib/python1.5/test/test_thread.pyc
-lib/python1.5/test/test_thread.pyo
-lib/python1.5/test/test_time.py
-lib/python1.5/test/test_time.pyc
-lib/python1.5/test/test_time.pyo
-lib/python1.5/test/test_timing.py
-lib/python1.5/test/test_timing.pyc
-lib/python1.5/test/test_timing.pyo
-lib/python1.5/test/test_tokenize.py
-lib/python1.5/test/test_tokenize.pyc
-lib/python1.5/test/test_tokenize.pyo
-lib/python1.5/test/test_types.py
-lib/python1.5/test/test_types.pyc
-lib/python1.5/test/test_types.pyo
-lib/python1.5/test/test_unpack.py
-lib/python1.5/test/test_unpack.pyc
-lib/python1.5/test/test_unpack.pyo
-lib/python1.5/test/test_xmllib.py
-lib/python1.5/test/test_xmllib.pyc
-lib/python1.5/test/test_xmllib.pyo
-lib/python1.5/test/test_zlib.py
-lib/python1.5/test/test_zlib.pyc
-lib/python1.5/test/test_zlib.pyo
-lib/python1.5/test/testall.py
-lib/python1.5/test/testall.pyc
-lib/python1.5/test/testall.pyo
-lib/python1.5/test/testimg.uue
-lib/python1.5/test/testimgr.uue
-lib/python1.5/test/testrgb.uue
-lib/python1.5/test/tokenize_tests.py
-lib/python1.5/test/tokenize_tests.pyc
-lib/python1.5/test/tokenize_tests.pyo
-lib/python1.5/threading.py
-lib/python1.5/threading.pyc
-lib/python1.5/threading.pyo
-lib/python1.5/threading_api.py
-lib/python1.5/threading_api.pyc
-lib/python1.5/threading_api.pyo
-lib/python1.5/toaiff.py
-lib/python1.5/toaiff.pyc
-lib/python1.5/toaiff.pyo
-lib/python1.5/token.py
-lib/python1.5/token.pyc
-lib/python1.5/token.pyo
-lib/python1.5/tokenize.py
-lib/python1.5/tokenize.pyc
-lib/python1.5/tokenize.pyo
-lib/python1.5/traceback.py
-lib/python1.5/traceback.pyc
-lib/python1.5/traceback.pyo
-lib/python1.5/tty.py
-lib/python1.5/tty.pyc
-lib/python1.5/tty.pyo
-lib/python1.5/types.py
-lib/python1.5/types.pyc
-lib/python1.5/types.pyo
-lib/python1.5/tzparse.py
-lib/python1.5/tzparse.pyc
-lib/python1.5/tzparse.pyo
-lib/python1.5/urllib.py
-lib/python1.5/urllib.pyc
-lib/python1.5/urllib.pyo
-lib/python1.5/urlparse.py
-lib/python1.5/urlparse.pyc
-lib/python1.5/urlparse.pyo
-lib/python1.5/user.py
-lib/python1.5/user.pyc
-lib/python1.5/user.pyo
-lib/python1.5/util.py
-lib/python1.5/util.pyc
-lib/python1.5/util.pyo
-lib/python1.5/uu.py
-lib/python1.5/uu.pyc
-lib/python1.5/uu.pyo
-lib/python1.5/wave.py
-lib/python1.5/wave.pyc
-lib/python1.5/wave.pyo
-lib/python1.5/whatsound.py
-lib/python1.5/whatsound.pyc
-lib/python1.5/whatsound.pyo
-lib/python1.5/whichdb.py
-lib/python1.5/whichdb.pyc
-lib/python1.5/whichdb.pyo
-lib/python1.5/whrandom.py
-lib/python1.5/whrandom.pyc
-lib/python1.5/whrandom.pyo
-lib/python1.5/xdrlib.py
-lib/python1.5/xdrlib.pyc
-lib/python1.5/xdrlib.pyo
-lib/python1.5/xmllib.py
-lib/python1.5/xmllib.pyc
-lib/python1.5/xmllib.pyo
-lib/python1.5/zmod.py
-lib/python1.5/zmod.pyc
-lib/python1.5/zmod.pyo
-man/man1/python.1
diff --git a/lang/python/pkg/PLIST.pre b/lang/python/pkg/PLIST.pre
new file mode 100644
index 00000000000..34d48d527d5
--- /dev/null
+++ b/lang/python/pkg/PLIST.pre
@@ -0,0 +1,4 @@
+@comment $NetBSD: PLIST.pre,v 1.1 1999/04/14 04:51:29 tsarna Exp $
+bin/python
+bin/python1.5
+man/man1/python.1