head	1.9;
access;
symbols
	RELEASE_4_3_0:1.8
	RELEASE_4_2_0:1.8
	RELEASE_4_1_1:1.7
	RELEASE_4_1_0:1.5
	RELEASE_3_5_0:1.5
	RELEASE_4_0_0:1.5
	RELEASE_3_4_0:1.5
	RELEASE_3_3_0:1.5
	RELEASE_3_2_0:1.5
	RELEASE_3_1_0:1.5
	RELEASE_2_2_8:1.5
	RELEASE_3_0_0:1.5
	RELEASE_2_2_7:1.5
	RELEASE_2_2_6:1.5
	RELEASE_2_2_5:1.4
	RELEASE_2_2_1:1.3
	RELEASE_2_2_2:1.4
	python1_2:1.1.1.1
	python:1.1.1;
locks; strict;
comment	@# @;


1.9
date	2001.05.02.11.25.02;	author tg;	state dead;
branches;
next	1.8;

1.8
date	2000.10.18.11.58.50;	author tg;	state Exp;
branches;
next	1.7;

1.7
date	2000.09.08.11.41.42;	author tg;	state Exp;
branches;
next	1.6;

1.6
date	2000.08.14.12.36.05;	author tg;	state Exp;
branches;
next	1.5;

1.5
date	98.01.06.08.03.04;	author tg;	state Exp;
branches;
next	1.4;

1.4
date	97.05.14.07.35.20;	author tg;	state Exp;
branches;
next	1.3;

1.3
date	97.02.06.13.10.58;	author tg;	state Exp;
branches;
next	1.2;

1.2
date	96.11.02.19.04.32;	author jkh;	state Exp;
branches;
next	1.1;

1.1
date	95.08.08.22.09.07;	author jkh;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	95.08.08.22.09.07;	author jkh;	state Exp;
branches;
next	;


desc
@@


1.9
log
@Upgrade to 2.1.
@
text
@--- Makefile.in.orig	Wed Aug 30 11:43:56 2000
+++ Makefile.in	Wed Aug 30 16:32:22 2000
@@@@ -110,8 +110,8 @@@@
 
 # Portable install script (configure doesn't always guess right)
 INSTALL=	@@srcdir@@/install-sh -c
-INSTALL_PROGRAM=${INSTALL} -m $(EXEMODE)
-INSTALL_DATA=	${INSTALL} -m $(FILEMODE)
+INSTALL_PROGRAM=${BSD_INSTALL_SCRIPT}
+INSTALL_DATA=	${BSD_INSTALL_DATA}
 
 # Use this to make a link between python$(VERSION) and python in $(BINDIR)
 LN=@@LN@@
@


1.8
log
@Upgrade to 2.0.
@
text
@@


1.7
log
@Upgrade to 1.6.
@
text
@d1 3
a3 10
--- Makefile.in.orig	Thu Aug  3 19:00:01 2000
+++ Makefile.in	Wed Aug 16 17:38:14 2000
@@@@ -95,14 +95,14 @@@@
 # Modes for directories, executables and data files created by the
 # install process.  Default to group-writable directories but
 # user-only-writable for executables and data files.
-DIRMODE=	775
+DIRMODE=	755
 EXEMODE=	755
 FILEMODE=	644
a13 17
@@@@ -259,7 +259,7 @@@@
 # Install the library
 PLATDIR=	plat-$(MACHDEP)
 MACHDEPS=	$(PLATDIR)
-LIBSUBDIRS=	lib-old lib-tk site-packages test test/output encodings \
+LIBSUBDIRS=	lib-old lib-tk site-packages test test/output curses encodings \
 		distutils distutils/command $(MACHDEPS)
 libinstall:	python $(srcdir)/Lib/$(PLATDIR)
 		@@for i in $(SCRIPTDIR) $(LIBDEST); \
@@@@ -303,6 +303,7 @@@@
 				case $$i in \
 				*CVS) ;; \
 				*.py[co]) ;; \
+				*.orig) ;; \
 				*~) ;; \
 				*) \
 					if test -d $$i; then continue; fi; \
@


1.6
log
@Don't create group-writable directories.

Submitted by:	jedgar
@
text
@d1 3
a3 3
--- Makefile.in.orig	Tue Feb 23 10:43:15 1999
+++ Makefile.in	Sun Aug 13 21:28:59 2000
@@@@ -125,14 +125,14 @@@@
d21 17
@


1.5
log
@Upgrade to 1.5.
@
text
@d1 10
a10 3
--- Makefile.in.orig	Tue Dec  9 16:18:33 1997
+++ Makefile.in	Sat Dec 13 11:19:12 1997
@@@@ -131,8 +131,8 @@@@
d19 2
a20 2
 # --with-PACKAGE options for configure script
 # e.g. --with-readline --with-svr5 --with-solaris --with-thread
@


1.4
log
@Some reorganization of this port:

- build some modules as shared objects, reducing the interpreter's
  size and removing the dependency on tix
- install shared objects in lib
- remove version number from OS-dependent script dir

A new port of PyTix will follow shortly.
@
text
@d1 3
a3 8
--- Makefile.in.orig	Fri Oct 25 16:37:32 1996
+++ Makefile.in	Mon May 12 21:04:38 1997
@@@@ -98,7 +98,7 @@@@
 LIBDIR=		$(exec_prefix)/lib
 MANDIR=		$(prefix)/man
 INCLUDEDIR=	$(prefix)/include
-SCRIPTDIR=	$(prefix)/lib
+SCRIPTDIR=	$(prefix)/share
d5 6
a10 7
 # Detailed destination directories
 BINLIBDEST=	$(LIBDIR)/python$(VERSION)
@@@@ -288,6 +288,7 @@@@
 			echo $(INSTALL_DATA) $$i $(INCLUDEPY); \
 			$(INSTALL_DATA) $$i $(INCLUDEPY); \
 		done
+		$(INSTALL_DATA) config.h $(INCLUDEPY)
d12 2
a13 2
 # Install the lib*.a files and miscellaneous stuff needed by extensions
 # This goes into $(exec_prefix)
@


1.3
log
@Install config.h, so compiling extensions from C sources
actually works.
@
text
@d2 3
a4 7
+++ Makefile.in	Thu Feb  6 12:02:11 1997
@@@@ -95,10 +95,10 @@@@
 
 # Expanded directories
 BINDIR=		$(exec_prefix)/bin
-LIBDIR=		$(exec_prefix)/lib
+LIBDIR=		$(exec_prefix)/share
@


1.2
log
@Update to version 1.4
Submitted-By: Thomas Gellekum <thomas@@ghpc8.ihf.rwth-aachen.de>
@
text
@d1 23
a23 25
*** Makefile.in.orig	Wed Jul 31 19:30:37 1996
--- Makefile.in	Sun Aug 18 11:15:25 1996
***************
*** 88,97 ****
  
  # Expanded directories
  BINDIR=		$(exec_prefix)/bin
! LIBDIR=		$(exec_prefix)/lib
  MANDIR=		$(prefix)/man
  INCLUDEDIR=	$(prefix)/include
! SCRIPTDIR=	$(prefix)/lib
  
  # Detailed destination directories
  BINLIBDEST=	$(LIBDIR)/python$(VERSION)
--- 88,97 ----
  
  # Expanded directories
  BINDIR=		$(exec_prefix)/bin
! LIBDIR=		$(exec_prefix)/share
  MANDIR=		$(prefix)/man
  INCLUDEDIR=	$(prefix)/include
! SCRIPTDIR=	$(prefix)/share
  
  # Detailed destination directories
  BINLIBDEST=	$(LIBDIR)/python$(VERSION)
@


1.1
log
@Initial revision
@
text
@d1 2
a2 3
diff -c -r Modules/cursesmodule.c.orig Modules/cursesmodule.c
*** Modules/cursesmodule.c.orig	Fri Mar 17 04:18:36 1995
--- Modules/cursesmodule.c	Tue Aug  8 13:31:40 1995
d4 1
a4 2
*** 145,151 ****
--- 145,155 ----
d6 6
a11 1
  #include "Python.h"
d13 3
a15 5
+ #ifdef __FreeBSD__
+ #include <ncurses.h>
+ #else
  #include <curses.h>
+ #endif
d17 9
a25 2
  typedef struct {
  	PyObject_HEAD
@


1.1.1.1
log
@The Python programming language.
@
text
@@
