[Python-checkins] python/dist/src configure, 1.416.4.12, 1.416.4.13 configure.in, 1.427.4.11, 1.427.4.12

perky at users.sourceforge.net perky at users.sourceforge.net
Wed Apr 14 04:11:35 EDT 2004


Update of /cvsroot/python/python/dist/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7255

Modified Files:
      Tag: release23-maint
	configure configure.in 
Log Message:
Backport checkin>
Bug #934635: Fixed a bug where the configure script couldn't detect
getaddrinfo() properly if the KAME stack had SCTP support.
(Submitted by SUZUKI Shinsuke)


Index: configure
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure,v
retrieving revision 1.416.4.12
retrieving revision 1.416.4.13
diff -C2 -d -r1.416.4.12 -r1.416.4.13
*** configure	22 Mar 2004 20:20:27 -0000	1.416.4.12
--- configure	14 Apr 2004 08:11:28 -0000	1.416.4.13
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.427.4.10 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.3.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.427.4.11 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.3.
***************
*** 15002,15005 ****
--- 15002,15006 ----
      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);

Index: configure.in
===================================================================
RCS file: /cvsroot/python/python/dist/src/configure.in,v
retrieving revision 1.427.4.11
retrieving revision 1.427.4.12
diff -C2 -d -r1.427.4.11 -r1.427.4.12
*** configure.in	22 Mar 2004 20:20:32 -0000	1.427.4.11
--- configure.in	14 Apr 2004 08:11:31 -0000	1.427.4.12
***************
*** 2299,2302 ****
--- 2299,2303 ----
      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);




More information about the Python-checkins mailing list