head 1.3; access; symbols pkgsrc-2013Q2:1.3.0.18 pkgsrc-2013Q2-base:1.3 pkgsrc-2012Q4:1.3.0.16 pkgsrc-2012Q4-base:1.3 pkgsrc-2011Q4:1.3.0.14 pkgsrc-2011Q4-base:1.3 pkgsrc-2011Q2:1.3.0.12 pkgsrc-2011Q2-base:1.3 pkgsrc-2009Q4:1.3.0.10 pkgsrc-2009Q4-base:1.3 pkgsrc-2008Q4:1.3.0.8 pkgsrc-2008Q4-base:1.3 pkgsrc-2008Q3:1.3.0.6 pkgsrc-2008Q3-base:1.3 cube-native-xorg:1.3.0.4 cube-native-xorg-base:1.3 pkgsrc-2008Q2:1.3.0.2 pkgsrc-2008Q2-base:1.3 pkgsrc-2008Q1:1.2.0.18 pkgsrc-2008Q1-base:1.2 pkgsrc-2007Q4:1.2.0.16 pkgsrc-2007Q4-base:1.2 pkgsrc-2007Q3:1.2.0.14 pkgsrc-2007Q3-base:1.2 pkgsrc-2007Q2:1.2.0.12 pkgsrc-2007Q2-base:1.2 pkgsrc-2007Q1:1.2.0.10 pkgsrc-2007Q1-base:1.2 pkgsrc-2006Q4:1.2.0.8 pkgsrc-2006Q4-base:1.2 pkgsrc-2006Q3:1.2.0.6 pkgsrc-2006Q3-base:1.2 pkgsrc-2006Q2:1.2.0.4 pkgsrc-2006Q2-base:1.2 pkgsrc-2006Q1:1.2.0.2 pkgsrc-2006Q1-base:1.2 pkgsrc-2005Q4:1.1.0.8 pkgsrc-2005Q4-base:1.1 pkgsrc-2005Q3:1.1.0.6 pkgsrc-2005Q3-base:1.1 pkgsrc-2005Q2:1.1.0.4 pkgsrc-2005Q2-base:1.1 pkgsrc-2005Q1:1.1.0.2 pkgsrc-2005Q1-base:1.1; locks; strict; comment @# @; 1.3 date 2008.04.25.16.11.13; author tnn; state dead; branches; next 1.2; 1.2 date 2006.01.09.21.22.57; author joerg; state Exp; branches; next 1.1; 1.1 date 2005.01.24.21.43.40; author tv; state Exp; branches; next ; desc @@ 1.3 log @De-orbit support for python 2.0 and python 2.2 under the "three major releases is enough" rule of thumb. (python 2.3 was released 5 years ago.) Keep python 1.5 and 2.1 though, because there are a handful of packages that still need them. @ text @$NetBSD: patch-al,v 1.2 2006/01/09 21:22:57 joerg Exp $ --- configure.orig 2003-03-29 22:25:14.000000000 +0000 +++ configure @@@@ -3213,6 +3213,9 @@@@ then Linux*) LDSHARED='$(CC) -shared';; dgux*) LDSHARED="ld -G";; BSD/OS*/4*) LDSHARED="gcc -shared";; + DragonFly*) + LDSHARED="cc -shared ${LDFLAGS}" + ;; OpenBSD*|FreeBSD*) if [ "`$CC -dM -E - &1 | grep export-dynamic >/dev/null @@@@ -3800,9 +3806,9 @@@@ else # on HP/UX, pthread.h renames pthread_create to a different symbol name. # So we really have to include pthread.h, and then link. _libs=$LIBS - LIBS="$LIBS -lpthread" - echo $ac_n "checking for pthread_create in -lpthread""... $ac_c" 1>&6 -echo "configure:3806: checking for pthread_create in -lpthread" >&5 + LIBS="$LIBS ${PTHREAD_LDFLAGS} ${PTHREAD_LIB}" + echo $ac_n "checking for pthread_create in ${PTHREAD_LDFLAGS} ${PTHREAD_LIB}""... $ac_c" 1>&6 +echo "configure:3806: checking for pthread_create in ${PTHREAD_LDFLAGS} ${PTHREAD_LIB}" >&5 cat > conftest.$ac_ext <&6 @ 1.2 log @Add DragonFly support. While here, add netbsd4 for future joy. Use PTHREAD_* instead of hardcoded -lpthread. @ text @d1 1 a1 1 $NetBSD$ @ 1.1 log @Backport first-stab Interix support from lang/python23. @ text @d3 1 a3 1 --- configure.orig 2003-03-29 17:25:14.000000000 -0500 d5 11 a15 1 @@@@ -3220,7 +3220,8 @@@@ then d25 2 a26 1 @@@@ -3251,6 +3252,7 @@@@ then d29 2 a30 1 FreeBSD*|NetBSD*|OpenBSD*) CCSHARED="-fPIC";; d35 7 a41 1 @@@@ -3305,6 +3307,7 @@@@ then d49 22 @