[Python-checkins] python/dist/src configure, 1.442, 1.443 configure.in, 1.453, 1.454

perky at users.sourceforge.net perky at users.sourceforge.net
Wed Apr 14 03:55:33 EDT 2004


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

Modified Files:
	configure configure.in 
Log Message:
Bug #934635: Fix 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.442
retrieving revision 1.443
diff -C2 -d -r1.442 -r1.443
*** configure	21 Mar 2004 23:45:39 -0000	1.442
--- configure	14 Apr 2004 07:55:28 -0000	1.443
***************
*** 1,4 ****
  #! /bin/sh
! # From configure.in Revision: 1.452 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.4.
--- 1,4 ----
  #! /bin/sh
! # From configure.in Revision: 1.453 .
  # Guess values for system-dependent variables and create Makefiles.
  # Generated by GNU Autoconf 2.57 for python 2.4.
***************
*** 14152,14155 ****
--- 14152,14156 ----
      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.453
retrieving revision 1.454
diff -C2 -d -r1.453 -r1.454
*** configure.in	21 Mar 2004 23:45:41 -0000	1.453
--- configure.in	14 Apr 2004 07:55:30 -0000	1.454
***************
*** 2215,2218 ****
--- 2215,2219 ----
      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