head	1.11;
access;
symbols
	RELEASE_8_0_0:1.10
	RELEASE_7_2_0:1.10
	RELEASE_7_1_0:1.10
	RELEASE_6_4_0:1.10
	RELEASE_5_EOL:1.10
	RELEASE_7_0_0:1.10
	RELEASE_6_3_0:1.10
	PRE_XORG_7:1.10
	RELEASE_4_EOL:1.10
	RELEASE_6_2_0:1.10
	RELEASE_6_1_0:1.10
	RELEASE_5_5_0:1.10
	RELEASE_6_0_0:1.10
	RELEASE_5_4_0:1.10
	RELEASE_4_11_0:1.10
	old_RELEASE_5_3_0:1.10
	old_RELEASE_4_10_0:1.8
	old_RELEASE_5_2_1:1.6
	old_RELEASE_5_2_0:1.6
	old_RELEASE_4_9_0:1.3
	old_RELEASE_4_7_0:1.1
	old_RELEASE_4_6_2:1.1
	old_RELEASE_4_6_1:1.1
	old_RELEASE_4_6_0:1.1
	old_RELEASE_5_0_DP1:1.1
	old_RELEASE_4_5_0:1.1;
locks; strict;
comment	@# @;


1.11
date	2009.12.18.10.08.30;	author miwi;	state dead;
branches;
next	1.10;

1.10
date	2004.06.04.05.21.57;	author perky;	state Exp;
branches;
next	1.9;

1.9
date	2004.05.27.15.58.02;	author perky;	state Exp;
branches;
next	1.8;

1.8
date	2004.04.14.06.49.21;	author perky;	state Exp;
branches;
next	1.7;

1.7
date	2004.02.09.09.54.07;	author perky;	state Exp;
branches;
next	1.6;

1.6
date	2003.10.04.05.17.10;	author perky;	state Exp;
branches;
next	1.5;

1.5
date	2003.09.29.11.44.32;	author perky;	state Exp;
branches;
next	1.4;

1.4
date	2003.09.26.16.44.13;	author perky;	state Exp;
branches;
next	1.3;

1.3
date	2003.07.31.19.34.54;	author perky;	state Exp;
branches;
next	1.2;

1.2
date	2002.10.17.11.14.17;	author perky;	state dead;
branches;
next	1.1;

1.1
date	2002.01.21.12.54.09;	author tg;	state Exp;
branches;
next	;


desc
@@


1.11
log
@- Get rid python-2.3 and python-3.0 (no longer under developement)

Reviewed by:	alexbl, clsung, pav
@
text
@--- configure.orig	Sat May  8 04:13:40 2004
+++ configure	Fri Jun  4 14:15:59 2004
@@@@ -1321,7 +1321,7 @@@@
 VERSION=2.3
 
 
-SOVERSION=1.0
+SOVERSION=1
 
 # The later defininition of _XOPEN_SOURCE disables certain features
 # on Linux, so we need _GNU_SOURCE to re-enable them (makedev, tm_zone).
@@@@ -3609,6 +3609,12 @@@@
 	  RUNSHARED=LD_LIBRARY_PATH=`pwd`:${LD_LIBRARY_PATH}
 	  INSTSONAME="$LDLIBRARY".$SOVERSION
 	  ;;
+    FreeBSD*)
+	  LDLIBRARY='libpython$(VERSION).so'
+	  BLDLIBRARY='-L. -lpython$(VERSION)'
+	  RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
+	  INSTSONAME="$LDLIBRARY".$SOVERSION
+	  ;;
     hp*|HP*)
 	  LDLIBRARY='libpython$(VERSION).sl'
 	  BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(VERSION)'
@@@@ -10100,7 +10106,7 @@@@
 	OpenBSD*|FreeBSD*)
 		if [ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]
 		then
-			LDSHARED="cc -shared ${LDFLAGS}"
+			LDSHARED="$CC -shared ${LDFLAGS}"
 		else
 			LDSHARED="ld -Bshareable ${LDFLAGS}"
 		fi;;
@@@@ -12273,7 +12279,7 @@@@
   ac_status=$?
   echo "$as_me:$LINENO: \$? = $ac_status" >&5
   (exit $ac_status); }; }; then
-  ac_cv_pthread_system_supported=yes
+  ac_cv_pthread_system_supported="ignored by port"
 else
   echo "$as_me: program exited with status $ac_status" >&5
 echo "$as_me: failed program was:" >&5
@


1.10
log
@Use ${CC} instead of cc on dynamic linkings.

PR:		67515
Submitted by:	michael johnson <ahze@@ahze.net>
@
text
@@


1.9
log
@- Update to Python 2.3.4.
- Test WITHOUT_* instead of WITH_* for values which are on by default
  so that package build clusters detect correctly.
@
text
@d1 2
a2 2
--- configure.orig	Wed Nov 19 04:59:36 2003
+++ configure	Wed Apr 14 15:37:53 2004
d12 1
a12 1
@@@@ -3608,6 +3608,12 @@@@
d25 10
a34 1
@@@@ -12272,7 +12278,7 @@@@
@


1.8
log
@Fixed a bug where the configure script couldn't detect getaddrinfo()
properly if the KAME stack had SCTP support.

Submitted by:	suz
@
text
@a33 8
@@@@ -15001,6 +15007,7 @@@@
     hints.ai_family = AF_UNSPEC;
     hints.ai_flags = passive ? AI_PASSIVE : 0;
     hints.ai_socktype = SOCK_STREAM;
+    hints.ai_protocol = IPPROTO_TCP;
     if ((gaierr = getaddrinfo(NULL, "54321", &hints, &aitop)) != 0) {
       (void)gai_strerror(gaierr);
       goto bad;
@


1.7
log
@- Use process scope threads instead of system scope to enable large
  amount of threads on -CURRENT libpthread by default. [1]
- Merge bugfixes from python 2.3 maintenance branch: [2]
  o weakref object's garbage collection problem.
  o save unnecessary startup-time memory allocation of 100KB+ from
    intobject.
- SIZEify.
- Bump PORTREVISION subsequently.

Advised by:	eischen, julian [1]
Obtained from:	Python CVS [2]
@
text
@d2 1
a2 1
+++ configure	Mon Feb  9 17:39:34 2004
d34 8
@


1.6
log
@Update to Python-2.3.2
@
text
@d1 2
a2 2
--- configure.orig	Sat Oct  4 13:27:50 2003
+++ configure	Sat Oct  4 13:29:05 2003
d12 1
a12 3
@@@@ -3594,6 +3594,12 @@@@
 	  LDLIBRARY='libpython$(VERSION).so'
 	  BLDLIBRARY='-L. -lpython$(VERSION)'
d14 2
a15 2
+	  INSTSONAME="$LDLIBRARY".$SOVERSION
+	  ;;
d20 2
a21 2
 	  INSTSONAME="$LDLIBRARY".$SOVERSION
 	  ;;
d23 11
@


1.5
log
@- Install a 'real' shared object when BUILD_SHARED=yes. [1]
- Fix plist on 32bit architectures.
- Bump PORTREVISION.

PR:		57269 [1]
Submitted by:	Tim Middleton <x@@Vex.Net> [1],
		Kostik I. Belousov <kostya@@tessart.kiev.ua> [1]
@
text
@d1 2
a2 2
--- configure.orig	Sun Sep 21 00:29:40 2003
+++ configure	Mon Sep 29 20:01:11 2003
d12 3
a14 1
@@@@ -3596,6 +3596,12 @@@@
d16 2
a17 2
 	  INSTSONAME="$LDLIBRARY".$SOVERSION
 	  ;;
d22 2
a23 2
+	  INSTSONAME="$LDLIBRARY".$SOVERSION
+	  ;;
a24 11
 	  LDLIBRARY='libpython$(VERSION).sl'
 	  BLDLIBRARY='-Wl,+b,$(LIBDIR) -L. -lpython$(VERSION)'
@@@@ -13384,7 +13390,7 @@@@
   (exit $ac_status); }; }; then
 
 cat >>confdefs.h <<\_ACEOF
-#define HAVE_SYNC 1
+#define HAVE_FSYNC 1
 _ACEOF
 
   echo "$as_me:$LINENO: result: yes" >&5
@


1.4
log
@- Revive os.fsync function which is disabled by a typo of Python-2.3.1.
- Bump PORTREVISION

Obtained from:	Python CVS
@
text
@d2 10
a11 1
+++ configure	Fri Sep 26 13:08:51 2003
d20 1
a20 1
+	  INSTSONAME="$LDLIBRARY"
@


1.3
log
@- Update to Python-2.3
- Correct pydoc search path to lang/python-doc-html port's [1]

PR:		43036 [1]
Submitted by:	Emil Sit <sit@@amsterdam.lcs.mit.edu> [1]
@
text
@d1 4
a4 4
--- configure.orig	Sun Jul 13 18:46:13 2003
+++ configure	Sat Jul 19 15:21:09 2003
@@@@ -3288,6 +3288,12 @@@@
 	  RUNSHARED=LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
d16 9
@


1.2
log
@Upgrade to Python-2.2.2.

Approved by:	tg
@
text
@d1 15
a15 10
--- configure.orig	Sun Jan 20 15:31:22 2002
+++ configure	Sun Jan 20 15:56:58 2002
@@@@ -6980,6 +6980,7 @@@@
 #line 6981 "configure"
 #include "confdefs.h"
 #include <stdio.h>
+#include <wchar.h>
 main()
 {
   FILE *f=fopen("conftestval", "w");
@


1.1
log
@Fix sizeof(wchar_t) calculation.
@
text
@@

