[Python-checkins] python/dist/src configure,1.279.6.10,1.279.6.11 configure.in,1.288.6.10,1.288.6.11

loewis@users.sourceforge.net loewis@users.sourceforge.net
Mon, 30 Sep 2002 04:19:15 -0700


Update of /cvsroot/python/python/dist/src
In directory usw-pr-cvs1:/tmp/cvs-serv18630

Modified Files:
      Tag: release22-maint
	configure configure.in 
Log Message:
Patch #596576: Always use cc to link on NetBSD.


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.279.6.10
retrieving revision 1.279.6.11
diff -C2 -d -r1.279.6.10 -r1.279.6.11
*** configure	25 Sep 2002 21:25:59 -0000	1.279.6.10
--- configure	30 Sep 2002 11:19:10 -0000	1.279.6.11
***************
*** 1,5 ****
  #! /bin/sh
  
! # From configure.in Revision: 1.288.6.9 
  
  # Guess values for system-dependent variables and create Makefiles.
--- 1,5 ----
  #! /bin/sh
  
! # From configure.in Revision: 1.288.6.10 
  
[...3217 lines suppressed...]
  if eval "test \"`echo '$''{'ac_cv_type_socklen_t'+set}'`\" = set"; then
    echo $ac_n "(cached) $ac_c" 1>&6
  else
    cat > conftest.$ac_ext <<EOF
! #line 7513 "configure"
  #include "confdefs.h"
  #include <sys/types.h>
***************
*** 7565,7569 ****
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7568: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then
--- 7566,7570 ----
  SRCDIRS="Parser Grammar Objects Python Modules"
  echo $ac_n "checking for build directories""... $ac_c" 1>&6
! echo "configure:7569: checking for build directories" >&5
  for dir in $SRCDIRS; do
      if test ! -d $dir; then

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.288.6.10
retrieving revision 1.288.6.11
diff -C2 -d -r1.288.6.10 -r1.288.6.11
*** configure.in	25 Sep 2002 21:26:01 -0000	1.288.6.10
--- configure.in	30 Sep 2002 11:19:12 -0000	1.288.6.11
***************
*** 821,825 ****
  	dgux*) LDSHARED="ld -G";;
  	BSD/OS*/4*) LDSHARED="gcc -shared";;
! 	OpenBSD*|NetBSD*|FreeBSD*)
  		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
  		then
--- 821,825 ----
  	dgux*) LDSHARED="ld -G";;
  	BSD/OS*/4*) LDSHARED="gcc -shared";;
! 	OpenBSD*|FreeBSD*)
  		if [[ "`$CC -dM -E - </dev/null | grep __ELF__`" != "" ]]
  		then
***************
*** 828,831 ****
--- 828,832 ----
  			LDSHARED="ld -Bshareable ${LDFLAGS}"
  		fi;;
+ 	NetBSD*) LDSHARED="cc -shared ${LDFLAGS}";;
  	OpenUNIX*|UnixWare*)
  		if test "$GCC" = "yes"